Last active
February 1, 2024 15:37
-
-
Save bradwilson/c0e4994f976e757bc7d5 to your computer and use it in GitHub Desktop.
Tweaks to make to VMware .vmx files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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
Thank you. My horizontal scroll is now working.