diff --git a/Scripts/open-distro-watch.ps1 b/Scripts/open-distro-watch.ps1 new file mode 100644 index 00000000..80a1709b --- /dev/null +++ b/Scripts/open-distro-watch.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the DistroWatch website +.DESCRIPTION + This script launches the Web browser with the DistroWatch website. +.EXAMPLE + PS> ./open-distro-watch +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://distrowatch.com/" +exit 0 # success diff --git a/Scripts/open-whats-app.ps1 b/Scripts/open-whats-app.ps1 new file mode 100644 index 00000000..0040316b --- /dev/null +++ b/Scripts/open-whats-app.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the WhatsApp website +.DESCRIPTION + This script launches the Web browser with the WhatsApp website. +.EXAMPLE + PS> ./open-whats-app +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.whatsapp.com/" +exit 0 # success