w10install/scripts/install-windowsterminal.ps1
Michael H.G. Schmidt 09bd6f5e4b .
2021-02-28 22:17:02 +01:00

15 lines
413 B
PowerShell

# Install Windows Terminal ...
$MSIBUNDLE="..\software\windowsterminal-setup.msixbundle"
if (! (Test-Path $MSIBUNDLE)) {
write-host "ERROR: $MSIBUNDLE not found!"
exit 1
}
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = "SilentlyContinue"
Add-AppXPackage -allusers -path "$MSIBUNDLE"
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'