Difference between revisions of "Sun xVM VirtualBox"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Needed : a way to silently install the network driver that is provided by this package. Any help appreciated.)
m (added exit code 1618 to avoid install loop)
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\ xVM VirtualBox\VirtualBox.exe" value="3026944" />
+
     <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'>
   <upgrade cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart' />  
+
<exit code="1618" />
 +
  </install>   
 +
   <upgrade cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'>
 +
  <exit code="1618" />
 +
  </upgrade> 
 
   </package>
 
   </package>
 
  </packages>
 
  </packages>

Revision as of 09:24, 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" />
   </install>   
   <upgrade cmd='msiexec /i "%SOFTWARE%\virtualbox\VirtualBox-2.1.4-42893-Win_x86.msi" /qn /norestart'> 
   		<exit code="1618" />
   </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.