|
|
| Author |
Message |
namfan
Joined: 13 Nov 2008 Posts: 1
|
Posted: Thu Nov 13, 2008 10:03 pm Post subject: Silent Installation |
|
|
Do you allow silent installation. If so, will you please provide the switches or arguments necessary to allow.
Thank you,
Shawn Anderson |
|
| Back to top |
|
 |
qpple
Joined: 06 Jan 2010 Posts: 1
|
Posted: Wed Jan 06, 2010 11:25 am Post subject: Re: Silent Installation |
|
|
| namfan wrote: | Do 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. |
|
| Back to top |
|
 |
ruudboek
Joined: 14 Jun 2009 Posts: 2
|
Posted: Fri Apr 02, 2010 3:18 pm Post subject: |
|
|
The 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? |
|
| Back to top |
|
 |
delecorski
Joined: 24 Apr 2010 Posts: 3
|
Posted: Sat Apr 24, 2010 12:27 pm Post subject: |
|
|
ive got exactly the same problem like ruudboek
Any solutions? |
|
| Back to top |
|
 |
pdf24 Site Admin
Joined: 14 Aug 2006 Posts: 245
|
Posted: Mon Apr 26, 2010 6:49 am Post subject: |
|
|
Oh 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. |
|
| Back to top |
|
 |
delecorski
Joined: 24 Apr 2010 Posts: 3
|
Posted: Wed Jul 28, 2010 4:19 pm Post subject: |
|
|
| any solutions admin? |
|
| Back to top |
|
 |
delecorski
Joined: 24 Apr 2010 Posts: 3
|
Posted: Thu Jul 29, 2010 8:23 pm Post subject: |
|
|
Solution:
Install the Geek Software GmbH Cert before install pdf24
| Code: | | certutil.exe -f -addstore "TrustedPublisher" PDF24-Zertifikat.p7b |
thx to testesser from NLite forum
he made a Bat file to install the PDF 24
| Code: |
@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 |
|
| Back to top |
|
 |
|