Created
July 3, 2018 09:17
-
-
Save swablueme/d6327a94cf34c3278a5ba1ca918370a3 to your computer and use it in GitHub Desktop.
.bat that kills all wacom processes and restarts it on windows
This file contains hidden or 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
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