This commit is contained in:
Michael H.G. Schmidt 2021-02-28 23:52:39 +01:00
parent e2eb34acfe
commit 5e7686953f
3 changed files with 21 additions and 2 deletions

View File

@ -20,4 +20,3 @@ reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\S
/v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f
echo ####### %0 #######

View File

@ -1,6 +1,7 @@
# Install Windows Terminal ...
$MSIBUNDLE="..\software\windowsterminal-setup.msixbundle"
cd ..\software
$MSIBUNDLE="windowsterminal-setup.msixbundle"
if (! (Test-Path $MSIBUNDLE)) {
write-host "ERROR: $MSIBUNDLE not found!"
exit 1
@ -10,5 +11,7 @@ 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),'#######'

View File

@ -0,0 +1,17 @@
@echo off
set EXE=..\..\software\spotify-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Spotify for user %USERNAME% ...
%EXE%
echo ####### %0 #######
timeout /T 3