w10install/optional/install-spotify.cmd

21 lines
298 B
Batchfile
Raw Normal View History

2021-02-28 23:52:39 +01:00
@echo off
2021-03-02 14:59:41 +01:00
set EXE=..\software\spotify-setup.exe
2021-02-28 23:52:39 +01:00
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Spotify for user %USERNAME% ...
%EXE%
2021-03-06 16:23:00 +01:00
rem refresh desktop (W10 style)
ie4uinit.exe -show
2021-02-28 23:52:39 +01:00
echo ####### %0 #######
2021-03-02 21:47:42 +01:00
pause
2021-02-28 23:52:39 +01:00