mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
Add some scripts
This commit is contained in:
parent
ec40505b19
commit
3e923d5df2
15
Scripts/open-baidu.ps1
Executable file
15
Scripts/open-baidu.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the Baidu website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Baidu website.
|
||||
.EXAMPLE
|
||||
PS> ./open-baidu
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.baidu.com"
|
||||
exit 0 # success
|
15
Scripts/open-instagram.ps1
Executable file
15
Scripts/open-instagram.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the Instagram website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Instagram website.
|
||||
.EXAMPLE
|
||||
PS> ./open-instagram
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.instagram.com"
|
||||
exit 0 # success
|
15
Scripts/open-yahoo.ps1
Executable file
15
Scripts/open-yahoo.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the Yahoo website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Yahoo website.
|
||||
.EXAMPLE
|
||||
PS> ./open-yahoo
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.yahoo.com"
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user