mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
16 lines
351 B
PowerShell
16 lines
351 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Opens Cloudflare's Speed Test
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser with Cloudflare's speed test website.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./open-speed-test
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-browser.ps1" "https://speed.cloudflare.com"
|
|||
|
exit 0 # success
|