Rename to open/close-visual-studio-app.ps1

This commit is contained in:
Markus Fleschutz
2021-11-21 12:14:18 +01:00
parent 729054f0d4
commit 5f395f6e9a
3 changed files with 13 additions and 6 deletions

View File

@ -1,28 +0,0 @@
<#
.SYNOPSIS
Launches Visual Studio
.DESCRIPTION
This script launches the Microsoft Visual Studio application.
.EXAMPLE
PS> ./open-visual-studio
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
function TryLaunching { param($Path)
if (test-path "$Path" -pathType leaf) {
start-process "$Path"
exit 0 # success
}
}
try {
TryLaunching "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\devenv.exe"
TryLaunching "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}