Compare commits

..

2 Commits

View File

@ -31,7 +31,7 @@ $settingsJson = @{installBehavior = @{
}
$settingsJson | ConvertTo-Json | Out-File $settingsPath -Encoding utf8
winget --accept-source-agreements --accept-package-agreements
winget search test --accept-source-agreements --accept-package-agreements
function InstallTheApps() {
Foreach ($app in $apps) {
@ -40,10 +40,12 @@ function InstallTheApps() {
Write-host "Installing:" $app.name
if ($null -ne $app.source) {
winget install --exact $app.name --source $app.source
winget install --exact $app.name --source $app.source
# winget install --exact --silent $app.name --source $app.source
}
else {
winget install --exact $app.name
winget install --exact $app.name
# winget install --exact --silent $app.name
}
}