Changes

Jump to: navigation, search

Phase5

1,161 bytes added, 11:29, 12 January 2007
m
no edit summary
phase5 is a HTML editor.

It doesn't have a silent installer, so you need to install it on one machine first, and then, copy the files as they are. Below XML for WPKG, and batch files which install the phase5 editor:

phase5.xml:
<pre>
<?xml version="1.0" encoding="UTF-8"?>

<packages>

<package
id="phase5"
name="phase5 HTML editor"
revision="4"
priority="1">

<check type="file" condition="sizeequals" value="1397760" path="%PROGRAMFILES%\phase5\htmledit.exe" />

<install cmd='%SOFTWARE%\phase5\phase5-install.bat' />

<remove cmd='%SOFTWARE%\phase5\phase5-remove.bat' />

<upgrade cmd='%SOFTWARE%\phase5\phase5-install.bat' />

</package>

</packages>
</pre>


phase5-install.bat:
<pre>
rd "%PROGRAMFILES%\phase5" /s /q
rd "%allusersprofile%\Startmenü\phase5" /s /q

call xcopy "%SOFTWARE%\phase5\dateien\*" c:\ /S /E /Y /Q
</pre>

In "dateien", you would put "Programme\phase5" and "Documents and Settings" (Dokumente und Einstellungen).


phase5-remove.bat:
<pre>
rd "%PROGRAMFILES%\phase5" /s /q
rd "%allusersprofile%\Startmenü\phase5" /s /q
</pre>

[[Category:Silent_installers]]

Navigation menu