w10install/optional/install-foxitreader.cmd

30 lines
685 B
Batchfile
Raw Normal View History

2022-05-29 21:41:26 +02:00
@echo off
set CONFIG=config\install-foxitreader.txt
set EXE=..\software\foxitreader-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing Foxit Reader process ...
taskkill /F /IM FoxitPDFReader.exe 2>nul
taskkill /F /IM FoxitPDFReaderUpdateService.exe 2>nul
echo installing Foxit Reader ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
2022-05-30 23:40:41 +02:00
echo stopping and delete update service ...
sc stop "FoxitReaderUpdateService"
sc delete "FoxitReaderUpdateService"
2022-05-29 21:41:26 +02:00
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause