Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

Code Block
languagehtml/xml
<installation version="1.0">
 
  <info>
    ...
    <rebootaction>ask</rebootaction>
    ...
  </info> 
   ...
  <native type="izpack" name="SetupAPI.dll">
    <os family="windows"/>
  </native>
  <native type="izpack" name="SetupAPI_64.dll">
    <os family="windows"/>
  </native>
    ...
 
  <packs>
    <pack name="Core files" required="yes">
      <description>The core files needed for this test</description>
      <singlefile
       src="plain/my_exefile_v1.exe"
       target="${INSTALL_PATH}/my_exefile.exe"
       override="true" blockable="auto"/>
    </pack>
  </packs>
 
</installation>

Explanation:

...