Difference between revisions of "MicroTOOL in-Step"
From WPKG | Open Source Software Deployment and Distribution
m |
m (add external link) |
||
Line 1: | Line 1: | ||
− | This is a silent installer for microTOOL in-Step 3.6 Personal Edition. | + | This is a silent installer for microTOOL in-Step 3.6 Personal Edition a project manament tool. More infos from [http://www.microtool.de/instep/en/index.asp here] |
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.<br> | 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.<br> |
Revision as of 15:58, 31 March 2011
This is a silent installer for microTOOL in-Step 3.6 Personal Edition a project manament tool. More infos from here
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>