Created
January 6, 2018 17:56
-
-
Save PhilippeVay/d083a1e231eccc112ef20cbfa22f1a47 to your computer and use it in GitHub Desktop.
Windows: kill all processes of chrome.exe
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
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