Difference between revisions of "ToxWiz Client"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(ToxWiz Client)
m
 
Line 5: Line 5:
 
To get the msi and cab files you must execute the .exe with /extract:c:\''myextractedpath'' I then renamed the 2_5_0 to _2.5_0 to use the %version% option.
 
To get the msi and cab files you must execute the .exe with /extract:c:\''myextractedpath'' I then renamed the 2_5_0 to _2.5_0 to use the %version% option.
  
<package id="toxwiz"
+
<source lang="xml">
 +
<package id="toxwiz"
 
     name="ToxWiz Client 2.5"
 
     name="ToxWiz Client 2.5"
 
     revision="%version%"
 
     revision="%version%"
Line 14: Line 15:
 
     <install cmd='MsiExec.exe /i %software%\toxwiz\ToxWizClient_%version%_0.msi ALLUSERS=1 /qn /norestart'/>
 
     <install cmd='MsiExec.exe /i %software%\toxwiz\ToxWizClient_%version%_0.msi ALLUSERS=1 /qn /norestart'/>
 
     <remove cmd='MsiExec.exe /x{A515458E-F554-49D6-8F5A-2E122C56A47A} /qn /norestart'/>
 
     <remove cmd='MsiExec.exe /x{A515458E-F554-49D6-8F5A-2E122C56A47A} /qn /norestart'/>
</package>
+
</package>
 +
</source>
 +
 
 +
[[Category: Silent Installers]]

Latest revision as of 22:05, 14 February 2012

More scientific software.

ToxWiz is a software solution for predicting toxic endpoints and for elucidating mechanisms of toxicity. It allows you to understand on- and off- target mechanisms of action of your compounds.

To get the msi and cab files you must execute the .exe with /extract:c:\myextractedpath I then renamed the 2_5_0 to _2.5_0 to use the %version% option.

<package id="toxwiz"
     name="ToxWiz Client 2.5"
     revision="%version%"
     reboot="false"
     priority="1">
     <variable name="version" value="2.5"/>
     <check type="uninstall" condition="versionequalto" path="ToxWiz %version%" value="%version%.0" />
     <install cmd='MsiExec.exe /i %software%\toxwiz\ToxWizClient_%version%_0.msi ALLUSERS=1 /qn /norestart'/>
     <remove cmd='MsiExec.exe /x{A515458E-F554-49D6-8F5A-2E122C56A47A} /qn /norestart'/>
</package>