mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-15 23:28:07 +02:00
Add some scripts
This commit is contained in:
15
Scripts/open-flipboard-website.ps1
Normal file
15
Scripts/open-flipboard-website.ps1
Normal 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
|
15
Scripts/open-starbucks-website.ps1
Normal file
15
Scripts/open-starbucks-website.ps1
Normal 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
|
15
Scripts/play-2048-game.ps1
Normal file
15
Scripts/play-2048-game.ps1
Normal 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
|
15
Scripts/play-tetris-game.ps1
Normal file
15
Scripts/play-tetris-game.ps1
Normal 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
|
Reference in New Issue
Block a user