Difference between revisions of "Sun xVM VirtualBox"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 31: Line 31:
  
 
See here [[OpenVPN]]. --[[User:Blank3|Blank3]] 09:18, 26 February 2009 (CET)
 
See here [[OpenVPN]]. --[[User:Blank3|Blank3]] 09:18, 26 February 2009 (CET)
 +
 +
To silently install a driver, it must come from a trusted source, i.e. we have to install the oracle certificate first. Details are to be found at
 +
http://www.win-lite.de/wbb/board195-windows-7/board196-win7-tools-zur-image-bearbeitung/3987-howto-programme-ohne-treibernachfrage-in-windows7-silent-installieren/
 +
 +
<source lang="xml">
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
<packages>
 +
<package id="virtualbox" name="Virtualbox" reboot="false" priority="10">
 +
  <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\Oracle\VirtualBox\VirtualBox.exe" value="4.1.8.0"/>
 +
  <install cmd="certutil.exe -f -addstore &quot;TrustedPublisher&quot; %SOFTWARE%\virtualBox\oracle.p7b"/>
 +
  <install cmd="%SOFTWARE%\virtualBox\virtualBox-4.1.8-75467-win.exe -s"/>
 +
</package>
 +
</packages>
 +
</source>
 +
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 17:06, 11 February 2012

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="3025424" />
   <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.

See here OpenVPN. --Blank3 09:18, 26 February 2009 (CET)

To silently install a driver, it must come from a trusted source, i.e. we have to install the oracle certificate first. Details are to be found at http://www.win-lite.de/wbb/board195-windows-7/board196-win7-tools-zur-image-bearbeitung/3987-howto-programme-ohne-treibernachfrage-in-windows7-silent-installieren/

<?xml version="1.0" encoding="UTF-8"?>
<packages>
 <package id="virtualbox" name="Virtualbox" reboot="false" priority="10">
  <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\Oracle\VirtualBox\VirtualBox.exe" value="4.1.8.0"/>
  <install cmd="certutil.exe -f -addstore &quot;TrustedPublisher&quot; %SOFTWARE%\virtualBox\oracle.p7b"/>
  <install cmd="%SOFTWARE%\virtualBox\virtualBox-4.1.8-75467-win.exe -s"/>
 </package>
</packages>