PowerShell/Scripts/open-youtube-website.ps1
Markus Fleschutz 62d1163e82 Simple rename
2021-11-23 11:54:22 +01:00

16 lines
343 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the YouTube website
.DESCRIPTION
This script launches the Web browser with the YouTube website.
.EXAMPLE
PS> ./open-youtube-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.youtube.com"
exit 0 # success