2021-11-12 12:45:13 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2021-11-21 12:14:18 +01:00
|
|
|
|
Closes the Visual Studio app
|
2021-11-12 12:45:13 +01:00
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This script closes the Microsoft Visual Studio application gracefully.
|
|
|
|
|
.EXAMPLE
|
2021-11-29 10:44:26 +01:00
|
|
|
|
PS> ./close-visual-studio
|
2021-11-12 12:45:13 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
2021-11-15 14:12:36 +01:00
|
|
|
|
TaskKill /im devenv.exe
|
|
|
|
|
if ($lastExitCode -ne "0") {
|
2021-11-15 07:38:37 +01:00
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "Sorry, can't close Visual Studio"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
2021-11-12 12:45:13 +01:00
|
|
|
|
exit 0 # success
|