Difference between revisions of "PDF Converter Professional 4"
From WPKG | Open Source Software Deployment and Distribution
(Nuance ScanSoft PDF Converter Professional 4) |
m |
||
| Line 29: | Line 29: | ||
<remove cmd='MsiExec.exe /x "%SOFTWARE%\pdfconverter\ScanSoft PDF Professional 4.msi" /qn ' /> | <remove cmd='MsiExec.exe /x "%SOFTWARE%\pdfconverter\ScanSoft PDF Professional 4.msi" /qn ' /> | ||
</package> | </package> | ||
| + | |||
| + | [[:Category:Silent Installers]] | ||
Revision as of 19:36, 18 February 2008
This is the install package for Nuance/ScanSoft PDF Converter Professional 4
The first step is to make an admin install point. Go to a DOS prompt and run setup /a Choose the options in the install GUI including your serial number, finally choose a network shared install folder. Then finish.
During this process a TRANSFORMS file is created in the admin install point called admin.mst this is used on the command line below. The Installshield ISScript10 is also located in the admin install point.
<package id="isscript10" name="ISScript 10" revision="1" reboot="true" priority="5"> <check type="file" condition="exists" path="%PROGRAMFILES%\Common Files\InstallShield\Driver\10\Intel 32\IDriver2.exe" /> <install cmd='msiexec /q /i "%SOFTWARE%\pdfconverter\ISScript10.msi" ALLUSERS=1' /> </package>
<package
id="pdfconverterpro"
name="PDF Converter Pro 4"
revision="1"
reboot="false"
priority="1">
<depends package-id="isscript10"/>
<check type="uninstall" condition="exists" path="ScanSoft PDF Professional 4" />
<install cmd='msiexec /i "%SOFTWARE%\pdfconverter\ScanSoft PDF Professional 4.msi" ALLUSERS=1 TRANSFORMS=admin.mst /qn ' >
<exit code="3010"/>
</install>
<remove cmd='MsiExec.exe /x "%SOFTWARE%\pdfconverter\ScanSoft PDF Professional 4.msi" /qn ' />
</package>