Difference between revisions of "EndNote"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
This is a silent installer and uninstaller for EndNote.
 
This is a silent installer and uninstaller for EndNote.
 
+
<source lang="xml">
<package id="endnote7" name="Endnote 7" revision="1" priority="0" reboot="false">
+
<package id="endnote7" name="Endnote 7" revision="1" priority="0" reboot="false">
 
  <check type="uninstall" condition="exists" path="EndNote" />
 
  <check type="uninstall" condition="exists" path="EndNote" />
 
  <check type="file" condition="exists" path='%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.dot' />
 
  <check type="file" condition="exists" path='%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.dot' />
Line 15: Line 15:
 
  <remove cmd='cmd /c del "%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.wll"' />
 
  <remove cmd='cmd /c del "%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.wll"' />
 
  <upgrade cmd="" />
 
  <upgrade cmd="" />
</package>
+
</package>
 
+
</source>
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 19:13, 9 February 2008

This is a silent installer and uninstaller for EndNote.

<package id="endnote7" name="Endnote 7" revision="1" priority="0" reboot="false">
 <check type="uninstall" condition="exists" path="EndNote" />
 <check type="file" condition="exists" path='%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.dot' />
 <check type="file" condition="exists" path='%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.wordxp.wll' />
 <check type="file" condition="exists" path='%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.wll' />
 <install cmd="%SOFTWARE%\endnote\setup.exe /s" />
 <install cmd='cmd /c copy /y "%ProgramFiles%\Endnote\EN7CWYW.dot" "%ProgramFiles%\Microsoft Office\Office11\STARTUP" ' />
 <install cmd='cmd /c copy /y "%ProgramFiles%\Endnote\EN7CWYW.wordxp.wll" "%ProgramFiles%\Microsoft Office\Office11\STARTUP" ' />
 <install cmd='cmd /c copy /y "%ProgramFiles%\Endnote\EN7CWYW.wll" "%ProgramFiles%\Microsoft Office\Office11\STARTUP" ' />
 <remove cmd='"%ProgramFiles%\EndNote\Unwise.exe" "%ProgramFiles%\EndNote\INST.log"' />
 <remove cmd='cmd /c del "%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.dot"'/>
 <remove cmd='cmd /c del "%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.wordxp.wll" '/>
 <remove cmd='cmd /c del "%ProgramFiles%\Microsoft Office\Office11\STARTUP\EN7CWYW.wll"' />
 <upgrade cmd="" />
</package>