Difference between revisions of "Brain Explorer"
From WPKG | Open Source Software Deployment and Distribution
(Brain Exploere 2) |
m (Added category, tense adjustment) |
||
| Line 1: | Line 1: | ||
The Brain Explorer 2 software is a desktop application for viewing the human brain anatomy and gene expression data in 3-D. | The Brain Explorer 2 software is a desktop application for viewing the human brain anatomy and gene expression data in 3-D. | ||
| − | I | + | I edited the MSI with Orca to determine the version number from the Property table and renameed the MSI. |
<source lang="xml"> | <source lang="xml"> | ||
| Line 17: | Line 17: | ||
</package> | </package> | ||
</source> | </source> | ||
| + | |||
| + | [[Category: Silent Installers]] | ||
Latest revision as of 17:37, 18 March 2015
The Brain Explorer 2 software is a desktop application for viewing the human brain anatomy and gene expression data in 3-D.
I edited the MSI with Orca to determine the version number from the Property table and renameed the MSI.
<package id="brainexplorer"
name="Brain Explorer 2"
revision="%version%"
reboot="false"
execute="once"
priority="10">
<variable name="version" value="2.3.4.2382"/>
<check type="uninstall" condition="versionequalto" path="Brain Explorer 2" value="%version%"/>
<install cmd='msiexec.exe /i "%SOFTWARE%\brainexplorer\BrainExplorer2.%version%.msi" /qn /norestart ALLUSERS=1 '/>
<upgrade include='install' />
<remove cmd='MsiExec.exe /X{669AD61C-F3A4-4962-8C42-5226AE04BA77} /qn '/><!--2.3.4.2382-->
</package>