mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
16 lines
354 B
PowerShell
16 lines
354 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Shows the OBS Studio manual
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser with the OBS Studio manual.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./show-obs-studio-manual
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-default-browser.ps1" "https://obsproject.com/wiki/"
|
|||
|
exit 0 # success
|