Add some scripts

This commit is contained in:
Markus Fleschutz
2021-11-25 14:07:34 +01:00
parent 7f59fc7008
commit 8ad047ac90
5 changed files with 67 additions and 1 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the Flipboard website
.DESCRIPTION
This script launches the Web browser with the Flipboard website.
.EXAMPLE
PS> ./open-flipboard-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://flipboard.com"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the Starbucks website
.DESCRIPTION
This script launches the Web browser with the Starbucks website.
.EXAMPLE
PS> ./open-starbucks-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.starbucks.com"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays the 2048 game
.DESCRIPTION
This script launches the Web browser with the 2048 game.
.EXAMPLE
PS> ./play-2048-game
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://2048game.com/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays the Tetris game
.DESCRIPTION
This script launches the Web browser with the Tetris game.
.EXAMPLE
PS> ./play-tetris-game
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.goodoldtetris.com/"
exit 0 # success