PowerShell/Scripts/open-bing-website.ps1
Markus Fleschutz bf7feab3e8 Simple rename
2021-12-04 11:44:11 +01:00

16 lines
341 B
PowerShell
Executable File

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