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