.
This commit is contained in:
parent
e2eb34acfe
commit
5e7686953f
@ -20,4 +20,3 @@ reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\S
|
|||||||
/v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f
|
/v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# Install Windows Terminal ...
|
# Install Windows Terminal ...
|
||||||
|
|
||||||
$MSIBUNDLE="..\software\windowsterminal-setup.msixbundle"
|
cd ..\software
|
||||||
|
$MSIBUNDLE="windowsterminal-setup.msixbundle"
|
||||||
if (! (Test-Path $MSIBUNDLE)) {
|
if (! (Test-Path $MSIBUNDLE)) {
|
||||||
write-host "ERROR: $MSIBUNDLE not found!"
|
write-host "ERROR: $MSIBUNDLE not found!"
|
||||||
exit 1
|
exit 1
|
||||||
@ -10,5 +11,7 @@ write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
|||||||
|
|
||||||
$ErrorActionPreference = "SilentlyContinue"
|
$ErrorActionPreference = "SilentlyContinue"
|
||||||
Add-AppXPackage -path "$MSIBUNDLE"
|
Add-AppXPackage -path "$MSIBUNDLE"
|
||||||
|
DISM.EXE /Online /Add-ProvisionedAppxPackage /PackagePath:$MSIBUNDLE /SkipLicense
|
||||||
|
cd ..\scripts
|
||||||
|
|
||||||
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
||||||
|
17
tools/optional/install-spotify.cmd
Normal file
17
tools/optional/install-spotify.cmd
Normal 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user