2021-11-12 12:45:13 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2021-11-21 12:14:18 +01:00
|
|
|
|
Launches the Visual Studio app
|
2021-11-12 12:45:13 +01:00
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This script launches the Microsoft Visual Studio application.
|
|
|
|
|
.EXAMPLE
|
2021-11-29 10:44:26 +01:00
|
|
|
|
PS> ./open-visual-studio
|
2021-11-12 12:45:13 +01:00
|
|
|
|
.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 {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-11-12 12:45:13 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|