Difference between revisions of "MicroTOOL in-Step"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(No difference)

Revision as of 20:50, 14 July 2006

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>