w10install/optional/install-citrixreceiver.cmd

28 lines
889 B
Batchfile
Raw Normal View History

2021-01-21 00:29:50 +01:00
@echo off
2021-02-27 20:07:28 +01:00
set EXE=..\software\citrixreceiver-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
2021-03-06 16:49:58 +01:00
echo GOTO: https://www.citrix.com/de-de/downloads/citrix-receiver/legacy-receiver-for-windows/receiver-for-windows-49LTSR.html
echo and save the file as "citrixreceiver-setup.exe" in folder "software" !
pause
2021-02-27 20:07:28 +01:00
exit /b
)
2021-01-21 00:29:50 +01:00
echo ####### %0 #######
echo installing Citrix Receiver LTS ...
2021-03-06 16:23:00 +01:00
start /wait %EXE% /silent /noreboot
2021-01-21 00:29:50 +01:00
2021-02-14 15:29:16 +01:00
echo disabling autostart for Citrix Receiver ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^
/v "ConnectionCenter" /d 0300000065d2d743d402d701 /t REG_BINARY /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^
/v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f
2021-01-21 00:29:50 +01:00
echo ####### %0 #######
2021-03-02 21:47:42 +01:00
pause