Skip to content

Instantly share code, notes, and snippets.

@tnhung2011
Created August 29, 2022 01:05
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 tnhung2011/aac6f762e55e9b8e6274092ce60baf25 to your computer and use it in GitHub Desktop.
Save tnhung2011/aac6f762e55e9b8e6274092ce60baf25 to your computer and use it in GitHub Desktop.
A simple batch script to terminate background tasks
@echo off
set args=%*
if [%args%] EQU [] (
tasklist
set /p args=Taskname to kill:^
)
taskkill /f /im %args%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment