w10install/scripts/install-windowsterminal.ps1
Michael H.G. Schmidt b713e6bd11 testing ...
2022-12-28 23:19:32 +01:00

19 lines
512 B
PowerShell

# Install Windows Terminal ...
cd ..\software
$MSIXBUNDLE="windowsterminal-setup.msixbundle"
if (! (Test-Path $MSIXBUNDLE)) {
write-host "ERROR: $MSIXBUNDLE not found!"
exit 1
}
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = "SilentlyContinue"
Add-AppXPackage -path "$MSIXBUNDLE"
DISM.EXE /Online /Add-ProvisionedAppxPackage /PackagePath:$MSIXBUNDLE /SkipLicense
cd ..\scripts
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'