w10install/scripts/install-windowsterminal.ps1

15 lines
403 B
PowerShell
Raw Normal View History

2021-01-31 23:59:16 +01:00
# Install Windows Terminal ...
2021-02-22 00:27:16 +01:00
$MSIBUNDLE="..\software\windowsterminal-setup.msixbundle"
2021-02-27 20:07:28 +01:00
if (! (Test-Path $MSIBUNDLE)) {
write-host "ERROR: $MSIBUNDLE not found!"
exit 1
}
2021-01-31 23:59:16 +01:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = "SilentlyContinue"
2021-02-28 22:53:42 +01:00
Add-AppXPackage -path "$MSIBUNDLE"
2021-01-31 23:59:16 +01:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'