Skip to content

Instantly share code, notes, and snippets.

@mykeels
Created June 18, 2020 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mykeels/a271683f9c37a7919297d5df90db648a to your computer and use it in GitHub Desktop.
Save mykeels/a271683f9c37a7919297d5df90db648a to your computer and use it in GitHub Desktop.
Powershell script to Disable and Re-enable the "HID-compliant Touch pad" in Windows 10
function global:touchpad()
{
Disable-PnpDevice -InstanceId "HID\SYNA2393&COL02\5&10464366&0&0001" -Confirm:$false
Enable-PnpDevice -InstanceId "HID\SYNA2393&COL02\5&10464366&0&0001" -Confirm:$false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment