Menu

WordPerfect

Juan Jose Pablos

Last modified 5 years ago Last modified on 03/01/10 03:44:52

Will install Wordperfect 11 and SP1 and SP2. The SP installations require AutoIt3 ​http://www.hiddensoft.com/autoit3/

wordperfect11.bat

:: OPTIONAL: Install Wordperfect11 and its updates

:: See ftp://ftp.corel.com/pub/documentation/manuals/WPO11NAG.pdf

:: for mor information about automatic installs

@Echo off

:: Reboot after installing everything

::todo.pl .reboot

:: For some reason these installs won't work properly when run in quiet mode... AUTOIT them...

:: Service Pack 2

:: URL|ENU|http://www.corel.com/akdlm/6763/downloads/WordPerfect/wpwin/11/sp/wp11sp2_en.msp|updates/wpo11sp/wp11sp2_enu.msp

:: URL|DEU|http://www.corel.com/akdlm/6763/downloads/WordPerfect/wpwin/11/sp/wp11sp2_de.msp|updates/wpo11sp/wp11sp2_deu.msp

:: todo.pl "msiexec /qb+ /l* %SystemDrive%\netinst\logs\wordperfect11.txt /p %Z%\updates\wpo11sp\wp11sp2_%WINLANG%.msp REBOOT=ReallySuppress"

todo.pl "AutoIt3 %Z%\scripts\enu\wp11sp2.au3"

:: For some reason these installs won't work properly when run in quiet mode... AUTOIT them...

:: Service Pack 1

:: URL|ENU|http://www.corel.com/akdlm/6763/downloads/WordPerfect/wpwin/11/sp/wp11sp2_en.msp|updates/wpo11sp/wp11sp2_enu.msp

todo.pl "AutoIt3 %Z%\scripts\enu\wpo11sp1.au3"

:: Install Wordperfect 11

todo.pl "msiexec /qn /l* %SystemDrive%\netinst\logs\wordperfect11.txt /i %Z%\packages\wordperfect11\wpo11\wpo11.msi SERIALNUMBER=***** ADDLOCAL=ALL REMOVE=DADApplicationLauncher,Paradox,TemplatesandSamples,ObjectPALTutorialFiles,OceanLifeSamples,CoinCollectionTemplate,OfficeEquipmentTemplate,HerculesWebSample,EntrustSecurityIntegration REBOOT=ReallySuppress"

:: Install isscript

:: needed for the installer according to Corel

todo.pl "msiexec /qb /l* %SystemDrive%\netinst\logs\isscript.txt /i %Z%\packages\wordperfect11\wpo11\isscript.msi"

wpo11sp1.au3 =

; AutoIt script for WP11 SP1

Opt("ExpandEnvStrings", 1)      ;0=don't expand, 1=do expand

Opt("WinTextMatchMode", 2)      ;1=complete, 2=quick

Run ( "msiexec /p  %Z%\\updates\\wpo11sp\\wp11sp1_enu.msp" )

WinWait ( "WordPerfect(R) Office 11  -  Service Pack 1" )

WinActivate ( "WordPerfect(R) Office 11  -  Service Pack 1" )

Send ( "!u" )

WinWait  ( "WordPerfect(R) Office 11" )

WinActivate ( "WordPerfect(R) Office 11" )

Send ( "!a")

WinWait ( "WordPerfect(R) Office 11", "Finish" )

WinActivate ( "WordPerfect(R) Office 11" )

Send ( "!f" )

wpo11sp2.au3 =

; AutoIt script for WP11 SP2

Opt("ExpandEnvStrings", 1)      ;0=don't expand, 1=do expand

Opt("WinTextMatchMode", 2)      ;1=complete, 2=quick

Run ( "msiexec /p  %Z%\\updates\\wpo11sp\\wp11sp2_enu.msp" )

WinWait ( "WordPerfect(R) Office 11  -  Service Pack 2" )

WinActivate ( "WordPerfect(R) Office 11  -  Service Pack 2" )

Send ( "!u" )

WinWait  ( "WordPerfect(R) Office 11" )

WinActivate ( "WordPerfect(R) Office 11" )

Send ( "!a")

WinWait ( "WordPerfect(R) Office 11", "Finish" )

WinActivate ( "WordPerfect(R) Office 11" )

Send ( "!f" )

Related

Wiki: Scripts