Difference between revisions of "PDF X-Change Viewer"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 1: Line 1:
This is a silent installer for [http://www.docu-track.com/?product/pdfx_viewer PDF X-Change Viewer], an alternative to Adobe Reader. PDF-XChange Viewer is free for private and commercial use.
+
This is a silent installer for [http://www.docu-track.com/?product/pdfx_viewer PDF-XChange Viewer], an alternative to Adobe Reader. PDF-XChange Viewer is free for private and commercial use.
  
 
See the help file topic "Silent installation" for more information about various switches.
 
See the help file topic "Silent installation" for more information about various switches.
Line 7: Line 7:
 
<source lang="xml">
 
<source lang="xml">
 
<package id="pdfxchange"
 
<package id="pdfxchange"
name="PDF Xchange Viewer"  
+
name="PDF-XChange Viewer"  
 
revision="2.5.197"  
 
revision="2.5.197"  
 
reboot="false"  
 
reboot="false"  

Revision as of 10:37, 28 April 2014

This is a silent installer for PDF-XChange Viewer, an alternative to Adobe Reader. PDF-XChange Viewer is free for private and commercial use.

See the help file topic "Silent installation" for more information about various switches.

This is an amended version of the original package further below which uses both the 32bit and 64bit installers and exit codes appropriately to bypass the incompatabilities of each with the other OS. The install checks are also accurate as well. I have used this so I can use one package on 32bit XP and 64bit Windows 7.

<package id="pdfxchange"
	name="PDF-XChange Viewer" 
	revision="2.5.197" 
	reboot="false" 
	priority="20" >
        <check type="uninstall" condition="exists" path="PDF-XChange Viewer" />
        <check type="registry" condition="equals" path="HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\{3A6F4A31-8CFD-46B4-8385-E1F384DB121E}\DisplayVersion" value="2.5.197.0" />
        <install cmd='msiexec.exe /i %SOFTWARE%\pdfxchangeviewer\PXCViewer_x86.2.5.197.msi ADDLOCAL="F_Viewer,F_Help_Viewer,F_ShellExt,F_Langs_Viewer" VIEWER_IN_BROWSERS="0" SET_VIEWER_AS_DEFAULT="0" /qn '
          architecture='x86'>
           <exit code='1633'/>
           <exit code='1603'/>
        </install>
        <install cmd='msiexec.exe /i %SOFTWARE%\pdfxchangeviewer\PXCViewer_x64.2.5.197.msi ADDLOCAL="F_Viewer,F_Help_Viewer,F_ShellExt,F_Langs_Viewer" VIEWER_IN_BROWSERS="0" SET_VIEWER_AS_DEFAULT="0" /qn '
           architecture='x64' >
           <exit code='1633'/>
        </install>
        <upgrade cmd='msiexec.exe /i %SOFTWARE%\pdfxchangeviewer\PXCViewer_x86.2.5.197.msi ADDLOCAL="F_Viewer,F_Help_Viewer,F_ShellExt,F_Langs_Viewer" VIEWER_IN_BROWSERS="0" SET_VIEWER_AS_DEFAULT="0" /qn '
           architecture='x86'>
           <exit code='1633'/>
           <exit code='1603'/>
        </upgrade>
        <upgrade cmd='msiexec.exe /i %SOFTWARE%\pdfxchangeviewer\PXCViewer_x64.2.5.197.msi ADDLOCAL="F_Viewer,F_Help_Viewer,F_ShellExt,F_Langs_Viewer" VIEWER_IN_BROWSERS="0" SET_VIEWER_AS_DEFAULT="0" /qn '
           architecture='x64' >
           <exit code='1633'/>
        </upgrade>
        <remove cmd='msiexec.exe /x{3A6F4A31-8CFD-46B4-8385-E1F384DB121E} /qn ' >
           <exit code='1605'/>
        </remove>
</package>


<package
    id="pdfxchange_viewer"
    name="PDF-XChange Viewer"
    revision="251890"
    reboot="false"
    priority="10">
 
	<check type="registry" condition="exists" path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{A278382D-4F1B-4D47-9885-8523F7261E8D}_is1\UninstallString" value="C:\Program Files\Tracker Software\PDF Viewer\unins000.exe\" />
	<check type="registry" condition="exists" path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{A278382D-4F1B-4D47-9885-8523F7261E8D}_is1\DisplayVersion" value="2.5.189.0" />
 
        <install cmd='"%SOFTWARE%\PDFXVwer.exe" /VERYSILENT /NORESTART' />
 
        <upgrade cmd='"%SOFTWARE%\PDFXVwer.exe" /VERYSILENT /NORESTART' />
 
        <remove cmd='"%PROGRAMFILES%\Tracker Software\PDF-XChange Viewer\unins000.exe" /VERYSILENT' />
 
</package>

Note the installer installs Ask Toolbar, you may want to remove it.