w10install/optional/install-spotify.cmd

18 lines
250 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%
echo ####### %0 #######
timeout /T 3