mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-14 05:58:18 +02: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