21 lines
295 B
Batchfile
21 lines
295 B
Batchfile
@echo off
|
|
|
|
set EXE=%SystemDrive%\tools\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
|
|
|