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...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
305,566
Downloads of v 1.8.1:
6,441
Last Update:
25 Dec 2015
Package Maintainer(s):
Software Author(s):
- Mitchell Hashimoto
- John Bender
- HashiCorp
Tags:
vagrant admin sandbox virtual machine testing VM VirtualBox VMware
Vagrant (Install)
This is not the latest version of Vagrant (Install) available.
Downloads:
305,566
Downloads of v 1.8.1:
6,441
Maintainer(s):
Software Author(s):
- Mitchell Hashimoto
- John Bender
- HashiCorp
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.
Vagrant (Install) 1.8.1
This is not the latest version of Vagrant (Install) available.
Some Checks Have Failed or Are Not Yet Complete
1 Test Pending and 1 Passing Test
To install Vagrant (Install), run the following command from the command line or from PowerShell:
To upgrade Vagrant (Install), run the following command from the command line or from PowerShell:
To uninstall Vagrant (Install), 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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download vagrant --internalize --version=1.8.1 --source=https://community.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://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade vagrant -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 vagrant -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 vagrant installed
win_chocolatey:
name: vagrant
state: present
version: 1.8.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'vagrant' do
action :install
version '1.8.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: vagrant,
Version: 1.8.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller vagrant
{
Name = 'vagrant'
Ensure = 'Present'
Version = '1.8.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'vagrant':
provider => 'chocolatey',
ensure => '1.8.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install vagrant version="1.8.1" 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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 25 Dec 2015.
Vagrant - Development environments made easy. Create and configure lightweight, reproducible, and portable development environments.
About
Vagrant is a tool for building complete development environments. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases development/production parity, and makes the "works on my machine" excuse a relic of the past.
Vagrant was started in January 2010 by Mitchell Hashimoto. For almost three years, Vagrant was a side-project for Mitchell, a project that he worked on in his free hours after his full-time job. During this time, Vagrant grew to be trusted and used by a range of individuals to entire development teams in large companies.
In November 2012, HashiCorp was formed by Mitchell to back the development of Vagrant full-time. HashiCorp builds commercial additions and provides professional support and training for Vagrant.
Vagrant remains and always will be a liberally licensed open source project. Each release of Vagrant is the work of hundreds of individuals' contributions to the open source project.
Please Note: This is an automatically updated package. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.
$packageName = 'vagrant'
$url = 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'
$packageArgs = @{
packageName = $packageName
fileType = 'msi'
url = $url
silentArgs = "/qn /norestart"
validExitCodes= @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
$ErrorActionPreference = 'Stop';
$packageName = 'vagrant'
$packageSearch = 'Vagrant'
$installerType = 'msi'
$silentArgs = "/qn /norestart"
# https://msdn.microsoft.com/en-us/library/aa376931(v=vs.85).aspx
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object { $_.DisplayName -like "$packageSearch*" } `
| ForEach-Object {
Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($_.PSChildName) $silentArgs" `
-ValidExitCodes $validExitCodes
}
Log in or click on link to see number of positives.
- vagrant_1.8.1.msi (6468cc140f6f) - ## / 55
- vagrant.1.8.1.nupkg (2663b4a6c4f0) - ## / 56
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 |
---|---|---|---|
Vagrant (Install) 2.2.15 | 2029 | Wednesday, March 31, 2021 | Approved |
Vagrant (Install) 2.2.14 | 12694 | Saturday, November 21, 2020 | Approved |
Vagrant (Install) 2.2.13 | 3672 | Saturday, November 7, 2020 | Approved |
Vagrant (Install) 2.2.12 | 40 | Saturday, November 7, 2020 | Approved |
Vagrant (Install) 2.2.11 | 258 | Friday, November 6, 2020 | Approved |
Vagrant (Install) 2.2.10 | 5812 | Tuesday, August 25, 2020 | Approved |
Vagrant (Install) 2.2.9 | 14324 | Friday, May 8, 2020 | Approved |
Vagrant (Install) 2.2.8 | 1380 | Tuesday, May 5, 2020 | Approved |
Vagrant (Install) 2.2.7 | 13254 | Thursday, January 30, 2020 | Approved |
Vagrant (Install) 2.2.6 | 12105 | Tuesday, October 15, 2019 | Approved |
Vagrant (Install) 2.2.5 | 13367 | Wednesday, June 26, 2019 | Approved |
Vagrant (Install) 2.2.4 | 13340 | Thursday, February 28, 2019 | Approved |
Vagrant (Install) 2.2.3 | 7217 | Thursday, January 10, 2019 | Approved |
Vagrant (Install) 2.2.2 | 5777 | Wednesday, November 28, 2018 | Approved |
Vagrant (Install) 2.2.1 | 2539 | Friday, November 16, 2018 | Approved |
Vagrant (Install) 2.2.0 | 5167 | Wednesday, October 17, 2018 | Approved |
Vagrant (Install) 2.1.5 | 5564 | Wednesday, September 12, 2018 | Approved |
Vagrant (Install) 2.1.4 | 3079 | Friday, August 31, 2018 | Approved |
Vagrant (Install) 2.1.3 | 576 | Thursday, August 30, 2018 | Approved |
Vagrant (Install) 2.1.2.20180731 | 4411 | Tuesday, July 31, 2018 | Approved |
Vagrant (Install) 2.1.2 | 1024 | Monday, July 30, 2018 | Approved |
Vagrant (Install) 2.1.1 | 11473 | Tuesday, May 8, 2018 | Approved |
Vagrant (Install) 2.1.0 | 1324 | Friday, May 4, 2018 | Approved |
Vagrant (Install) 2.0.4 | 3001 | Saturday, April 21, 2018 | Approved |
Vagrant (Install) 2.0.3 | 5514 | Friday, March 16, 2018 | Approved |
Vagrant (Install) 2.0.2 | 6915 | Tuesday, January 30, 2018 | Approved |
Vagrant (Install) 2.0.1 | 10871 | Friday, November 3, 2017 | Approved |
Vagrant (Install) 2.0.0 | 7481 | Thursday, September 7, 2017 | Approved |
Vagrant (Install) 1.9.8 | 2871 | Thursday, August 24, 2017 | Approved |
Vagrant (Install) 1.9.7 | 15129 | Saturday, July 8, 2017 | Approved |
Vagrant (Install) 1.9.6 | 4060 | Thursday, June 29, 2017 | Approved |
Vagrant (Install) 1.9.5 | 16464 | Tuesday, May 16, 2017 | Approved |
Vagrant (Install) 1.9.4 | 4713 | Tuesday, April 25, 2017 | Approved |
Vagrant (Install) 1.9.3 | 5372 | Wednesday, March 22, 2017 | Approved |
Vagrant (Install) 1.9.2 | 4995 | Sunday, March 5, 2017 | Approved |
Vagrant (Install) 1.9.1 | 9613 | Wednesday, December 7, 2016 | Approved |
Vagrant (Install) 1.9.0 | 1735 | Tuesday, November 29, 2016 | Approved |
Vagrant (Install) 1.8.7 | 3020 | Monday, November 7, 2016 | Approved |
Vagrant (Install) 1.8.6 | 5731 | Wednesday, September 28, 2016 | Approved |
Vagrant (Install) 1.8.5 | 6594 | Tuesday, July 19, 2016 | Approved |
Vagrant (Install) 1.8.4 | 905 | Tuesday, June 14, 2016 | Approved |
Vagrant (Install) 1.8.3 | 352 | Friday, June 10, 2016 | Approved |
Vagrant (Install) 1.8.1.20160318 | 4090 | Friday, March 18, 2016 | Approved |
Vagrant (Install) 1.8.1 | 6441 | Friday, December 25, 2015 | Approved |
Vagrant (Install) 1.7.4.20160919 | 441 | Monday, September 19, 2016 | Approved |
Vagrant (Install) 1.7.4 | 8615 | Friday, July 17, 2015 | Approved |
Vagrant (Install) 1.7.3.20160919 | 357 | Monday, September 19, 2016 | Approved |
Vagrant (Install) 1.7.3 | 989 | Sunday, July 12, 2015 | Approved |
Vagrant 1.7.2 | 7773 | Wednesday, January 7, 2015 | Approved |
Vagrant 1.7.1 | 1291 | Monday, December 15, 2014 | Approved |
Vagrant 1.7.0 | 419 | Friday, December 12, 2014 | Approved |
Vagrant 1.6.5 | 3453 | Friday, September 12, 2014 | Approved |
Vagrant 1.6.3 | 2370 | Monday, June 16, 2014 | Approved |
Vagrant 1.5.4 | 1326 | Thursday, April 24, 2014 | Approved |
Vagrant 1.5.3 | 678 | Monday, April 14, 2014 | Approved |
Vagrant 1.5.2 | 422 | Monday, April 14, 2014 | Approved |
Vagrant 1.5.1 | 962 | Monday, March 17, 2014 | Approved |
Vagrant 1.4.3 | 1206 | Monday, January 13, 2014 | Approved |
Vagrant 1.4.2 | 480 | Tuesday, January 7, 2014 | Approved |
Vagrant 1.4.1 | 656 | Friday, December 20, 2013 | Approved |
Vagrant 1.4.0 | 622 | Monday, December 9, 2013 | Approved |
Vagrant 1.3.5 | 919 | Wednesday, October 16, 2013 | Approved |
Vagrant 1.3.4 | 497 | Thursday, October 3, 2013 | Approved |
Vagrant 1.3.3 | 494 | Sunday, September 22, 2013 | Approved |
Vagrant 1.3.1 | 565 | Sunday, September 8, 2013 | Approved |
Vagrant 1.2.7 | 729 | Wednesday, July 31, 2013 | Approved |
Vagrant 1.2.4 | 499 | Thursday, July 18, 2013 | Approved |
Vagrant 1.2.2 | 786 | Wednesday, April 24, 2013 | Approved |
Vagrant 1.1.5 | 537 | Wednesday, April 3, 2013 | Approved |
Vagrant 1.1.4 | 466 | Monday, April 1, 2013 | Approved |
Vagrant 1.1.2 | 476 | Saturday, March 23, 2013 | Approved |
Vagrant 1.0.10 | 524 | Friday, February 15, 2013 | Approved |
Vagrant 0.8.0 | 721 | Friday, October 14, 2011 | Approved |
Copyright 2015 HashiCorp
This package has no dependencies.
Ground Rules:
- This discussion is only about Vagrant (Install) and the Vagrant (Install) 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 Vagrant (Install), 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.