Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,809,599

Downloads of v 4.3.20.20141125:

6,111

Last Update:

25 Nov 2014

Package Maintainer(s):

Software Author(s):

  • Oracle

Tags:

virtualbox virtualization

VirtualBox

This is not the latest version of VirtualBox available.

  • 1
  • 2
  • 3

4.3.20.20141125 | Updated: 25 Nov 2014

Downloads:

1,809,599

Downloads of v 4.3.20.20141125:

6,111

Maintainer(s):

Software Author(s):

  • Oracle

VirtualBox 4.3.20.20141125

This is not the latest version of VirtualBox available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Oracle. The inclusion of Oracle trademark(s), if any, upon this webpage is solely to identify Oracle goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Unknown


Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade virtualbox -y --source="'INTERNAL REPO URL'" --version="'4.3.20.20141125'" [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="'INTERNAL REPO URL'" --version="'4.3.20.20141125'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install virtualbox
  win_chocolatey:
    name: virtualbox
    version: '4.3.20.20141125'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'virtualbox' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '4.3.20.20141125'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller virtualbox
{
    Name     = "virtualbox"
    Version  = "4.3.20.20141125"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'virtualbox':
  ensure   => '4.3.20.20141125',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator mwrock on 25 Nov 2014.

Description

VirtualBox is a general-purpose full virtualizer for x86 hardware, targeted at server, desktop and embedded use.


tools\chocolateyInstall.ps1
$packageName = 'virtualbox'
$tools="$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Start-ChocolateyProcessAsAdmin "certutil -addstore 'TrustedPublisher' '$tools\oracle.cer'"
Install-ChocolateyPackage $packageName 'exe' '-s -l -msiparams REBOOT=ReallySuppress' 'http://dlc-cdn.sun.com/virtualbox/4.3.20/VirtualBox-4.3.20-96997-Win.exe'


$is64bit = (Get-WmiObject Win32_Processor).AddressWidth -eq 64
$programFiles = $env:programfiles
if ($is64bit) {$programFiles = ${env:ProgramFiles(x86)}}
$fsObject = New-Object -ComObject Scripting.FileSystemObject
$programFiles = $fsObject.GetFolder("$programFiles").ShortPath

Install-ChocolateyPath $(join-path $programFiles 'Oracle\VirtualBox')

tools\oracle.cer
 

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.

Add to Builder Version Downloads Last Updated Status
VirtualBox 7.0.18 27172 Friday, May 3, 2024 Approved
VirtualBox 7.0.16 10937 Wednesday, April 17, 2024 Approved
VirtualBox 7.0.14 36144 Tuesday, January 16, 2024 Approved
VirtualBox 7.0.12 33103 Tuesday, October 17, 2023 Approved
VirtualBox 7.0.10 38343 Tuesday, July 18, 2023 Approved
VirtualBox 7.0.8 65030 Tuesday, April 18, 2023 Approved
VirtualBox 7.0.6.20230201 159956 Wednesday, February 1, 2023 Approved
VirtualBox 7.0.6 14704 Tuesday, January 17, 2023 Approved
VirtualBox 7.0.4 41924 Friday, November 18, 2022 Approved
VirtualBox 7.0.2 24568 Friday, October 21, 2022 Approved
VirtualBox 7.0.0 14433 Tuesday, October 11, 2022 Approved
VirtualBox 6.1.50 212 Tuesday, January 16, 2024 Approved
VirtualBox 6.1.48 178 Tuesday, October 17, 2023 Approved
VirtualBox 6.1.46 186 Tuesday, July 18, 2023 Approved
VirtualBox 6.1.44 140 Tuesday, April 18, 2023 Approved
VirtualBox 6.1.42 6868 Tuesday, January 17, 2023 Approved
VirtualBox 6.1.40 10711 Wednesday, October 12, 2022 Approved
VirtualBox 6.1.38 28145 Friday, September 2, 2022 Approved
VirtualBox 6.1.36 28597 Wednesday, July 20, 2022 Approved
VirtualBox 6.1.34 76493 Wednesday, April 20, 2022 Approved
VirtualBox 6.1.32 55021 Tuesday, January 18, 2022 Approved
VirtualBox 6.1.30 37650 Tuesday, November 23, 2021 Approved
VirtualBox 6.1.28 24247 Tuesday, October 19, 2021 Approved
VirtualBox 6.1.26 41256 Thursday, July 29, 2021 Approved
VirtualBox 6.1.24 9965 Tuesday, July 20, 2021 Approved
VirtualBox 6.1.22 33521 Thursday, April 29, 2021 Approved
VirtualBox 6.1.20 10380 Tuesday, April 20, 2021 Approved
VirtualBox 6.1.18 36840 Wednesday, January 20, 2021 Approved
VirtualBox 6.1.16 35756 Tuesday, October 20, 2020 Approved
VirtualBox 6.1.14 23013 Saturday, September 5, 2020 Approved
VirtualBox 6.1.12 22735 Tuesday, July 14, 2020 Approved
VirtualBox 6.1.10 19620 Friday, June 5, 2020 Approved
VirtualBox 6.1.8 15213 Friday, May 15, 2020 Approved
VirtualBox 6.1.6 17660 Wednesday, April 15, 2020 Approved
VirtualBox 6.1.4 24235 Thursday, February 20, 2020 Approved
VirtualBox 6.1.2.20200116 18520 Thursday, January 16, 2020 Approved
VirtualBox 6.1.2 3382 Wednesday, January 15, 2020 Approved
VirtualBox 6.1.0 17056 Wednesday, December 11, 2019 Approved
VirtualBox 6.0.24 695 Tuesday, July 14, 2020 Approved
VirtualBox 6.0.22 291 Friday, May 15, 2020 Approved
VirtualBox 6.0.20 330 Tuesday, April 14, 2020 Approved
VirtualBox 6.0.18 285 Friday, February 21, 2020 Approved
VirtualBox 6.0.16 1205 Wednesday, January 15, 2020 Approved
VirtualBox 6.0.14 26492 Wednesday, October 16, 2019 Approved
VirtualBox 6.0.12 21286 Wednesday, September 4, 2019 Approved
VirtualBox 6.0.10 21955 Tuesday, July 16, 2019 Approved
VirtualBox 6.0.8 25061 Tuesday, May 14, 2019 Approved
VirtualBox 6.0.6 16562 Wednesday, April 17, 2019 Approved
VirtualBox 6.0.4 27501 Monday, January 28, 2019 Approved
VirtualBox 6.0.2 9482 Tuesday, January 15, 2019 Approved
VirtualBox 6.0.0 12960 Wednesday, December 19, 2018 Approved
VirtualBox 5.2.44 4066 Wednesday, July 15, 2020 Approved
VirtualBox 5.2.42 403 Friday, May 15, 2020 Approved
VirtualBox 5.2.40 382 Tuesday, April 14, 2020 Approved
VirtualBox 5.2.38 485 Friday, February 21, 2020 Approved
VirtualBox 5.2.36 266 Wednesday, January 15, 2020 Approved
VirtualBox 5.2.34 475 Wednesday, October 16, 2019 Approved
VirtualBox 5.2.32 2611 Tuesday, July 16, 2019 Approved
VirtualBox 5.2.30 588 Saturday, May 18, 2019 Approved
VirtualBox 5.2.28 559 Wednesday, April 17, 2019 Approved
VirtualBox 5.2.26 2835 Monday, January 28, 2019 Approved
VirtualBox 5.2.24 487 Tuesday, January 15, 2019 Approved
VirtualBox 5.2.22 23055 Friday, November 9, 2018 Approved
VirtualBox 5.2.20 13393 Tuesday, October 16, 2018 Approved
VirtualBox 5.2.18 26857 Wednesday, August 15, 2018 Approved
VirtualBox 5.2.16 12307 Tuesday, July 17, 2018 Approved
VirtualBox 5.2.14 7982 Monday, July 2, 2018 Approved
VirtualBox 5.2.12 17856 Thursday, May 10, 2018 Approved
VirtualBox 5.2.10 7648 Friday, April 27, 2018 Approved
VirtualBox 5.2.8 20222 Wednesday, February 28, 2018 Approved
VirtualBox 5.2.6 16724 Tuesday, January 16, 2018 Approved
VirtualBox 5.2.4 12739 Wednesday, December 20, 2017 Approved
VirtualBox 5.2.2 11956 Saturday, November 25, 2017 Approved
VirtualBox 5.2.0 13754 Wednesday, October 18, 2017 Approved
VirtualBox 5.1.38 767 Friday, May 11, 2018 Approved
VirtualBox 5.1.36 354 Friday, April 27, 2018 Approved
VirtualBox 5.1.34 506 Wednesday, February 28, 2018 Approved
VirtualBox 5.1.32 467 Tuesday, January 16, 2018 Approved
VirtualBox 5.1.30 1407 Monday, October 16, 2017 Approved
VirtualBox 5.1.26 41895 Thursday, July 27, 2017 Approved
VirtualBox 5.1.24 8002 Tuesday, July 18, 2017 Approved
VirtualBox 5.1.22 43920 Saturday, April 29, 2017 Approved
VirtualBox 5.1.20 6330 Tuesday, April 18, 2017 Approved
VirtualBox 5.1.18 14695 Wednesday, March 15, 2017 Approved
VirtualBox 5.1.16 4690 Wednesday, March 8, 2017 Approved
VirtualBox 5.1.14 15741 Tuesday, January 17, 2017 Approved
VirtualBox 5.1.12 8318 Wednesday, December 21, 2016 Approved
VirtualBox 5.1.10.20161207 6141 Wednesday, December 7, 2016 Approved
VirtualBox 5.1.10.20161203 3171 Saturday, December 3, 2016 Approved
VirtualBox 5.1.10 5360 Tuesday, November 22, 2016 Approved
VirtualBox 5.1.8.20161116 2975 Wednesday, November 16, 2016 Approved
VirtualBox 5.1.8.20161103 4621 Thursday, November 3, 2016 Approved
VirtualBox 5.1.8 714 Thursday, November 3, 2016 Approved
VirtualBox 5.1.4.110229 11517 Monday, September 12, 2016 Approved
VirtualBox 5.1.4.110228 14844 Wednesday, August 17, 2016 Approved
VirtualBox 5.1.2.108956 10237 Thursday, July 21, 2016 Approved
VirtualBox 5.1.0.108711 554 Sunday, July 17, 2016 Approved
VirtualBox 5.0.40 589 Saturday, April 29, 2017 Approved
VirtualBox 5.0.38 463 Tuesday, April 18, 2017 Approved
VirtualBox 5.0.36 539 Thursday, March 16, 2017 Approved
VirtualBox 5.0.34 494 Thursday, March 9, 2017 Approved
VirtualBox 5.0.32 563 Saturday, January 21, 2017 Approved
VirtualBox 5.0.24.108355 3495 Tuesday, June 28, 2016 Approved
VirtualBox 5.0.22.108108 501 Thursday, June 16, 2016 Approved
VirtualBox 5.0.20.106931 736 Sunday, May 8, 2016 Approved
VirtualBox 5.0.16.105871 8017 Thursday, March 17, 2016 Approved
VirtualBox 5.0.14.105127 8894 Wednesday, January 20, 2016 Approved
VirtualBox 5.0.12.104815 5069 Saturday, December 19, 2015 Approved
VirtualBox 5.0.10.104061 5908 Tuesday, November 10, 2015 Approved
VirtualBox 5.0.8.103449 3546 Tuesday, October 20, 2015 Approved
VirtualBox 5.0.6.103037 3099 Friday, October 2, 2015 Approved
VirtualBox 5.0.4.102546 3776 Tuesday, September 8, 2015 Approved
VirtualBox 5.0.2.102096 4266 Thursday, August 13, 2015 Approved
VirtualBox 5.0.0.101573 5264 Sunday, July 12, 2015 Approved
VirtualBox 4.3.40 500 Monday, October 30, 2017 Approved
VirtualBox 4.3.34 722 Saturday, January 9, 2016 Approved
VirtualBox 4.3.28 6301 Thursday, May 14, 2015 Approved
VirtualBox 4.3.26 5954 Tuesday, March 17, 2015 Approved
VirtualBox 4.3.24 2537 Tuesday, March 3, 2015 Approved
VirtualBox 4.3.22 2721 Friday, February 13, 2015 Approved
VirtualBox 4.3.20.20141125 6111 Tuesday, November 25, 2014 Approved
VirtualBox 4.3.20 1040 Saturday, November 22, 2014 Approved
VirtualBox 4.3.18 3453 Sunday, October 12, 2014 Approved
VirtualBox 4.3.16 2812 Wednesday, September 10, 2014 Approved
VirtualBox 4.3.14 3344 Wednesday, July 16, 2014 Approved
VirtualBox 4.3.12 3669 Friday, May 16, 2014 Approved
VirtualBox 4.3.10.20140513 783 Tuesday, May 13, 2014 Approved
VirtualBox 4.3.10.20140327 2239 Thursday, March 27, 2014 Approved
VirtualBox 4.3.10 681 Wednesday, March 26, 2014 Approved
VirtualBox 4.3.8 1546 Wednesday, February 26, 2014 Approved
VirtualBox 4.3.6 2165 Friday, December 20, 2013 Approved
VirtualBox 4.3.4 997 Saturday, November 30, 2013 Approved
VirtualBox 4.3.2 1043 Saturday, November 2, 2013 Approved
VirtualBox 4.3.0 994 Wednesday, October 16, 2013 Approved
VirtualBox 4.2.36 419 Monday, October 30, 2017 Approved
VirtualBox 4.2.18.20130916 1050 Tuesday, September 17, 2013 Approved
VirtualBox 4.2.18 724 Saturday, September 7, 2013 Approved
VirtualBox 4.2.16 2397 Friday, July 5, 2013 Approved
VirtualBox 4.2.14 792 Saturday, June 22, 2013 Approved
VirtualBox 4.2.12 1128 Monday, April 29, 2013 Approved
VirtualBox 4.2.10 931 Saturday, March 16, 2013 Approved
VirtualBox 4.2.8 743 Thursday, February 28, 2013 Approved
VirtualBox 4.2.6.20130130 816 Wednesday, January 30, 2013 Approved
VirtualBox 4.2.6 813 Friday, December 21, 2012 Approved
VirtualBox 4.2.4 833 Saturday, October 27, 2012 Approved
VirtualBox 4.2.2.20121022 611 Monday, October 22, 2012 Approved
VirtualBox 4.2.2 577 Friday, October 19, 2012 Approved
VirtualBox 4.2.0 792 Friday, September 14, 2012 Approved
VirtualBox 4.1.44 422 Monday, October 30, 2017 Approved
VirtualBox 4.1.22 746 Sunday, September 9, 2012 Approved
VirtualBox 4.1.20 611 Tuesday, August 21, 2012 Approved
VirtualBox 4.1.18 580 Friday, June 29, 2012 Approved
VirtualBox 4.1.16 654 Saturday, June 9, 2012 Approved
VirtualBox 4.1.12 637 Wednesday, April 11, 2012 Approved
VirtualBox 4.1.8 631 Friday, December 30, 2011 Approved
VirtualBox 4.1.6 604 Friday, December 30, 2011 Approved
VirtualBox 4.1.4 628 Thursday, October 13, 2011 Approved
VirtualBox 4.0.36 450 Monday, October 30, 2017 Approved

This package has no dependencies.

Discussion for the VirtualBox Package

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.
comments powered by Disqus