Difference between revisions of "Buzzsaw"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 7: Line 7:
  
 
   <package id="buzzsaw" name="Autodesk ProjectPoint Buzzsaw 7" revision="1" reboot="false" priority="0">
 
   <package id="buzzsaw" name="Autodesk ProjectPoint Buzzsaw 7" revision="1" reboot="false" priority="0">
     <check type="file" condition="exists" path="%PROGRAMFILES%\ProjectPoint-7\ProjectPoint.exe" />
+
     <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\ProjectPoint-7\ProjectPoint.exe" value="7.3.1838.31" />  
 
     <install cmd='"%SOFTWARE%\autodesk\ProjectPoint-BZ-EN.exe" /q2' />
 
     <install cmd='"%SOFTWARE%\autodesk\ProjectPoint-BZ-EN.exe" /q2' />
 
     <install cmd='"%PROGRAMFILES%\ProjectPoint-6\Setup.exe" /remove /q2' />
 
     <install cmd='"%PROGRAMFILES%\ProjectPoint-6\Setup.exe" /remove /q2' />

Revision as of 04:30, 25 December 2006

General Info

This is a silent installer and uninstaller for Autodesk ProjectPoint Buzzsaw 7. If you have a lower minor version of ProjectPoint 7 installed (7.x.xxxx.xx) it will be automatically removed before the updated ProjectPoint 7 installs.

Note: The command to silently uninstall ProjectPoint 6 is included because installing ProjectPoint 7 does not uninstall earlier major revisions such as ProjectPoint 6. If for some reason you want to have both versions installed remove that line.


 <package id="buzzsaw" name="Autodesk ProjectPoint Buzzsaw 7" revision="1" reboot="false" priority="0">
   <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\ProjectPoint-7\ProjectPoint.exe" value="7.3.1838.31" /> 
   <install cmd='"%SOFTWARE%\autodesk\ProjectPoint-BZ-EN.exe" /q2' />
   <install cmd='"%PROGRAMFILES%\ProjectPoint-6\Setup.exe" /remove /q2' />
   <upgrade cmd='"%SOFTWARE%\autodesk\ProjectPoint-BZ-EN.exe" /q2' />
   <remove cmd='"%PROGRAMFILES%\ProjectPoint-7\Setup.exe" /remove /q2' />
 </package>