Difference between revisions of "Sun xVM VirtualBox"
From WPKG | Open Source Software Deployment and Distribution
m (added exit code 1618 to avoid install loop) |
m (path was wrong : does the installer install on a different path silently ?) |
||
Line 14: | Line 14: | ||
<check type="uninstall" condition="exists" path="Sun xVM VirtualBox" /> | <check type="uninstall" condition="exists" path="Sun xVM VirtualBox" /> | ||
− | <check type="file" condition="sizeequals" path="%PROGRAMFILES%\Sun | + | <check type="file" condition="sizeequals" path="%PROGRAMFILES%\Sun xVM VirtualBox\VirtualBox.exe" value="3026944" /> |
<install cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'> | <install cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'> | ||
<exit code="1618" /> | <exit code="1618" /> | ||
+ | <exit code="0" /> | ||
</install> | </install> | ||
<upgrade cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'> | <upgrade cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'> | ||
<exit code="1618" /> | <exit code="1618" /> | ||
+ | <exit code="0" /> | ||
</upgrade> | </upgrade> | ||
</package> | </package> |
Revision as of 09:50, 24 February 2009
This is a silent installer for Sun xVM VirtualBox. You can get it from VirtualBox Homepage.
The user will have to manually validate the installation of new drivers (until someone find how to fix it).
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="virtualbox"
name="Virtualbox"
revision="0214"
reboot="false"
priority="10">
<check type="uninstall" condition="exists" path="Sun xVM VirtualBox" />
<check type="file" condition="sizeequals" path="%PROGRAMFILES%\Sun xVM VirtualBox\VirtualBox.exe" value="3026944" />
<install cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'>
<exit code="1618" />
<exit code="0" />
</install>
<upgrade cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'>
<exit code="1618" />
<exit code="0" />
</upgrade>
</package>
</packages>
Needed : a way to silently install the network driver that is provided by this package. Any help appreciated. As for now, it is still asked to the user to acknowledge the installation of the network device driver.