Skip to content

Instantly share code, notes, and snippets.

@PhilippeVay
Created January 6, 2018 17:56
Show Gist options
  • Save PhilippeVay/d083a1e231eccc112ef20cbfa22f1a47 to your computer and use it in GitHub Desktop.
Save PhilippeVay/d083a1e231eccc112ef20cbfa22f1a47 to your computer and use it in GitHub Desktop.
Windows: kill all processes of chrome.exe
taskkill /F /IM chrome.exe /T
# With backstopJS using chromy thus Chrome Headless, dozens of processes
# may still run and fill memory because they didn't finish or weren't killed.
#
# This will kill all processes with this name (and their children, kind of irrelevant here)
# @source http://www.markandey.com/2010/06/windows-users-can-follow-this.html
# @source https://www.howtogeek.com/howto/windows-vista/how-do-i-kill-all-the-iexploreexe-processes-at-once/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment