With this plugin, you can connect to windows VM by remote desktop connection.
$ vagrant plugin install vagrant-rdp
Add the following to your Vagrantfile of Windows guest
config.vm.network :forwarded_port, guest: 3389, host: 33389, auto_correct: true
Now you can connect to windows guest by following command
$ vagrant rdp
And you can configure desktop width and height
config.rdp.width = 1440 # default: 1024
config.rdp.height = 900 # default: 768
- Fork it ( https://github.com//vagrant-rdp/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request