mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-24 04:38:18 +01:00
Add 2 scripts
This commit is contained in:
parent
e92db959f7
commit
22e7873c9e
15
Scripts/open-cdc-website.ps1
Normal file
15
Scripts/open-cdc-website.ps1
Normal 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
|
15
Scripts/open-cia-website.ps1
Normal file
15
Scripts/open-cia-website.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user