PowerShell/scripts/open-dashboards.ps1

33 lines
1.3 KiB
PowerShell
Raw Normal View History

2023-10-31 12:48:22 +01:00
<#
2023-03-19 19:07:59 +01:00
.SYNOPSIS
2023-07-01 18:02:07 +02:00
Open web dashboards
2023-03-19 19:07:59 +01:00
.DESCRIPTION
2023-08-21 22:53:15 +02:00
This PowerShell script launches the Web browser with 20 tabs of popular dashboard websites.
2023-03-19 19:07:59 +01:00
.EXAMPLE
2023-06-22 09:45:11 +02:00
PS> ./open-dashboards.ps1
2023-10-15 12:27:54 +02:00
Launching Web browser with 20 tabs showing: Toggl Track, Google Calendar, Google Mail, Google Keep, Google Photos, Google News, Outlook Mail, CNN News, GitHub Explore, FlightRadar24, Earthquake Watch, Live Cyber Threat Map, Live Traffic, Netflix Top 10, YouTube Music Charts, Webcams, Peak Zugspitze, Airport Salzburg, Windy Weather Radar, Windy Weather Temperatures, (Hint: execute './switch-tabs.ps1' for automated tab switching)
2023-06-01 12:23:20 +02:00
...
2023-03-19 19:07:59 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
Write-Progress "Reading Data/popular-dashboards.csv..."
2023-10-31 11:25:11 +01:00
$table = Import-CSV "$PSScriptRoot/../data/popular-dashboards.csv"
2023-06-09 09:38:14 +02:00
$numRows = $table.Length
Write-Progress -completed " "
2023-10-15 12:27:54 +02:00
Write-Host "✅ Launching Web browser with 20 tabs showing: " -noNewline
2023-06-09 09:38:14 +02:00
foreach($row in $table) {
2023-08-21 22:53:15 +02:00
Write-Host "$($row.NAME), " -noNewline
2023-06-09 09:38:14 +02:00
& "$PSScriptRoot/open-default-browser.ps1" "$($row.URL)"
2023-06-22 09:45:11 +02:00
Start-Sleep -milliseconds 100
2023-03-30 11:27:50 +02:00
}
2023-08-21 22:53:15 +02:00
Write-Host "(Hint: execute './switch-tabs.ps1' for automated tab switching)"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}