Difference between revisions of "Crystal Reports"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
Line 1: Line 1:
 
This is a silent installer and uninstaller for Crystal Reports (and, a language pack).
 
This is a silent installer and uninstaller for Crystal Reports (and, a language pack).
<pre>
+
<source lang="xml">
 
<package
 
<package
 
  id="crystalreports"
 
  id="crystalreports"
Line 13: Line 13:
 
  <remove  cmd='MsiExec.exe /q /x{7C05EEDD-E565-4E2B-ADE4-0C784C17311C}' />
 
  <remove  cmd='MsiExec.exe /q /x{7C05EEDD-E565-4E2B-ADE4-0C784C17311C}' />
 
</package>
 
</package>
</pre>
+
</source>
  
 
Language pack - if you have a different language version, you'll have to make adjustments to uninstall string, and to remove cmd:
 
Language pack - if you have a different language version, you'll have to make adjustments to uninstall string, and to remove cmd:
  
<pre>
+
<source lang="xml">
 
<package
 
<package
 
  id="crystalreportsLP"
 
  id="crystalreportsLP"
Line 30: Line 30:
 
  <remove  cmd='MsiExec.exe /q /x{AC94622D-D899-44DF-9857-7DD31958C541}' />
 
  <remove  cmd='MsiExec.exe /q /x{AC94622D-D899-44DF-9857-7DD31958C541}' />
 
</package>
 
</package>
</pre>
+
</source>
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Latest revision as of 22:04, 7 February 2008

This is a silent installer and uninstaller for Crystal Reports (and, a language pack).

<package
 id="crystalreports"
 name="Crystal Reports"
 revision="1"
 priority="0">

 <check type="uninstall" condition="exists" path="Crystal Reports for .NET Framework 2.0 (x86)" />
 
 <install cmd='msiexec /i "%SOFTWARE%\CrystalReports\CRRedist2005_x86.msi" /q ALLUSERS=1' />
 
 <remove  cmd='MsiExec.exe /q /x{7C05EEDD-E565-4E2B-ADE4-0C784C17311C}' />
</package>

Language pack - if you have a different language version, you'll have to make adjustments to uninstall string, and to remove cmd:

<package
 id="crystalreportsLP"
 name="Crystal Reports language pack"
 revision="1"
 priority="0">
 
 <check type="uninstall" condition="exists" path="Crystal Reports for .NET Framework 2.0 Language Pack (x86) - DEU" />
 
 <install cmd='msiexec /i "%SOFTWARE%\CrystalReports\CRRedist2005_x86_de.msi" /q ALLUSERS=1' />
 
 <remove  cmd='MsiExec.exe /q /x{AC94622D-D899-44DF-9857-7DD31958C541}' />
</package>