Difference between revisions of "Word Perfect"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Word Perfect 12)
 
Line 1: Line 1:
 
===== Word Perfect 12 =====
 
===== Word Perfect 12 =====
  
  <?xml version="1.0" encoding="UTF-8"?>
+
<source lang="xml">
 +
<package id="wordperfect" name="WordPerfect" revision="1" priority="0" reboot="false">
  
  <packages:packages xmlns:packages="http://www.wpkg.org/packages"
+
<check type="uninstall" condition="exists" path="%PROGRAMFILES%\WordPerfect Office 12" />
        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 -->
+
<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" ' />
  <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>
+
  
 +
<remove cmd='%COMSPEC% /c wmic /interactive:off product where name="WordPerfect Office 12" call uninstall ' />
 +
 
 +
</package>
 +
</source>
  
 +
===== Word Perfect 11 =====
  
 
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].

Latest revision as of 15:06, 10 May 2013

Word Perfect 12
<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>
Word Perfect 11

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>