Skip to content

Instantly share code, notes, and snippets.

@objectcraftworks
Created July 19, 2013 16:41
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save objectcraftworks/6040583 to your computer and use it in GitHub Desktop.
Save objectcraftworks/6040583 to your computer and use it in GitHub Desktop.
Powershell script to kill IISExpress and worker processes
get-process | where { $_.name -match "WebDev" -or $_.name -match "IISExpress" } | kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment