I would like to set Windows 7 screen resolution to that of the retina screen 2560x1600 without scaling the view. If I do this, the VM just fills up more space than the screen can show, and I have to use scroll bars. If I set full screen the VM sets a resolution of 1280x800 or half of what the retina supports. I use vagrant too, so if it can be done from there (per VM) that would be a bonus. My vagrant file (incomplete):
Code: Select all
Vagrant.configure("2") do |config|
config.vm.define "win7" do |config|
config.vm.box = "win7"
config.vm.provider "virtualbox" do |v|
v.gui = true
v.customize ["setextradata", :id, "GUI/MaxGuestResolution", "any" ]
# here the magic happens!
end
end
end