PowerShell/Scripts/open-youtube.ps1
2021-10-25 10:15:01 +02:00

21 lines
440 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens YouTube
.DESCRIPTION
This script starts the Web browser and opens YouTube.com.
.EXAMPLE
PS> ./open-youtube
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
& "$PSScriptRoot/open-browser.ps1" "https://www.youtube.com"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}