w10install/scripts/install-windowsterminal.ps1
Michael H.G. Schmidt 2a6e6dee1c restructured
2021-02-27 20:07:28 +01:00

15 lines
403 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 -path "$MSIBUNDLE"
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'