Add some scripts

This commit is contained in:
Markus Fleschutz 2021-10-29 13:10:37 +02:00
parent 3e923d5df2
commit dd9f3592a4
2 changed files with 30 additions and 0 deletions

15
Scripts/open-ebay.ps1 Executable file
View File

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

15
Scripts/open-microsoft-bing.ps1 Executable file
View File

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