PowerShell/Scripts/open-starbucks-website.ps1
2021-11-25 14:07:34 +01:00

16 lines
351 B
PowerShell

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