w10install/optional/install-pdf24.cmd

43 lines
738 B
Batchfile
Raw Normal View History

2022-11-13 22:12:39 +01:00
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
2022-11-13 22:12:39 +01:00
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 ...
2023-01-27 16:36:38 +01:00
del /F /Q "%PUBLIC%\Desktop\PDF24.lnk" 2>nul
del /F /Q "%USERPROFILE%\Desktop\Online PDF Tools.url" 2>nul
2022-11-13 22:12:39 +01:00
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
2023-01-26 11:13:20 +01:00
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
2022-11-13 22:12:39 +01:00
pause