Difference between revisions of "Accelrys Draw"
From WPKG | Open Source Software Deployment and Distribution
(Accelrys Draw formerly Symyx Draw) |
m |
||
Line 5: | Line 5: | ||
The download setup.exe in an InstallShield wrapper around a simple MSI. Use uniextract 'to subdir' and chose the /b option from the wizard to find the 'symyx draw.msi' which you can then use with the normal msiexec.exe /i switches. | The download setup.exe in an InstallShield wrapper around a simple MSI. Use uniextract 'to subdir' and chose the /b option from the wizard to find the 'symyx draw.msi' which you can then use with the normal msiexec.exe /i switches. | ||
− | + | <source lang="xml"> | |
+ | <package id="accelrysdraw" | ||
name="Accelrys Draw" | name="Accelrys Draw" | ||
revision="%version%" | revision="%version%" | ||
Line 14: | Line 15: | ||
<install cmd='msiexec /i %SOFTWARE%\accelrysdraw\symyxdraw.%version%.msi /qn '/> | <install cmd='msiexec /i %SOFTWARE%\accelrysdraw\symyxdraw.%version%.msi /qn '/> | ||
<remove cmd='msiexec /x {44653096-3E44-402E-B68E-37D77240BFA8} /qn '/> | <remove cmd='msiexec /x {44653096-3E44-402E-B68E-37D77240BFA8} /qn '/> | ||
− | + | </package> | |
+ | </source> | ||
+ | |||
+ | [[Category: Silent Installers]] |
Revision as of 19:22, 19 January 2012
Accelrys Draw
Accelrys Draw enables scientists to draw and edit complex molecules, chemical reactions and biological sequences with ease, facilitating the collaborative searching, viewing, communicating, and archiving of scientific information. IT is free for use by academic institutions if a license agreement is completed and accepted by Accelrys.
The download setup.exe in an InstallShield wrapper around a simple MSI. Use uniextract 'to subdir' and chose the /b option from the wizard to find the 'symyx draw.msi' which you can then use with the normal msiexec.exe /i switches.
<package id="accelrysdraw"
name="Accelrys Draw"
revision="%version%"
reboot="false"
priority="100">
<variable name="version" value="4.0.100"/>
<check type="uninstall" condition="exists" path="Symyx Draw %version%"/>
<install cmd='msiexec /i %SOFTWARE%\accelrysdraw\symyxdraw.%version%.msi /qn '/>
<remove cmd='msiexec /x {44653096-3E44-402E-B68E-37D77240BFA8} /qn '/>
</package>