Skip to content

Commit

Permalink
Merge pull request #61 from StefanScherer/set-vbox-vram
Browse files Browse the repository at this point in the history
Set vbox vram and clipboard
  • Loading branch information
StefanScherer committed Dec 5, 2017
2 parents 730efff + b978093 commit 20a298f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vagrantfile-windows_10.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_2008_r2.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_2012.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_2012_r2.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_2016.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_2016_core.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_7.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down
2 changes: 2 additions & 0 deletions vagrantfile-windows_81.template
Expand Up @@ -21,6 +21,8 @@ Vagrant.configure("2") do |config|
#v.gui = true
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--vram", 128]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
end

Expand Down

0 comments on commit 20a298f

Please sign in to comment.