Difference between revisions of "PDFCreator"
(→Upgrading to 0.9.3 from an already installed older release (0.8.1 in my case)) |
|||
Line 14: | Line 14: | ||
<upgrade cmd='msiexec /qn /i %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> | <upgrade cmd='msiexec /qn /i %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> | ||
<remove cmd='msiexec /qn /x %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> | <remove cmd='msiexec /qn /x %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> | ||
− | </package | + | </package> |
</pre> | </pre> | ||
Revision as of 14:14, 1 August 2007
Contents
PDFCreator 0.9.3
PDFCreator 0.9.3 is available as an MSI package. Using the standard MSI install/uninstall seems to work for me.
<package id="pdfcreator" name="PDFCreator" revision="1" reboot="false" priority="0"> <check type="uninstall" condition="exists" path="PDFCreator" /> <install cmd='msiexec /qn /i %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> <upgrade cmd='msiexec /qn /i %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> <remove cmd='msiexec /qn /x %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> </package>
Upgrading to 0.9.3 from an already installed older release (0.8.1 in my case)
The previous package block works when 0.9.3 is the first release to be installed. The package block below resolves 2 problems.
- upgrading force reboot -> so i added a /norestart to msiexec
- registry keys are not properly modified by the package
<package id="pdfcreator" name="PDFCreator" revision="6" reboot="false" priority="0"> <check type="uninstall" condition="exists" path="PDFCreator" /> <install cmd='msiexec /qn /norestart /i %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> <install cmd='regedit /s %SOFTWARE%\pdfcreator\HKLM_pdfcreator_command.reg' /> <upgrade cmd='msiexec /qn /norestart /i %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> <upgrade cmd='regedit /s %SOFTWARE%\pdfcreator\HKLM_pdfcreator_command.reg' /> <remove cmd='msiexec /qn /x %SOFTWARE%\pdfcreator\zPDFCreator-0_9_3-AD_DeploymentPackage-WithoutToolbar.msi' /> </package>
The reg file is :
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\PDFCreator\Ports\PDFCreator:] "Command"="C:\\Program Files\\PDFCreator\\PDFSpooler.exe"
There is a last bug to solve. I'll post the solution here later.
PDFCreator 0.9.1
PDFCreator 0.9.1 comes in the handy form of a MSI package.
Unfortunately, when you install it, it is possible that a normal user will not be able to use this printer - this has to be corrected with rundll printui.dll,PrintUIEntry...
. The complete silent installer and uninstaller looks like this:
<package id="pdfcreator" name="PDFCreator" revision="1" reboot="false" priority="0"> <check type="uninstall" condition="exists" path="PDFCreator" /> <install cmd='msiexec /qb /i "%SOFTWARE%\PDFCreator\PDFCreator-0_9_1_AFPLGhostscript_32bit.msi"' /> <install cmd='rundll32 printui.dll,PrintUIEntry /q /ga pdfcreator' /> <remove cmd='MsiExec.exe /q /x{0001B4FD-9EA3-4D90-A79E-FD14BA3AB01D}' /> </package>
Note: while I was testing this, I installed and uninstalled PDFCreator 0.9.1 without rebooting the PC. After yet another installation, the installer popped up a window, saying that a restart is necessary. So perhaps if you're upgrading from the older PDFCreator version, a restart after uninstalling that old version might be a good idea.
Options
- Command line options: http://www.pdfforge.org/node/112
Questions
- How do you prevent installing the browser toolbar?
There is a way to prevent installing the toolbar when installing with the Inno Setup based .exe. Just use /compoments="program,ghostscript,languages,languages\english". These will install only these ones. But on sourceforge, an MSI package of 0.9.3 without toolbar is available.
Older PDFCreator versions
Do a manual installation of PDFCreator using the dos shell:
PDFCreator-0_8_0_GNUGhostscript.exe /SAVEINF="pdfcreator-0.8.0.inf"
Use the inf-file for the installer:
<package id="pdfcreator-0.8.0" name="PDF Creator 0.8.0" revision="1" reboot="true" priority="1000"> <check type="uninstall" condition="exists" path="PDFCreator 0.8.0" /> <install cmd='%SOFTWARE%\pdfcreator\PDFCreator-0_8_0_GNUGhostscript.exe /LOADINF="%SOFTWARE%\pdfcreator\pdfcreator-0.8.0.inf" /VERYSILENT /NORESTART /SP-' /> <remove cmd='"%ProgramFiles%\PDFCreator\unins000.exe" /VERYSILENT' /> </package>
- Watch out to really use the /NORESTART parameter in the install. If you don't this will happen: the installer will restart the machine, but wpkg doesn't have time to make a note about the successful installation, on reboot wpkg will try and reinstall the package, but skip because it finds "PDFCreator 0.8.0" in the uninstall folder. PDFCreator has been installed, but the user will always be nagged by the wpkg notification after a reboot.
- Using the environment variable %ProgramFiles% keeps your uninstall independent of the windows language version. Watch out to also remove the Path="c:\somepath" entry in the inf-file if you want a truly language-independent installation.
- There is also a patch for this version of PDFCreator. Because it produces the same uninstall entry as this version, i.e. "PDFCreator 0.8.0" I have not yet found a way to successfully add it as an additional package. - Now I have, see next section.
Installing 0.8.0-patch2
Create the inf file with the new version in the same way as above. Create the package:
<package id="pdfcreator-0.8.0-patch2" name="PDF Creator 0.8.0" revision="1" reboot="true" execute="once" priority="999"> <install cmd='%SOFTWARE%\ ... (nearly same as above) ...' /> <remove cmd='"%ProgramFiles%\PDFCreator\unins000.exe" /VERYSILENT' /> </package>
Main difference: I've set down the priority, so 0.8.0 is always installed before patch2 and I've also removed the install check. But it doesn't stop here. Next, create a profile:
<profile id="pdfcreator"> <package package-id="pdfcreator-0.8.0" /> <package package-id="pdfcreator-0.8.0-patch2" /> </profile>
Now, whenever you want to include pdfcreator, you can just include the "software profile" in any other profiles. Having both versions in a profile and using the priority settings ensures that 0.8.0 is always installed before patch2.