w10install/optional/install-steam.cmd
Michael H.G. Schmidt da83276ad3 added steam
2021-03-10 23:29:53 +01:00

21 lines
302 B
Batchfile

@echo off
set EXE=..\software\steam-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing STEAM processes...
taskkill /F /IM steam.exe 2>nul
echo installing STEAM ...
start /wait %EXE% /S
echo ####### %0 #######
pause