Difference between revisions of "MicroTOOL in-Step"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 5: | Line 5: | ||
Scheduling a reboot might be also a good idea, and will work with Windows 2000. | Scheduling a reboot might be also a good idea, and will work with Windows 2000. | ||
− | + | <source lang="xml"> | |
+ | <package | ||
id="instep" | id="instep" | ||
name="Micro Tools In-Step PE" | name="Micro Tools In-Step PE" | ||
Line 28: | Line 29: | ||
<remove cmd='C:\Programme\microTOOL\in-Step\UNWISE.EXE /S C:\Programme\microTOOL\in-Step\Install.log' /> | <remove cmd='C:\Programme\microTOOL\in-Step\UNWISE.EXE /S C:\Programme\microTOOL\in-Step\Install.log' /> | ||
− | + | </package> | |
+ | </source> | ||
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Revision as of 19:09, 19 February 2008
This is a silent installer for microTOOL in-Step 3.6 Personal Edition.
The installer is rather ugly - it starts the program right after the installation, so we kill it after some time with "taskkill". Note that "taskkill" command is only available in Windows XP.
Scheduling a reboot might be also a good idea, and will work with Windows 2000.
<package
id="instep"
name="Micro Tools In-Step PE"
revision="1"
reboot="false"
priority="0">
<check type="uninstall" condition="exists" path="microTOOL in-Step 3.6 Personal Edition" />
<install timeout="240" cmd='"%SOFTWARE%\instep\instep_pe.exe" /S' >
<exit code="0" />
<exit code="-1" />
</install>
<install cmd='ping -n 180 127.0.0.1>NIL'>
<exit code="0" />
<exit code="1" />
</install>
<install cmd='taskkill /f /im instep.exe' />
<install cmd='cacls c:\programme\microTOOL /T /E /P Benutzer:f >nul' />
<remove cmd='C:\Programme\microTOOL\in-Step\UNWISE.EXE /S C:\Programme\microTOOL\in-Step\Install.log' />
</package>