Remove scripts which have been moved to talk2windows

This commit is contained in:
Markus Fleschutz 2021-12-17 07:29:52 +01:00
parent e190750265
commit 22a4a7a902
168 changed files with 0 additions and 2550 deletions

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Christmas"
.DESCRIPTION
This script replies to 'Happy Christmas' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-christmas
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Merry Christmas to you too!", "Happy Christmas to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Easter"
.DESCRIPTION
This script replies to 'Happy Easter' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-easter
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Easter to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Father's day"
.DESCRIPTION
This script replies to 'Happy Father's day' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-fathers-day
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Father's day to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Halloween"
.DESCRIPTION
This script replies to 'Happy Halloween' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-halloween
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Halloween to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Hanukkah"
.DESCRIPTION
This script replies to 'Happy Hanukkah' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-hanukkah
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Hanukkah to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Holidays"
.DESCRIPTION
This script replies to 'Happy Holidays' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-holidays
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Holidays to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Kwanzaa"
.DESCRIPTION
This script replies to 'Happy Kwanzaa' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-kwanzaa
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Kwanzaa to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Mother's day"
.DESCRIPTION
This script replies to 'Happy Mother's day' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-mothers-day
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Mother's day to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy New Year"
.DESCRIPTION
This script replies to 'Happy New Year' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-new-year
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Thank you. Happy New Year to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Ramadan"
.DESCRIPTION
This script replies to 'Happy Ramadan' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-ramadan
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Ramadan to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy St.Patrick's day"
.DESCRIPTION
This script replies to 'Happy St.Patrick's day' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-saint-patricks-day
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy St.Patrick's day to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Thanksgiving"
.DESCRIPTION
This script replies to 'Happy Thanksgiving' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-thanksgiving
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Thanksgiving to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Replies to "Happy Valentine's day"
.DESCRIPTION
This script replies to 'Happy Valentine's day' by text-to-speech (TTS).
.EXAMPLE
PS> ./happy-valentines-day
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "Happy Valentine's day to you too!" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Answers to 'how are you?'
.DESCRIPTION
This script says a reply to "how are you?" by text-to-speech (TTS).
.EXAMPLE
PS> ./how-are-you
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "I'm fine, thanks. How are you?", "I'm fine, maybe a little tired. I need some more coffee.", "Great, thank you. How are you?", "Good, thanks, and you?", "Fine, thanks. How are you?" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

@ -1,17 +0,0 @@
<#
.SYNOPSIS
Answers to 'how are you?'
.DESCRIPTION
This script says a reply to "how are you?" by text-to-speech (TTS).
.EXAMPLE
PS> ./how-are-you
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "I'm fine, thanks. How are you?", "I'm fine, maybe a little tired. I need some more coffee.", "Great, thank you. How are you?", "Good, thanks, and you?", "Fine, thanks. How are you?" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Opens the CDC website
.DESCRIPTION
This script launches the Web browser with the CDC website (Centers for Disease Control and Prevention).
.EXAMPLE
PS> ./open-cdc-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.cdc.gov/"
exit 0 # success

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,15 +0,0 @@
<#
.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

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,15 +0,0 @@
<#
.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

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,15 +0,0 @@
<#
.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

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

View File

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

View File

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

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Absolute Chillout
.DESCRIPTION
This script launches the Web browser and plays radio station Absolute Chillout.
.EXAMPLE
PS> ./play-radio-absolute-chillout
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/absolutechillout"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio AFN Stuttgart
.DESCRIPTION
This script launches the Web browser and plays radio station AFN Stuttgart.
.EXAMPLE
PS> ./play-radio-afn-stuttgart
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.afneurope.net/Portals/100/360/minimalplayer2.html#AFNE_STU"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Arabella
.DESCRIPTION
This script launches the Web browser and plays radio station Arabella.
.EXAMPLE
PS> ./play-radio-arabella
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_Arabella_2"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays Radio Blue 100.7
.DESCRIPTION
This script launches the Web browser and plays radio station Blue 100.7.
.EXAMPLE
PS> ./play-radio-blue
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Blue_100.7"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station BOB!
.DESCRIPTION
This script launches the Web browser and plays radio station BOB!
.EXAMPLE
PS> ./play-radio-bob
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station CLUBMIX
.DESCRIPTION
This script launches the Web browser and plays radio station CLUBMIX.
.EXAMPLE
PS> ./play-radio-club-mix
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/m1fmclubmix"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays the radio station Costa Del Mar
.DESCRIPTION
This script launches the Web browser and plays radio station Costa Del Mar.
.EXAMPLE
PS> ./play-radio-costa-del-mar
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/costadelmar"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Dance FM
.DESCRIPTION
This script launches the Web browser and plays radio station Dance FM.
.EXAMPLE
PS> ./play-radio-dance-fm
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Dance-FM-s303095/"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station N-JOY
.DESCRIPTION
This script launches the Web browser and plays radio station N-JOY.
.EXAMPLE
PS> ./play-radio-enjoy
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/N_Joy"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station FFN
.DESCRIPTION
This script launches the Web browser and plays radio station FFN.
.EXAMPLE
PS> ./play-radio-ffn
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/ffn"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Galaxy
.DESCRIPTION
This script launches the Web browser and plays radio station Galaxy.
.EXAMPLE
PS> ./play-radio-galaxy
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_Galaxy_Rosenheim"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Gong
.DESCRIPTION
This script launches the Web browser and plays radio station Gong.
.EXAMPLE
PS> ./play-radio-gong
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_Gong"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Ibiza
.DESCRIPTION
This script launches the Web browser and plays radio station Ibiza.
.EXAMPLE
PS> ./play-radio-ibiza
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Ibiza_Global_Radio"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station JAM FM
.DESCRIPTION
This script launches the Web browser and plays the radio station JAM FM.
.EXAMPLE
PS> ./play-radio-jam-fm
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/JAM-FM-New-Music-Radio-s136277/"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Kiss Kiss
.DESCRIPTION
This script launches the Web browser and plays radio station Kiss Kiss.
.EXAMPLE
PS> ./play-radio-kiss-kiss
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/radiokisskiss"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Malibu
.DESCRIPTION
This script launches the Web browser and plays radio station Malibu.
.EXAMPLE
PS> ./play-radio-malibu
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/malibunightradio"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station Paloma
.DESCRIPTION
This script launches the Web browser and plays radio station Paloma.
.EXAMPLE
PS> ./play-radio-paloma
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Radio-Paloma-s97169/"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays Radio 7 Ulm
.DESCRIPTION
This script launches the Web browser and plays radio station 7 Ulm.
.EXAMPLE
PS> ./play-radio-seven
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_7"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Plays radio station YOU FM
.DESCRIPTION
This script launches the Web browser and plays radio station YOU FM.
.EXAMPLE
PS> ./play-radio-you-fm
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/youfm"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.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

View File

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

View File

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

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Shows Amsterdam city in Google Maps
.DESCRIPTION
This script launches the Web browser with Google Maps at Amsterdam city (Netherlands).
.EXAMPLE
PS> ./show-amsterdam-city
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Amsterdam"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Shows the Ant manual
.DESCRIPTION
This script launches the Web browser with the Apache Ant manual.
.EXAMPLE
PS> ./show-ant-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://ant.apache.org/manual/index.html"
exit 0 # success

View File

@ -1,15 +0,0 @@
<#
.SYNOPSIS
Shows the Apple manuals
.DESCRIPTION
This script launches the Web browser with the Apple online manual.
.EXAMPLE
PS> ./show-apple-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://support.apple.com/manuals"
exit 0 # success

Some files were not shown because too many files have changed in this diff Show More