mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-01 14:14:39 +02:00
Update open-dashboards.ps1
This commit is contained in:
parent
8e71524c0f
commit
762c7a0dd2
@ -12,20 +12,19 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
$URLs = @("https://track.toggl.com/timer", "https://news.google.com", "https://www.windy.com/de/-Wetterradar-radar",
|
||||||
|
"https://www.flightradar24.com/27.63,-6.98/3","https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780",
|
||||||
|
"https://www.foto-webcam.eu", "https://zugspitze.panomax.com", "https://livecam.salzburg-airport.com",
|
||||||
|
"https://sunnyportal.com/FixedPages/Dashboard.aspx", "https://covid19.who.int", "https://top10.netflix.com")
|
||||||
|
|
||||||
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
"⏳ Opening 10 Web dashboards in your browser..."
|
"⏳ Opening Web dashboards in your browser..."
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://track.toggl.com/timer"
|
foreach($URL in $URLs) {
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://news.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "$URL"
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.windy.com/de/-Wetterradar-radar"
|
Start-Sleep -milliseconds 100
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.flightradar24.com/27.63,-6.98/3"
|
}
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780"
|
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://radio.garden"
|
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://www.foto-webcam.eu"
|
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://sunnyportal.com/FixedPages/Dashboard.aspx"
|
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://covid19.who.int"
|
|
||||||
& "$PSScriptRoot/open-default-browser.ps1" "https://top10.netflix.com"
|
|
||||||
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
||||||
"✅ Opened 10 dashboards in $elapsed sec (use switch-tabs.ps1 to switch the tabs automatically)"
|
"✅ Opened 12 Web dashboards in $elapsed sec (use switch-tabs.ps1 to switch the tabs automatically)"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user