Created
May 31, 2012 17:01
-
-
Save jpoehls/2844751 to your computer and use it in GitHub Desktop.
Kill-VisualStudio powershell function
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
function Kill-VisualStudio | |
{ | |
<# | |
.SYNOPSIS | |
Kills all running 'devenv' instances. | |
#> | |
Get-Process devenv -ErrorAction SilentlyContinue | Stop-Process | |
} | |
Set-Alias killvs Kill-VisualStudio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment