w10install/scripts/install-windowsterminal.ps1

18 lines
510 B
PowerShell
Raw Normal View History

2021-01-31 23:59:16 +01:00
# Install Windows Terminal ...
2021-02-28 23:52:39 +01:00
cd ..\software
$MSIXBUNDLE="windowsterminal-setup.msixbundle"
if (! (Test-Path $MSIXBUNDLE)) {
write-host "ERROR: $MSIXBUNDLE not found!"
2021-02-27 20:07:28 +01:00
exit 1
}
2021-01-31 23:59:16 +01:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = "SilentlyContinue"
Add-AppXPackage -path "$MSIXBUNDLE"
DISM.EXE /Online /Add-ProvisionedAppxPackage /PackagePath:$MSIXBUNDLE /SkipLicense
2021-02-28 23:52:39 +01:00
cd ..\scripts
2021-01-31 23:59:16 +01:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'