Difference between revisions of "Lotus Forms Viewer"
From WPKG | Open Source Software Deployment and Distribution
(Created page with 'IBM purchased PureEdge Viewer in 2005, replacing it with [http://delivery04-bld.dhe.ibm.com/sar/CMA/LOA/00vvc/1/LotusFormsViewer-3.5.1-Fixpack2-Win32.exe Lotus Forms Viewer].…') |
(Add a note about forms.zip) |
||
Line 4: | Line 4: | ||
The installer contains several sub-installers. Use 7-Zip to manually extract "LFViewer_351_Win32_NOJVM.exe" from the installer downloaded above. | The installer contains several sub-installers. Use 7-Zip to manually extract "LFViewer_351_Win32_NOJVM.exe" from the installer downloaded above. | ||
+ | |||
+ | I've also added an install line for unzipping all of the forms to the All Users Desktop. You can remove this line and the "7zip" depends line, if this step is not needed. | ||
<source lang="xml"> | <source lang="xml"> |
Latest revision as of 17:15, 2 December 2010
IBM purchased PureEdge Viewer in 2005, replacing it with Lotus Forms Viewer. Lotus Forms Viewer is for viewing and filling out XFDL forms.
Lotus Forms Viewer v3.5.1 FixPack 2
The installer contains several sub-installers. Use 7-Zip to manually extract "LFViewer_351_Win32_NOJVM.exe" from the installer downloaded above.
I've also added an install line for unzipping all of the forms to the All Users Desktop. You can remove this line and the "7zip" depends line, if this step is not needed.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="lotusforms"
name="Lotus Forms Viewer"
revision="3.5.1"
reboot="false"
priority="1">
<check type="uninstall" condition="exists" path="IBM Lotus Forms Viewer 3.5.1" />
<depends package-id="7zip" />
<depends package-id="java" />
<install cmd='"%SOFTWARE%\lotusforms\LFViewer_351_Win32_NOJVM.exe" /s /v/qn' />
<install cmd='%COMSPEC% /c start "7-zip" /min /wait "%PROGRAMFILES%\7-zip\7z.exe" x -o"%ALLUSERSPROFILE%\Desktop\Forms" -y "%SOFTWARE%\lotusforms\forms.zip"' />
<upgrade cmd='"%SOFTWARE%\lotusforms\LFViewer_351_Win32_NOJVM.exe" /s /v/qn' />
<remove cmd='msiexec /qn /x {A0BBF7AB-2F47-47DC-BB02-4C826F2BC73C}' />
<remove cmd='%COMSPEC% /c rmdir /s /q "%ALLUSERSPROFILE%\Desktop\Forms"' />
</package>
</packages>