Skip to content

Instantly share code, notes, and snippets.

@bradwilson
Last active February 1, 2024 15:37
Show Gist options
  • Save bradwilson/c0e4994f976e757bc7d5 to your computer and use it in GitHub Desktop.
Save bradwilson/c0e4994f976e757bc7d5 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"
@VerusLucian
Copy link

Thank you. My horizontal scroll is now working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment