added pdf24 and autoupdate for citrix disabled

This commit is contained in:
Michael H.G. Schmidt 2022-05-31 22:00:03 +02:00
parent ecf951280e
commit d27868e4a6
3 changed files with 34 additions and 1 deletions

BIN
optional/config/pdf24.reg Normal file

Binary file not shown.

View File

@ -13,7 +13,7 @@ if NOT EXIST %EXE% (
echo ####### %0 #######
echo installing Citrix Workspace LTS ...
start /wait %EXE% /silent /noreboot
start /wait %EXE% /silent /noreboot /AutoUpdateCheck=disabled
echo disabling autostart for Citrix Workspace ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^

View File

@ -0,0 +1,33 @@
@echo off
set OPT=..\optional
set SOFTWARE=..\software
set MSI=pdf24-setup.msi
set CONFIG=config\pdf24.reg
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing PDF24 ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /q
@echo off
cd %OPT%
echo tweaking PDF24 ...
reg import %CONFIG%
echo removing Desktop icon ...
del /F "%PUBLIC%\Desktop\PDF24.lnk" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause