This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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