PowerShell/Scripts/open-facebook-website.ps1
Markus Fleschutz a9b4f6f33f Simple rename
2021-11-18 15:36:56 +01:00

16 lines
339 B
PowerShell
Executable File

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