mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-16 17:51:28 +01:00
Add some scripts
This commit is contained in:
parent
3e923d5df2
commit
dd9f3592a4
15
Scripts/open-ebay.ps1
Executable file
15
Scripts/open-ebay.ps1
Executable 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
15
Scripts/open-microsoft-bing.ps1
Executable 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
|
Loading…
Reference in New Issue
Block a user