Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save peoplearmy/8292d2f1a23aa8e5c5bc98d66538bd02 to your computer and use it in GitHub Desktop.
Save peoplearmy/8292d2f1a23aa8e5c5bc98d66538bd02 to your computer and use it in GitHub Desktop.
Tweaks to make to VMware .vmx files
# Disables touchscreen emulation
touchscreen.vusb.present = "FALSE"
# Enables support for nested hypervisors
hypervisor.cpuid.v0 = "FALSE"
vhv.enable = "TRUE"
vpmc.enable = "TRUE"
mce.enable = "TRUE"
vhu.enable = "TRUE"
# Enables raw HID mouse pass-thru so all buttons work
mouse.vusb.enable = "TRUE"
mouse.vusb.useBasicMouse = "FALSE"
usb.generic.allowHID = "TRUE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment