Compare commits

..

No commits in common. "b9de693dceb0eb0bf1ce32c9e1bbec43c58592a1" and "7f98ece3c6c8605af414de924003f07591738142" have entirely different histories.

View File

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