Think I found a more eligant solution
This commit is contained in:
parent
ea640470ec
commit
a03b9add98
@ -31,7 +31,6 @@ $settingsJson = @{installBehavior = @{
|
||||
}
|
||||
$settingsJson | ConvertTo-Json | Out-File $settingsPath -Encoding utf8
|
||||
|
||||
winget search test
|
||||
|
||||
function InstallTheApps() {
|
||||
Foreach ($app in $apps) {
|
||||
@ -39,11 +38,11 @@ function InstallTheApps() {
|
||||
if (![String]::Join("", $listApp).Contains($app.name)) {
|
||||
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 --accept-source-agreements --accept-package-agreements
|
||||
# winget install --exact --silent $app.name --source $app.source
|
||||
}
|
||||
else {
|
||||
winget install --exact $app.name
|
||||
winget install --exact $app.name --accept-source-agreements --accept-package-agreements
|
||||
# winget install --exact --silent $app.name
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user