PowerShell/Scripts/close-visual-studio.ps1
2021-11-12 12:45:13 +01:00

16 lines
300 B
PowerShell

<#
.SYNOPSIS
Closes Visual Studio
.DESCRIPTION
This script closes the Microsoft Visual Studio application gracefully.
.EXAMPLE
PS> ./close-visual-studio
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
taskkill /im devenv.exe
exit 0 # success