2023-07-29 10:34:04 +02:00
|
|
|
*open-obs-studio.ps1*
|
|
|
|
================
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
open-obs-studio.ps1
|
2021-12-09 16:19:09 +01:00
|
|
|
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2021-12-09 16:19:09 +01:00
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Launches OBS Studio
|
|
|
|
.DESCRIPTION
|
|
|
|
This script launches the OBS Studio application.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./open-obs-studio
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-09-20 17:05:11 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of open-obs-studio.ps1 as of 09/20/2023 17:04:42)*
|