Skip to content

Instantly share code, notes, and snippets.

@joequery
Created June 30, 2014 01:51
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 joequery/4fefd5f4311b58023f3e to your computer and use it in GitHub Desktop.
Save joequery/4fefd5f4311b58023f3e to your computer and use it in GitHub Desktop.
Windows 8 batch file to toggle touch screen functionality
set "touchscreenid=YOUR_TOUCHSCREEN_HARDWARE_ID_HERE"
devcon status "%touchscreenid%" | findstr "running"
if %errorlevel% == 0 (
devcon disable "%touchscreenid%"
) else (
devcon enable "%touchscreenid%"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment