...
Lets start with an example of install.xml:
| Code Block | ||
|---|---|---|
| ||
<installation version="1.0">
<info>
...
<rebootaction>ask</rebootaction>
...
</info>
...
<native type="izpack" name="SetupAPI.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:
...