How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "oneibn/windows11ProN_VisualStudio"
  config.vm.box_version = "1.0.0"
end
vagrant init oneibn/windows11ProN_VisualStudio \
  --box-version 1.0.0
vagrant up

This version was created almost 2 years ago.

  • Upgraded items through Chocolatey;
  • Added Guest Utils from Oracle Virtual Box Iso;
  • Removed prĂ©-installed MS Teams;
  • To mask the previous Authentication Error at "vagrant up" command, was used a Base RDP configuration in Vagrantfile, but SSH works fine as aways.

*Has problems to authenticate in the command "vagrant up", but it is successfull at provisioning the Virtual Machine, and its possible to access through "vagrant ssh"

Vagrant.configure(2) do |config|

  config.vm.box = "oneibn/windows11ProN_VisualStudio"
  config.vm.guest = :windows
  config.vm.communicator = "winrm"
  config.winrm.username = "vagrant"
  config.winrm.password = "vagrant"
  config.vm.boot_timeout = 600
  config.vm.network :forwarded_port, guest: 3389, host: 3389
  config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
end
2 providers for this version.
  • libvirt
    unknown Hosted by Vagrant Cloud (9.64 GB)
  • virtualbox
    unknown Hosted by Vagrant Cloud (11 GB)