mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-23 13:11:39 +01:00
Add several scripts
This commit is contained in:
parent
dd9f3592a4
commit
abb40a9566
15
Scripts/open-google-books.ps1
Executable file
15
Scripts/open-google-books.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens Google Books
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the Google Books website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-google-books
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://books.google.com"
|
||||||
|
exit 0 # success
|
15
Scripts/open-google-docs.ps1
Executable file
15
Scripts/open-google-docs.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens Google Docs
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the Google Docs website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-google-docs
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://docs.google.com"
|
||||||
|
exit 0 # success
|
15
Scripts/open-google-photos.ps1
Executable file
15
Scripts/open-google-photos.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens Google Photos
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the Google Photos website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-google-photos
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://photos.google.com"
|
||||||
|
exit 0 # success
|
15
Scripts/open-google-stadia.ps1
Executable file
15
Scripts/open-google-stadia.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens Google Stadia
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the Google Stadia website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-google-stadia
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://stadia.google.com"
|
||||||
|
exit 0 # success
|
15
Scripts/open-stack-overflow.ps1
Executable file
15
Scripts/open-stack-overflow.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens the Stack Overflow website
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the Stack Overflow website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-stack-overflow
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://stackoverflow.com"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user