Home › Forums › PDF24 Creator › Installation › Silent Installation
- This topic has 6 replies, 5 voices, and was last updated 14 years, 7 months ago by delecorski.
-
AuthorPosts
-
2008-11-13 at 22:03 #471namfanParticipant
Do you allow silent installation. If so, will you please provide the switches or arguments necessary to allow.
Thank you,
Shawn Anderson
2010-01-06 at 11:25 #1030qppleParticipantDo you allow silent installation. If so, will you please provide the switches or arguments necessary to allow.
Thank you,
Shawn Anderson
I use /verysilent as parameter.
more info : http://www.pdf24.org/blog/pdf24-creator-silent-setup/
But I'm still looking how to disable the start menu icon creation and the automatic update checking.
2010-04-02 at 15:18 #1031ruudboekMemberThe silent install does not function properly on windows 7 (32-bit).
At the end of the installation a dialog is presented asking the following:Would you like to install this device software?
Then i have to manually click on "Install" to have the driver installed.
Apparently the PDF 24 printer driver is not trusted and that makes it break the silent install.Is it possible for this problem to be solved?
Or is there a workaround available?2010-04-24 at 12:27 #1032delecorskiParticipantive got exactly the same problem like ruudboek
Any solutions?2010-04-26 at 06:49 #1033pdf24MemberOh yes, that's really a problem. We use a Thawte certificate to sign the printer driver. Maybe that's the problem. Could is be that microsoft only trusts certificates from special CA's?
I'll check the install process, maybe there is a special flag in install command.
2010-07-28 at 16:19 #1034delecorskiParticipantany solutions admin?
2010-07-29 at 20:23 #1035delecorskiParticipantSolution:
Install the Geek Software GmbH Cert before install pdf24
certutil.exe -f -addstore "TrustedPublisher" PDF24-Zertifikat.p7b
thx to testesser from NLite forum
he made a Bat file to install the PDF 24
@echo off
Title PDF24 Installation
REM wechsle ins aktuelle Verzeichnis
CD /D %~dp0
Echo.
Echo Installiere Treiber-Zertifikat
certutil.exe -f -addstore "TrustedPublisher" PDF24-Zertifikat.p7b >%temp%PDF24-Install.txt
Echo.
Echo Fehler: %errorlevel%
Echo.
if %errorlevel%==0 (
goto install
) else (
Title !!! Fehler !!!
Echo Schreibe Log nach %temp%PDF24-Install.txt
Echo.
Echo Fehler: %errorlevel% >>%temp%PDF24-Install.txt
Echo Installation wird abgebrochen ...
REM 10 Sekunden Pause
ECHO wscript.sleep 10000 >%temp%sleep.vbs
wscript.exe %temp%sleep.vbs
DEL "%temp%sleep.vbs" /f /q >nul
exit
)
:install
Echo Installiere PDF24
Echo Bitte Warten ...
PDF24-Creator-v2.8.4.exe /SILENT /LOADINF=PDF24-Creator-v2.8.4.inf
Echo.
Echo Done.
Echo.
Echo Deinstalliere Treiber-Zertifikate
Echo Deinstalliere Treiber-Zertifikate >>%temp%PDF24-Install.txt
certutil.exe -delstore TrustedPublisher 4bf87b8114e9dc990e2cb15e7060c3eb >>%temp%PDF24-Install.txt
Echo Fehler: %errorlevel%
Echo.
REM 5 Sekunden Pause
ECHO wscript.sleep 5000 >%temp%sleep.vbs
wscript.exe %temp%sleep.vbs
DEL "%temp%sleep.vbs" /f /q >nul
exit
Thread Linkhttp://www.win-lite.de/wbb/index.php?page=Thread&threadID=3829
SFX Package Link: http://team.win-lite.de/testesser/Addons/PDF24-Creator-v2.8.4_ALL.7z -
AuthorPosts
- You must be logged in to reply to this topic.