w10install/optional/install-spotify.cmd
Michael H.G. Schmidt 797daa23a1 normal Users ... #61
2022-11-13 22:12:39 +01:00

22 lines
299 B
Batchfile

@echo off
call check-for-admin
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%
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause