PowerShell/Scripts/open-cdc-website.ps1

16 lines
365 B
PowerShell
Raw Normal View History

2021-11-18 15:25:43 +01:00
<#
.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