How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "oneibn/windows11ProN_VisualStudio"
end
vagrant init oneibn/windows11ProN_VisualStudio
vagrant up
This version was created 12 months ago.
*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
libvirt | ||
---|---|---|
unknown | Hosted by Vagrant Cloud (9.64 GB) |
virtualbox | ||
---|---|---|
unknown | Hosted by Vagrant Cloud (11 GB) |
This version was created 12 months ago.
Box created and starting its configurations.
*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"