Add open-nbc-website.ps1

This commit is contained in:
Markus Fleschutz 2021-11-18 15:21:33 +01:00
parent c4d9d6d29b
commit e92db959f7
3 changed files with 17 additions and 2 deletions

View File

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

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script launches the Web browser with the Twitter website.
.EXAMPLE
PS> ./open-twitter
PS> ./open-twitter-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script launches the Web browser with the White House website.
.EXAMPLE
PS> ./open-white-house
PS> ./open-white-house-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK