Difference between revisions of "PDF Converter Professional 4"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
Line 1: Line 1:
This is the install package for Nuance/ScanSoft PDF Converter Professional 4
+
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
 
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.   
 
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.
 
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
+
<source lang="xml">
 +
<package
 
     id="isscript10"
 
     id="isscript10"
 
     name="ISScript 10"
 
     name="ISScript 10"
Line 14: Line 16:
 
     <check type="file" condition="exists" path="%PROGRAMFILES%\Common Files\InstallShield\Driver\10\Intel 32\IDriver2.exe" />
 
     <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' />
 
     <install cmd='msiexec /q /i "%SOFTWARE%\pdfconverter\ISScript10.msi" ALLUSERS=1' />
</package>
+
</package>
 +
</source>
  
<package
+
<source lang="xml">
 +
<package
 
     id="pdfconverterpro"
 
     id="pdfconverterpro"
 
     name="PDF Converter Pro 4"
 
     name="PDF Converter Pro 4"
Line 28: Line 32:
 
     </install>
 
     </install>
 
     <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>
 +
</source>
  
 
[[Category: Silent Installers]]
 
[[Category: Silent Installers]]

Latest revision as of 19:18, 12 March 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>