Add 2 scripts

This commit is contained in:
Markus Fleschutz 2021-11-18 15:25:43 +01:00
parent e92db959f7
commit 22e7873c9e
2 changed files with 30 additions and 0 deletions

View File

@ -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

View File

@ -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