Add some scripts

This commit is contained in:
Markus Fleschutz 2021-10-29 13:07:19 +02:00
parent ec40505b19
commit 3e923d5df2
3 changed files with 45 additions and 0 deletions

15
Scripts/open-baidu.ps1 Executable file
View 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
View 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
View 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