Skip to content

Instantly share code, notes, and snippets.

@KulaGGin
Created April 1, 2018 08:55
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 KulaGGin/42c37e1b6f3461ec52eb5f44333ad954 to your computer and use it in GitHub Desktop.
Save KulaGGin/42c37e1b6f3461ec52eb5f44333ad954 to your computer and use it in GitHub Desktop.
KillT.bat
taskkill /f /im TekkenGame-Win64-Shipping.exe
taskkill /f /im "TEKKEN 7.exe"
for /f "tokens=2 delims=," %%I in (
'wmic process where "name='TekkenGame-Win64-Shipping.exe'" get ExecutablePath^,Handle /format:csv ^| find /i "TekkenGame-Win64-Shipping.exe"'
) do taskkill /f /im TekkenGame-Win64-Shipping.exe
for /f "tokens=2 delims=," %%I in (
'wmic process where "name='TEKKEN 7.exe'" get ExecutablePath^,Handle /format:csv ^| find /i "TEKKEN 7.exe"'
) do taskkill /f /im "TEKKEN 7.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment