Skip to content

Instantly share code, notes, and snippets.

@jpoehls
Created May 31, 2012 17:01
Show Gist options
  • Save jpoehls/2844751 to your computer and use it in GitHub Desktop.
Save jpoehls/2844751 to your computer and use it in GitHub Desktop.
Kill-VisualStudio powershell function
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