Difference between revisions of "EDrawings"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(2006->2009)
Line 1: Line 1:
== eDrawings 2006 ==
+
== eDrawings 2009 ==
 +
 
 +
This is a silent installer and uninstaller for [http://www.edrawingsviewer.com/pages/programs/download/index.html eDrawings 2009] (a nice CAD viewer from Solidworks).
  
This is a silent installer and uninstaller for eDrawings 2006 (a nice CAD viewer from Solidworks).
 
 
<source lang="xml">
 
<source lang="xml">
<package id="edrawings" name="eDrawings" revision="2006" reboot="false" priority="0">
+
<?xml version="1.0" encoding="UTF-8"?>
   <check type="uninstall" condition="exists" path="eDrawings 2006" />
+
<packages>
 +
<package id="edrawings"
 +
  name="eDrawings"
 +
  revision="2009"
 +
  reboot="false"
 +
  priority="0">
 +
 
 +
   <check type="uninstall" condition="exists" path="SolidWorks eDrawings 2009" />
 
   
 
   
   <install cmd='msiexec /q /i "%SOFTWARE%\edrawings\eDrawings.msi" allusers=1' />
+
   <install cmd='MsiExec.exe /q /i "%SOFTWARE%\edrawings\eDrawings.msi" ALLUSERS=1 LOGPERFORMANCE=0 ADDLOCAL=eDrawingsViewer,DXFDWGTranslator,Shortcuts,eDrawingsHelp TRANSFORMS=1031.mst'>
  <remove cmd='MsiExec.exe /q /x{AB31E6F5-2020-4AEB-A0D8-A93F4519051B}' />
+
  <upgrade cmd='msiexec /q /i "%SOFTWARE%\edrawings\eDrawings.msi" allusers=1'>
+
 
   <exit code="0" />
 
   <exit code="0" />
 
   <exit code="3010" />
 
   <exit code="3010" />
 +
  </install>
 +
 +
  <!-- remove old version of this program (just to be sure) -->
 +
  <upgrade cmd='MsiExec.exe /q /x{AB31E6F5-2020-4AEB-A0D8-A93F4519051B}'>
 +
    <exit code='any'/>
 
   </upgrade>
 
   </upgrade>
 +
  <upgrade cmd='MsiExec.exe /q /x{CD23CF22-1DA2-4351-B6C4-B1A2859C68AC}'>
 +
    <exit code='any'/>
 +
  </upgrade>
 +
  <upgrade cmd='MsiExec.exe /q /i "%SOFTWARE%\edrawings\eDrawings.msi" ALLUSERS=1 LOGPERFORMANCE=0 ADDLOCAL=eDrawingsViewer,DXFDWGTranslator,Shortcuts,eDrawingsHelp TRANSFORMS=1031.mst'>
 +
  <exit code="0" />
 +
  <exit code="3010" />
 +
  </upgrade>
 +
 +
  <remove cmd='MsiExec.exe /q /x{D136B211-9054-4D67-8145-274D077E9901}' />
 +
 
</package>
 
</package>
 +
</packages>
 
</source>
 
</source>
 +
 +
MSIOptions are:
 +
* ALLUSERS=('''1'''|0) (?) Should install for all Users (leftover from previous Versions)
 +
* LOGPERFORMANCE=('''1'''|0) (Disables the Performance-logging and Mailing to SolidWorks)
 +
* ADDLOCAL= (only undocumented switches mentioned)
 +
** Shortcuts (Install Shortcuts to Desktop,Startmenu and Quicklaunch)
 +
** eDrawingsHelp (offline Helpfiles)
 +
** more ADDLOCAL-Settings can be found on [http://files.solidworks.com/Supportfiles/eDrawings_Installation_Guide/2009/English/install_eDrawings.htm the eDrawings Install Helppage]
 +
 +
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 12:41, 21 April 2009

eDrawings 2009

This is a silent installer and uninstaller for eDrawings 2009 (a nice CAD viewer from Solidworks).

<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="edrawings"
  name="eDrawings"
  revision="2009"
  reboot="false"
  priority="0">

  <check type="uninstall" condition="exists" path="SolidWorks eDrawings 2009" />
 
  <install cmd='MsiExec.exe /q /i "%SOFTWARE%\edrawings\eDrawings.msi" ALLUSERS=1 LOGPERFORMANCE=0 ADDLOCAL=eDrawingsViewer,DXFDWGTranslator,Shortcuts,eDrawingsHelp TRANSFORMS=1031.mst'>
   <exit code="0" />
   <exit code="3010" />
  </install>

  <!-- remove old version of this program (just to be sure) -->
  <upgrade cmd='MsiExec.exe /q /x{AB31E6F5-2020-4AEB-A0D8-A93F4519051B}'>
    <exit code='any'/>
  </upgrade>
  <upgrade cmd='MsiExec.exe /q /x{CD23CF22-1DA2-4351-B6C4-B1A2859C68AC}'>
    <exit code='any'/>
  </upgrade>
  <upgrade cmd='MsiExec.exe /q /i "%SOFTWARE%\edrawings\eDrawings.msi" ALLUSERS=1 LOGPERFORMANCE=0 ADDLOCAL=eDrawingsViewer,DXFDWGTranslator,Shortcuts,eDrawingsHelp TRANSFORMS=1031.mst'>
   <exit code="0" />
   <exit code="3010" />
  </upgrade>

  <remove cmd='MsiExec.exe /q /x{D136B211-9054-4D67-8145-274D077E9901}' />

</package>
</packages>

MSIOptions are:

  • ALLUSERS=(1|0) (?) Should install for all Users (leftover from previous Versions)
  • LOGPERFORMANCE=(1|0) (Disables the Performance-logging and Mailing to SolidWorks)
  • ADDLOCAL= (only undocumented switches mentioned)
    • Shortcuts (Install Shortcuts to Desktop,Startmenu and Quicklaunch)
    • eDrawingsHelp (offline Helpfiles)
    • more ADDLOCAL-Settings can be found on the eDrawings Install Helppage