Skip to content

Instantly share code, notes, and snippets.

@vishmule
Last active August 19, 2020 10:54
Embed
What would you like to do?
# Author: vishmule
## These steps will install VirtualBox and Vagrant on Windows VM
# Install chocolatey package manager for Windows.
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
# Install VirtuaBox on Winodws
choco install virtualbox -y
# Install Vagrant on Windows
choco install vagrant -y
# Install Virtualbox guest plugin for Vagrant
vagrant plugin install vagrant-vbguest
# Download Wget package for Windows.
http://downloads.sourceforge.net/gnuwin32/wget-1.11.4-1-setup.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment