w10install/optional/install-horizon.cmd
Michael H.G. Schmidt 797daa23a1 normal Users ... #61
2022-11-13 22:12:39 +01:00

21 lines
406 B
Batchfile

@echo off
call check-for-admin
set EXE=..\software\horizon-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
)
echo ####### %0 #######
echo installing VMware Horizon client ...
start /wait %EXE% /silent /norestart AUTO_UPDATE_ENABLED=0
echo installing Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\VMware Horizon Client.lnk" "%PUBLIC%\Desktop\Horizon.lnk"
echo ####### %0 #######
pause