w10install/optional/install-pdf24.cmd
2023-02-02 10:01:43 +01:00

49 lines
905 B
Batchfile

@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
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 icons ...
del /F /Q "%PUBLIC%\Desktop\PDF24.lnk" 2>nul
del /F /Q "%USERPROFILE%\Desktop\Online PDF Tools.url" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
rem remove the FAX printer ...
call remove-printer.cmd "PDF24 Fax"
rem ... and remove the Microsoft fax printer ...
call remove-printer.cmd "Microsoft Print to PDF"
pause