w10install/scripts/install-windowsterminal.ps1
Michael H.G. Schmidt 5e7686953f .
2021-02-28 23:52:39 +01:00

18 lines
505 B
PowerShell

# Install Windows Terminal ...
cd ..\software
$MSIBUNDLE="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"
DISM.EXE /Online /Add-ProvisionedAppxPackage /PackagePath:$MSIBUNDLE /SkipLicense
cd ..\scripts
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'