Please confirm these before moving forward.
Describe the improvement
The generated powershell-script generates a command array like
$commands= @(
'cmd.exe /C winget.exe install --id "7zip.7zip" --exact --source winget --accept-source-agreements --disable-interactivity --silent --accept-package-agreements --force'
)
and calls each command with
foreach ($command in $commands) {
Write-Host "Running: $command" -ForegroundColor Yellow
cmd.exe /C $command
...
}
This results in a call like
cmd.exe /C cmd.exe /C winget.exe install ...
It's not a big deal but...
Describe how this improvement could help users
Script uses less disk-space and is faster due to lesser app calls 😆😆😆😆😆
Not a big deal or bug or anything - just a cosmetic thing.
Please confirm these before moving forward.
Describe the improvement
The generated powershell-script generates a command array like
and calls each command with
This results in a call like
It's not a big deal but...
Describe how this improvement could help users
Script uses less disk-space and is faster due to lesser app calls 😆😆😆😆😆
Not a big deal or bug or anything - just a cosmetic thing.