Difference between revisions of "Labview"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
This is a silent installer and uninstaller for Labview. | This is a silent installer and uninstaller for Labview. | ||
− | + | <source lang="xml"> | |
+ | <package id="labview" name="Labview" revision="1" priority="0" reboot="true"> | ||
<check type="file" condition="exists" path='%PROGRAMFILES%\National Instruments\LabVIEW 7.0\LabVIEW.exe' /> | <check type="file" condition="exists" path='%PROGRAMFILES%\National Instruments\LabVIEW 7.0\LabVIEW.exe' /> | ||
<install cmd='%SOFTWARE%\labview\windows\setup.exe /q /r:n' > | <install cmd='%SOFTWARE%\labview\windows\setup.exe /q /r:n' > | ||
Line 7: | Line 8: | ||
</install> | </install> | ||
<remove cmd="msiexec /x{2C585265-527B-4D76-B9B4-2F037C33C40C} /qn /norestart" /> | <remove cmd="msiexec /x{2C585265-527B-4D76-B9B4-2F037C33C40C} /qn /norestart" /> | ||
− | + | </package> | |
+ | </source> | ||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Revision as of 15:23, 17 February 2008
This is a silent installer and uninstaller for Labview.
<package id="labview" name="Labview" revision="1" priority="0" reboot="true">
<check type="file" condition="exists" path='%PROGRAMFILES%\National Instruments\LabVIEW 7.0\LabVIEW.exe' />
<install cmd='%SOFTWARE%\labview\windows\setup.exe /q /r:n' >
<exit code="3010" />
</install>
<remove cmd="msiexec /x{2C585265-527B-4D76-B9B4-2F037C33C40C} /qn /norestart" />
</package>