Skip to content

Instantly share code, notes, and snippets.

@swablueme
Created July 3, 2018 09:17
Show Gist options
  • Save swablueme/d6327a94cf34c3278a5ba1ca918370a3 to your computer and use it in GitHub Desktop.
Save swablueme/d6327a94cf34c3278a5ba1ca918370a3 to your computer and use it in GitHub Desktop.
.bat that kills all wacom processes and restarts it on windows
FOR %%i in (1, 1, 2) do (
FOR %%A in (
"WTabletServicePro.exe"
"Wacom_Tablet.exe"
"Wacom_TabletUser.exe"
"Wacom_TouchUser.exe"
) DO taskkill /f /im %%A
net stop "WTabletServicePro"
net start "WTabletServicePro"
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment