Created
May 14, 2019 09:17
-
-
Save Dobby89/f829ce7bcff38bf138e5a100cdfeaecc to your computer and use it in GitHub Desktop.
Kill Zombie headless chrome. From https://github.com/garris/BackstopJS/blob/master/README.md#chrome-zombies
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
| Get-CimInstance Win32_Process -Filter "Name = 'chrome.exe' AND CommandLine LIKE '%--headless%'" | %{Stop-Process $_.ProcessId} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment