PowerShell/Scripts/open-cdc-website.ps1
2021-11-23 07:45:50 +01:00

16 lines
373 B
PowerShell

<#
.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-default-browser.ps1" "https://www.cdc.gov/"
exit 0 # success