2021-01-31 23:59:16 +01:00
|
|
|
# Install Windows Terminal ...
|
|
|
|
|
2021-02-28 23:52:39 +01:00
|
|
|
cd ..\software
|
|
|
|
$MSIBUNDLE="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-02-28 23:52:39 +01:00
|
|
|
DISM.EXE /Online /Add-ProvisionedAppxPackage /PackagePath:$MSIBUNDLE /SkipLicense
|
|
|
|
cd ..\scripts
|
2021-01-31 23:59:16 +01:00
|
|
|
|
|
|
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|