w10install/optional/users/install-spotify.cmd

21 lines
295 B
Batchfile
Raw Permalink Normal View History

2022-11-13 22:12:39 +01:00
@echo off
2023-02-16 14:32:10 +01:00
set EXE=%SystemDrive%\tools\software\spotify-setup.exe
2022-11-13 22:12:39 +01:00
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