From 22e7873c9e0d5f598b5435c4ad0f554a04ba3818 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 18 Nov 2021 15:25:43 +0100 Subject: [PATCH] Add 2 scripts --- Scripts/open-cdc-website.ps1 | 15 +++++++++++++++ Scripts/open-cia-website.ps1 | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 Scripts/open-cdc-website.ps1 create mode 100644 Scripts/open-cia-website.ps1 diff --git a/Scripts/open-cdc-website.ps1 b/Scripts/open-cdc-website.ps1 new file mode 100644 index 00000000..dc498129 --- /dev/null +++ b/Scripts/open-cdc-website.ps1 @@ -0,0 +1,15 @@ +<# +.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-browser.ps1" "https://www.cdc.gov/" +exit 0 # success diff --git a/Scripts/open-cia-website.ps1 b/Scripts/open-cia-website.ps1 new file mode 100644 index 00000000..2a80bf8b --- /dev/null +++ b/Scripts/open-cia-website.ps1 @@ -0,0 +1,15 @@ +<# +.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-browser.ps1" "https://www.cia.gov/" +exit 0 # success