Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
651,357
Downloads of v 5.2.2:
11,720
Last Update:
25 Nov 2017
Package Maintainer(s):
Software Author(s):
- Oracle Corporation
Tags:
virtualbox virtualization virtual oracle admin foss cross-platform- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

VirtualBox
This is not the latest version of VirtualBox available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
651,357
Downloads of v 5.2.2:
11,720
Maintainer(s):
Software Author(s):
- Oracle Corporation
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
VirtualBox 5.2.2
This is not the latest version of VirtualBox available.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Unknown failure in the test environment.
To install VirtualBox, run the following command from the command line or from PowerShell:
To upgrade VirtualBox, run the following command from the command line or from PowerShell:
To uninstall VirtualBox, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download virtualbox --internalize --version=5.2.2 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade virtualbox -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade virtualbox -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure virtualbox installed
win_chocolatey:
name: virtualbox
state: present
version: 5.2.2
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'virtualbox' do
action :install
version '5.2.2'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: virtualbox,
Version: 5.2.2,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller virtualbox
{
Name = 'virtualbox'
Ensure = 'Present'
Version = '5.2.2'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'virtualbox':
provider => 'chocolatey',
ensure => '5.2.2',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install virtualbox version="5.2.2" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 25 Nov 2017.
VirtualBox is a cross-platform virtualization application. It installs on existing Intel or AMD-based computers, whether they are running Windows, Mac, Linux or Solaris operating systems. It extends the capabilities of your existing computer so that it can run multiple operating systems (inside multiple virtual machines) at the same time.
Package parameters
Installation/Upgrading
/CurrentUser
- Install for current user only/NoDesktopShortcut
- Do not create desktop shortcut/NoQuickLaunch
- Do not create quick launch icon/NoRegister
- Do not register virtualbox file extensions/NoPath
- Do not add virtualbox install directory to the PATH/NoExtensionPack
- Do not install extension pack
Uninstalling
/KeepExtensions
- Do not uninstall installed virtualbox extensions
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$packageName = 'virtualbox'
#For acpipowerbutton to work on Windows server see: http://ethertubes.com/unattended-acpi-shutdown-of-windows-server/
#sp HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system shutdownwithoutlogon 1
$shutdown_type = 'savestate' # 'acpipowerbutton', 'poweroff', 'savestate'
$pvbox = ps virtualbox -ea 0
if (!$pvbox) {
Write-Host "$packageName is not running"
return
}
Write-Host "$packageName is running, trying to gracefully shutdown any running machines"
$installLocation = Get-VirtualBoxIntallLocation
if (!$installLocation) { Write-Warning "Can not find existing installation location of $packageName"; return }
if (!(Test-Path $installLocation\VBoxManage.exe)) { Write-Warning "Existing installation of $packageName found but unable to find VBoxManage.exe"; return }
$commands = "Set-Alias vboxmanage '$installLocation\VBoxManage.exe'`n"
$commands += @'
[string[]] $runningvms = vboxmanage list runningvms 2>&1
if ($LastExitCode -ne 0) { Write-Error "Error running vboxmanage - can't get running vms" }
if ($runningvms -and ($runningvms.Length -eq 0)) { "No running machines"; return }
'Number of machines running: ' + $runningvms.Length
foreach ($vm in $runningvms) {
$vmid = $vm -split ' ' | select -Last 1
$vmname = $vm.Replace($vmid, '').Trim()
Write-Host "Shutting down the machine $vmname"
vboxmanage controlvm $vmid SHUTDOWN_TYPE 2>$null
if ($LastExitCode -ne 0) { Write-Error "Error running vboxmanage - can't power down running vm: $vmname" }
else { "Machine $vmname powered down prior to installation using 'SHUTDOWN_TYPE' method" }
}
'@ -replace 'SHUTDOWN_TYPE', $shutdown_type
$res = Start-ProcessNonElevated -Cmd $commands -UsePowershell
$res.out -join "`n" | Write-Host
if ($res.err) { "Errors during graceful shutdown`n" + ($res.err -join "`n") | Write-Warning }
## Doesn't seem to be required
#Write-Host "Killing $packageName process"
#$pvbox | kill
#https://www.virtualbox.org/manual/ch02.html#idm819
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$cert = ls Cert:\CurrentUser\TrustedPublisher -Recurse | ? { $_.Thumbprint -eq 'a88fd9bdaa06bc0f3c491ba51e231be35f8d1ad5' }
if (!$cert) {
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
Start-ChocolateyProcessAsAdmin "certutil -addstore 'TrustedPublisher' '$toolsPath\oracle.cer'"
}
$pp = Get-PackageParameters
$silentArgs = @('-s -l -msiparams REBOOT=ReallySuppress')
$silentArgs += if (!$pp.CurrentUser) { 'ALLUSERS=1' } else { 'ALLUSERS=2'; Write-Host 'Param: Installing for current user' }
$silentArgs += if ($pp.NoDesktopShortcut) { 'VBOX_INSTALLDESKTOPSHORTCUT=0'; Write-Host 'Param: No desktop shortcut' }
$silentArgs += if ($pp.NoQuickLaunch) { 'VBOX_INSTALLQUICKLAUNCHSHORTCUT=0'; Write-Host 'Param: No quick launch shortcut' }
$silentArgs += if ($pp.NoRegister) { 'VBOX_REGISTERFILEEXTENSIONS=0'; Write-Host 'Param: No registration for virtualbox file extensions' }
$packageArgs = @{
packageName = 'virtualbox'
fileType = 'EXE'
url = 'http://download.virtualbox.org/virtualbox/5.2.2/VirtualBox-5.2.2-119230-Win.exe'
url64bit = 'http://download.virtualbox.org/virtualbox/5.2.2/VirtualBox-5.2.2-119230-Win.exe'
checksum = '9bec40824cbcce0d7ac2b8051899b1b8f8405b3e192ef0a8a8cf33517c2e22fb'
checksum64 = '9bec40824cbcce0d7ac2b8051899b1b8f8405b3e192ef0a8a8cf33517c2e22fb'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = $silentArgs
validExitCodes = @(0)
softwareName = 'Oracle VM VirtualBox *'
}
Install-ChocolateyPackage @packageArgs
$packageName = $packageArgs.packageName
$installLocation = Get-VirtualBoxIntallLocation
if (!$installLocation) { Write-Warning "Can't find $packageName install location, can't install extension pack"; return }
if (!$pp.NoExtensionPack) {
Write-Host "Installing extension pack"
$url_ep = 'http://download.virtualbox.org/virtualbox/5.2.2/Oracle_VM_VirtualBox_Extension_Pack-5.2.2.vbox-extpack'
$checksum_ep = '9328548ca8cbc526232c0631cb5a17618c771b07665b362c1e3d89a2425bf799'
$file_path_ep = (Get-PackageCacheLocation) + '\' + ($url_ep -split '/' | select -Last 1)
Get-ChocolateyWebFile `
-PackageName 'virtualbox-extensionpack' `
-FileFullPath $file_path_ep `
-Url $url_ep `
-Url64bit $url_ep `
-Checksum $checksum_ep `
-Checksum64 $checksum_ep `
-ChecksumType 'sha256' `
-ChecksumType64 'sha256'
if (!(Test-Path $file_path_ep)) { Write-Warning "Can't download latest extension pack" }
else {
Set-Alias vboxmanage $installLocation\VBoxManage.exe
"y" | vboxmanage extpack install --replace $file_path_ep 2>&1
if ($LastExitCode -ne 0) { Write-Warning "Extension pack installation failed with exit code $LastExitCode" }
}
}
if (!$pp.NoPath) { Write-Host "Adding to PATH if needed"; Install-ChocolateyPath $installLocation }
Write-Host "$packageName installed to '$installLocation'"
Register-Application "$installLocation\$packageName.exe" vbox
Write-Host "$packageName registered as vbox"
$ErrorActionPreference = 'Stop'
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$pp = Get-PackageParameters
if ($pp.KeepExtensions) {
return
}
$installLocation = Get-VirtualBoxIntallLocation
if (!$installLocation) { Write-Warning "Can not find existing installation location of $packageName"; return }
$vboxManage = "$installLocation\VBoxManage.exe"
if (!(Test-Path $vboxManage)) { Write-Warning "Existing installation of $packageName found but unable to find VBoxManage.exe"; return }
$extensions = . $vboxManage list extpacks | ? { $_ -match 'Pack no' } | % { $_ -split '\:' | select -last 1 }
$extensions | % {
$extName = $_.Trim()
Write-Host "Uninstalling extension: '$extName'"
Start-ChocolateyProcessAsAdmin -ExeToRun $vboxManage -Statements 'extpack','uninstall',"`"$extName`"" -Elevate 2>&1
}
Write-Host "Cleaning up extensions before uninstalling virtualbox"
Start-ChocolateyProcessAsAdmin -ExeToRun $vboxManage -Statements 'extpack', 'cleanup' 2>&1
function Get-VirtualBoxIntallLocation() {
$vbox_msi = gp 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' VBOX_MSI_INSTALL_PATH -ea 0 | select -expand VBOX_MSI_INSTALL_PATH
if ($vbox_msi -and $vbox_msi.EndsWith('\')) { $vbox_msi = $vbox_msi -replace '.$' }
Write-Verbose 'Checking VBOX_MSI_INSTALL_PATH'
if ( $installLocation = $vbox_msi ) {
if (Test-Path $installLocation) { return $installLocation }
}
Write-Verbose 'Checking Get-AppInstallLocation'
if ( $installLocation = Get-AppInstallLocation 'virtualbox') { return $installLocation }
}
#http://stackoverflow.com/questions/40863475/starting-non-elevated-prompt-from-elevated-session
function Start-ProcessNonElevated( [string] $Cmd, [switch]$UsePowerShell ) {
$svc = gsv Schedule -ea 0
if ($svc -and $svc.Status -ne 'Running') { throw 'Start-ProcessNonElevated requires running Task Scheduler service' }
$res = @{}
$tmp_base = [System.IO.Path]::GetTempFileName()
$tmp_base = $tmp_base -replace '\.tmp$'
$tmp_name = Split-Path $tmp_base -Leaf
$task_name = "Start-ProcessNonElevated-$tmp_name"
Write-Verbose "Temporary files: $tmp_base"
if ($UsePowershell) {
@(
'$r = "{0}"' -f $tmp_base
". {{`n{0}`n}} >`"`$r.out.log`" 2>`"`$r.err.log`"" -f $Cmd
) -join "`n" | Out-String | Out-File "$tmp_base.ps1"
$cmd = "powershell -NoProfile -ExecutionPolicy Bypass -WindowStyle Hidden -NoLogo -NonInteractive -File '$tmp_base.ps1'"
}
Write-Verbose "Creating scheduled task for command:`n$cmd"
schtasks.exe /Create /RU $Env:USERNAME /TN $task_name /SC ONCE /ST 00:00 /F /TR $cmd *> "$tmp_base.schtasks.log"
schtasks.exe /run /tn $task_name *>> "$tmp_base.schtasks.log"
Write-Verbose 'Waiting for scheduled task to finish'
do {
$status = schtasks /query /tn $task_name /FO csv | ConvertFrom-Csv | select -expand Status
sleep 1
}
until ($status -eq 'Ready')
schtasks.exe /delete /F /tn $task_name *>> "$tmp_base.schtasks.log"
if ($UsePowershell) {
$res = @{
out = cat "$tmp_base.out.log" -ea 0
err = cat "$tmp_base.err.log" -ea 0
}
}
return $res
}
- virtualbox.5.2.2.nupkg (82ed76b92d4c) - ## / 58 - Log in or click on link to see number of positives
- VirtualBox-5.2.2-119230-Win.exe (9bec40824cbc) - ## / 66 - Log in or click on link to see number of positives
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
VirtualBox 6.1.0 | 0 | Wednesday, December 11, 2019 | Approved |
VirtualBox 6.0.14 | 20991 | Wednesday, October 16, 2019 | Approved |
VirtualBox 6.0.12 | 20835 | Wednesday, September 4, 2019 | Approved |
VirtualBox 6.0.10 | 21426 | Tuesday, July 16, 2019 | Approved |
VirtualBox 6.0.8 | 24669 | Tuesday, May 14, 2019 | Approved |
VirtualBox 6.0.6 | 15817 | Wednesday, April 17, 2019 | Approved |
VirtualBox 6.0.4 | 26955 | Monday, January 28, 2019 | Approved |
VirtualBox 6.0.2 | 9162 | Tuesday, January 15, 2019 | Approved |
VirtualBox 6.0.0 | 12123 | Wednesday, December 19, 2018 | Approved |
VirtualBox 5.2.34 | 73 | Wednesday, October 16, 2019 | Approved |
VirtualBox 5.2.32 | 2146 | Tuesday, July 16, 2019 | Approved |
VirtualBox 5.2.30 | 166 | Saturday, May 18, 2019 | Approved |
VirtualBox 5.2.28 | 231 | Wednesday, April 17, 2019 | Approved |
VirtualBox 5.2.26 | 2176 | Monday, January 28, 2019 | Approved |
VirtualBox 5.2.24 | 186 | Tuesday, January 15, 2019 | Approved |
VirtualBox 5.2.22 | 22691 | Friday, November 9, 2018 | Approved |
VirtualBox 5.2.20 | 13092 | Tuesday, October 16, 2018 | Approved |
VirtualBox 5.2.18 | 26580 | Wednesday, August 15, 2018 | Approved |
VirtualBox 5.2.16 | 12054 | Tuesday, July 17, 2018 | Approved |
VirtualBox 5.2.14 | 7728 | Monday, July 2, 2018 | Approved |
VirtualBox 5.2.12 | 17509 | Thursday, May 10, 2018 | Approved |
VirtualBox 5.2.10 | 7423 | Friday, April 27, 2018 | Approved |
VirtualBox 5.2.8 | 19934 | Wednesday, February 28, 2018 | Approved |
VirtualBox 5.2.6 | 16320 | Tuesday, January 16, 2018 | Approved |
VirtualBox 5.2.4 | 12324 | Wednesday, December 20, 2017 | Approved |
VirtualBox 5.2.2 | 11720 | Saturday, November 25, 2017 | Approved |
VirtualBox 5.2.0 | 13358 | Wednesday, October 18, 2017 | Approved |
VirtualBox 5.1.38 | 391 | Friday, May 11, 2018 | Approved |
VirtualBox 5.1.36 | 147 | Friday, April 27, 2018 | Approved |
VirtualBox 5.1.34 | 264 | Wednesday, February 28, 2018 | Approved |
VirtualBox 5.1.32 | 243 | Tuesday, January 16, 2018 | Approved |
VirtualBox 5.1.30 | 1151 | Monday, October 16, 2017 | Approved |
VirtualBox 5.1.26 | 41596 | Thursday, July 27, 2017 | Approved |
VirtualBox 5.1.24 | 7782 | Tuesday, July 18, 2017 | Approved |
VirtualBox 5.1.22 | 43723 | Saturday, April 29, 2017 | Approved |
VirtualBox 5.1.20 | 6089 | Tuesday, April 18, 2017 | Approved |
VirtualBox 5.1.18 | 14466 | Wednesday, March 15, 2017 | Approved |
VirtualBox 5.1.16 | 4454 | Wednesday, March 8, 2017 | Approved |
VirtualBox 5.1.14 | 15495 | Tuesday, January 17, 2017 | Approved |
VirtualBox 5.1.12 | 8081 | Wednesday, December 21, 2016 | Approved |
VirtualBox 5.1.10.20161207 | 5935 | Wednesday, December 7, 2016 | Approved |
VirtualBox 5.1.10.20161203 | 2958 | Saturday, December 3, 2016 | Approved |
VirtualBox 5.1.10 | 5098 | Tuesday, November 22, 2016 | Approved |
VirtualBox 5.1.8.20161116 | 2725 | Wednesday, November 16, 2016 | Approved |
VirtualBox 5.1.8.20161103 | 4393 | Thursday, November 3, 2016 | Approved |
VirtualBox 5.1.8 | 502 | Thursday, November 3, 2016 | Approved |
VirtualBox 5.1.4.110229 | 11341 | Monday, September 12, 2016 | Approved |
VirtualBox 5.1.4.110228 | 14633 | Wednesday, August 17, 2016 | Approved |
VirtualBox 5.1.2.108956 | 10037 | Thursday, July 21, 2016 | Approved |
VirtualBox 5.1.0.108711 | 364 | Sunday, July 17, 2016 | Approved |
VirtualBox 5.0.40 | 360 | Saturday, April 29, 2017 | Approved |
VirtualBox 5.0.38 | 258 | Tuesday, April 18, 2017 | Approved |
VirtualBox 5.0.36 | 287 | Thursday, March 16, 2017 | Approved |
VirtualBox 5.0.34 | 258 | Thursday, March 9, 2017 | Approved |
VirtualBox 5.0.32 | 350 | Saturday, January 21, 2017 | Approved |
VirtualBox 5.0.24.108355 | 3309 | Tuesday, June 28, 2016 | Approved |
VirtualBox 5.0.22.108108 | 310 | Thursday, June 16, 2016 | Approved |
VirtualBox 5.0.20.106931 | 509 | Sunday, May 8, 2016 | Approved |
VirtualBox 5.0.16.105871 | 7804 | Thursday, March 17, 2016 | Approved |
VirtualBox 5.0.14.105127 | 8705 | Wednesday, January 20, 2016 | Approved |
VirtualBox 5.0.12.104815 | 4878 | Saturday, December 19, 2015 | Approved |
VirtualBox 5.0.10.104061 | 5683 | Tuesday, November 10, 2015 | Approved |
VirtualBox 5.0.8.103449 | 3369 | Tuesday, October 20, 2015 | Approved |
VirtualBox 5.0.6.103037 | 2930 | Friday, October 2, 2015 | Approved |
VirtualBox 5.0.4.102546 | 3582 | Tuesday, September 8, 2015 | Approved |
VirtualBox 5.0.2.102096 | 4053 | Thursday, August 13, 2015 | Approved |
VirtualBox 5.0.0.101573 | 5074 | Sunday, July 12, 2015 | Approved |
VirtualBox 4.3.40 | 258 | Monday, October 30, 2017 | Approved |
VirtualBox 4.3.34 | 516 | Saturday, January 9, 2016 | Approved |
VirtualBox 4.3.28 | 6072 | Thursday, May 14, 2015 | Approved |
VirtualBox 4.3.26 | 5686 | Tuesday, March 17, 2015 | Approved |
VirtualBox 4.3.24 | 2348 | Tuesday, March 3, 2015 | Approved |
VirtualBox 4.3.22 | 2526 | Friday, February 13, 2015 | Approved |
VirtualBox 4.3.20.20141125 | 5919 | Tuesday, November 25, 2014 | Approved |
VirtualBox 4.3.20 | 849 | Saturday, November 22, 2014 | Approved |
VirtualBox 4.3.18 | 3252 | Sunday, October 12, 2014 | Approved |
VirtualBox 4.3.16 | 2635 | Wednesday, September 10, 2014 | Approved |
VirtualBox 4.3.14 | 3144 | Wednesday, July 16, 2014 | Approved |
VirtualBox 4.3.12 | 3457 | Friday, May 16, 2014 | Approved |
VirtualBox 4.3.10.20140513 | 606 | Tuesday, May 13, 2014 | Approved |
VirtualBox 4.3.10.20140327 | 2054 | Thursday, March 27, 2014 | Approved |
VirtualBox 4.3.10 | 460 | Wednesday, March 26, 2014 | Approved |
VirtualBox 4.3.8 | 1350 | Wednesday, February 26, 2014 | Approved |
VirtualBox 4.3.6 | 1965 | Friday, December 20, 2013 | Approved |
VirtualBox 4.3.4 | 807 | Saturday, November 30, 2013 | Approved |
VirtualBox 4.3.2 | 851 | Saturday, November 2, 2013 | Approved |
VirtualBox 4.3.0 | 786 | Wednesday, October 16, 2013 | Approved |
VirtualBox 4.2.36 | 187 | Monday, October 30, 2017 | Approved |
VirtualBox 4.2.18.20130916 | 860 | Tuesday, September 17, 2013 | Approved |
VirtualBox 4.2.18 | 558 | Saturday, September 7, 2013 | Approved |
VirtualBox 4.2.16 | 2166 | Friday, July 5, 2013 | Approved |
VirtualBox 4.2.14 | 598 | Saturday, June 22, 2013 | Approved |
VirtualBox 4.2.12 | 918 | Monday, April 29, 2013 | Approved |
VirtualBox 4.2.10 | 737 | Saturday, March 16, 2013 | Approved |
VirtualBox 4.2.8 | 550 | Thursday, February 28, 2013 | Approved |
VirtualBox 4.2.6.20130130 | 634 | Wednesday, January 30, 2013 | Approved |
VirtualBox 4.2.6 | 606 | Friday, December 21, 2012 | Approved |
VirtualBox 4.2.4 | 635 | Saturday, October 27, 2012 | Approved |
VirtualBox 4.2.2.20121022 | 418 | Monday, October 22, 2012 | Approved |
VirtualBox 4.2.2 | 401 | Friday, October 19, 2012 | Approved |
VirtualBox 4.2.0 | 569 | Friday, September 14, 2012 | Approved |
VirtualBox 4.1.44 | 214 | Monday, October 30, 2017 | Approved |
VirtualBox 4.1.22 | 554 | Sunday, September 9, 2012 | Approved |
VirtualBox 4.1.20 | 407 | Tuesday, August 21, 2012 | Approved |
VirtualBox 4.1.18 | 399 | Friday, June 29, 2012 | Approved |
VirtualBox 4.1.16 | 430 | Saturday, June 9, 2012 | Approved |
VirtualBox 4.1.12 | 471 | Wednesday, April 11, 2012 | Approved |
VirtualBox 4.1.8 | 424 | Friday, December 30, 2011 | Approved |
VirtualBox 4.1.6 | 388 | Friday, December 30, 2011 | Approved |
VirtualBox 4.1.4 | 440 | Thursday, October 13, 2011 | Approved |
VirtualBox 4.0.36 | 218 | Monday, October 30, 2017 | Approved |
Copyright (C) 2009-2016 Oracle Corporation
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about VirtualBox and the VirtualBox package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or VirtualBox, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.