PowerShell/Scripts/show-traffic.ps1

16 lines
395 B
PowerShell
Raw Normal View History

2021-12-08 11:24:36 +01:00
<#
.SYNOPSIS
Shows the current traffic
.DESCRIPTION
2022-01-30 10:49:30 +01:00
This PowerShell script launches the Web browser with MSN showing the current traffic.
2021-12-08 11:24:36 +01:00
.EXAMPLE
PS> ./show-traffic
.LINK
https://github.com/fleschutz/PowerShell
2022-01-30 10:49:30 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-12-08 11:24:36 +01:00
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.msn.com/en-us/traffic?lvl=11&intent=roadClosures"
exit 0 # success