Difference between revisions of "EndNote"
From WPKG | Open Source Software Deployment and Distribution
Line 1: | Line 1: | ||
− | This is a silent installer and uninstaller for EndNote. | + | This is a silent installer and uninstaller for EndNote X1. |
<source lang="xml"> | <source lang="xml"> | ||
<package | <package | ||
Line 12: | Line 12: | ||
<remove cmd='MsiExec.exe /qn /x {87F7773C-EC9C-461A-AA7B-4AF8EF54DF49}' /> | <remove cmd='MsiExec.exe /qn /x {87F7773C-EC9C-461A-AA7B-4AF8EF54DF49}' /> | ||
</package> | </package> | ||
− | + | </source> | |
+ | |||
+ | This is a silent installer and uninstaller for EndNote X2. | ||
+ | <source lang="xml"> | ||
<package | <package | ||
id="endnotex2" | id="endnotex2" | ||
Line 24: | Line 27: | ||
<remove cmd='MsiExec.exe /qn /x {002B1E90-3241-4D45-8831-E89020F8E7E6}' /> | <remove cmd='MsiExec.exe /qn /x {002B1E90-3241-4D45-8831-E89020F8E7E6}' /> | ||
</package> | </package> | ||
+ | </source> | ||
+ | This is a silent installer and uninstaller for EndNote 7. | ||
− | + | <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" /> |
Revision as of 12:05, 4 February 2009
This is a silent installer and uninstaller for EndNote X1.
<package
id="endnotex1"
name="EndNote X1"
revision="1"
reboot="false"
priority="35"
>
<check type='file' condition='versiongreaterorequal' path='%ProgramFiles%\EndNote X1\EndNote.exe' value='11.0.0.2566' />
<install cmd='msiexec /qn /i %SOFTWARE%\EndnoteX1\ENX1INST.MSI' />
<remove cmd='MsiExec.exe /qn /x {87F7773C-EC9C-461A-AA7B-4AF8EF54DF49}' />
</package>
This is a silent installer and uninstaller for EndNote X2.
<package
id="endnotex2"
name="EndNote X2"
revision="1"
reboot="false"
priority="35"
>
<check type='file' condition='versiongreaterorequal' path='%ProgramFiles%\EndNote X2\EndNote.exe' value='12.0.0.3210' />
<install cmd='msiexec /qn /i %SOFTWARE%\EndnoteX2\ENX2Inst.msi' />
<remove cmd='MsiExec.exe /qn /x {002B1E90-3241-4D45-8831-E89020F8E7E6}' />
</package>
This is a silent installer and uninstaller for EndNote 7.
<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>