mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
29 lines
758 B
PowerShell
29 lines
758 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Launches OBS Studio
|
|
.DESCRIPTION
|
|
This script launches the OBS Studio application.
|
|
.EXAMPLE
|
|
PS> ./open-obs-studio
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
function TryLaunching { param([string]$Path, [string]$Dir)
|
|
if (test-path "$Path" -pathType leaf) {
|
|
start-process -FilePath "$Path" -WorkingDirectory "$Dir"
|
|
exit 0 # success
|
|
}
|
|
}
|
|
|
|
try {
|
|
TryLaunching "C:\Program Files (x86)\OBS Studio\bin\64bit\obs64.exe" "C:\Program Files (x86)\OBS Studio\bin\64bit\"
|
|
TryLaunching "C:\Program Files\OBS Studio\bin\64bit\obs64.exe" "C:\Program Files\OBS Studio\bin\64bit\"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|