How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "lupulvp/FlareVM-Win10Pro22H2"
config.vm.box_version = "1.0.0"
end
vagrant init lupulvp/FlareVM-Win10Pro22H2 \
--box-version 1.0.0
vagrant up
This version was created 4 months ago.
Flare VM installed and Windows 10 Pro 22H2
Credentials
User: User
Pass: infected
Vagrant.configure("2") do |config|
config.vm.box = "lupulvp/FlareVM-Win10Pro22H2"
config.vm.box_version = "1.0.0"
config.vm.define "FlareVM-Win10Pro22H2"
config.vm.hostname = "FlareVM-Win10Pro22H2"
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.communicator = "winrm"
config.winrm.basic_auth_only = true
config.winrm.transport = :plaintext
config.winrm.username = "User"
config.winrm.password = "infected"
config.vm.guest = :windows
config.vm.provider :virtualbox do |v, override|
#v.gui = true
v.name = "FlareVM-Win10Pro22H2"
v.customize ["modifyvm", :id, "--memory", 4096]
v.customize ["modifyvm", :id, "--cpus", 2]
# v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end
end
Note: This VM will work just not out of the box with Vagrant. To make it work with Vagrant do the following:
Note: Working our of the box can be found here https://app.vagrantup.com/lupulvp/boxes/FlareVM-Win10Enterprise22H2
Note: Windows and FlareVM manually installed and VM exported from VirtualBox.