Difference between revisions of "Word Perfect"
From WPKG | Open Source Software Deployment and Distribution
m |
|||
Line 1: | Line 1: | ||
+ | ===== Word Perfect 12 ===== | ||
+ | |||
+ | <?xml version="1.0" encoding="UTF-8"?> | ||
+ | |||
+ | <packages:packages xmlns:packages="http://www.wpkg.org/packages" | ||
+ | xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
+ | xsi:schemaLocation="http://www.wpkg.org/packages xsd/packages.xsd"> | ||
+ | |||
+ | <!-- Definition --> | ||
+ | <package id="wordperfect" name="WordPerfect" revision="1" priority="0" reboot="false"> | ||
+ | |||
+ | <check type="uninstall" condition="exists" path="%PROGRAMFILES%\WordPerfect Office 12" /> | ||
+ | |||
+ | |||
+ | <install cmd='msiexec.exe /i "%SOFTWARE%\office\corel12\disk1\WPO12\SetupWP.msi" /q USERNAME="user" COMPANYNAME="company" SERIALNUMBER="your-license-key" AGREETOLICENSE="Yes" SHOWEULA="0" ' /> | ||
+ | |||
+ | |||
+ | <remove cmd='%COMSPEC% /c wmic /interactive:off product where name="WordPerfect Office 12" call uninstall ' /> | ||
+ | |||
+ | </package> | ||
+ | |||
+ | </packages:packages> | ||
+ | |||
+ | |||
+ | |||
This is a silent installer for Word Perfect text editor. More infos from [http://apps.corel.com/lp/wpo/ here]. | This is a silent installer for Word Perfect text editor. More infos from [http://apps.corel.com/lp/wpo/ here]. | ||
Revision as of 15:02, 10 May 2013
Word Perfect 12
<?xml version="1.0" encoding="UTF-8"?>
<packages:packages xmlns:packages="http://www.wpkg.org/packages"
xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wpkg.org/packages xsd/packages.xsd">
<package id="wordperfect" name="WordPerfect" revision="1" priority="0" reboot="false">
<check type="uninstall" condition="exists" path="%PROGRAMFILES%\WordPerfect Office 12" />
<install cmd='msiexec.exe /i "%SOFTWARE%\office\corel12\disk1\WPO12\SetupWP.msi" /q USERNAME="user" COMPANYNAME="company" SERIALNUMBER="your-license-key" AGREETOLICENSE="Yes" SHOWEULA="0" ' />
<remove cmd='%COMSPEC% /c wmic /interactive:off product where name="WordPerfect Office 12" call uninstall ' />
</package>
</packages:packages>
This is a silent installer for Word Perfect text editor. More infos from here.
<package id="wordperfect" name="WordPerfect" revision="1" priority="0" reboot="false">
<check type="uninstall" condition="exists" path="WordPerfect Office 11" />
<install cmd='%SOFTWARE%\wordperfect\setup /w /s /v"/qn" ' />
</package>