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-07-01 18:02:07 +02:00
|
|
|
|
This PowerShell script launches the web browser with tabs of 18 dashboard websites.
|
2023-03-19 19:07:59 +01:00
|
|
|
|
.EXAMPLE
|
2023-06-22 09:45:11 +02:00
|
|
|
|
PS> ./open-dashboards.ps1
|
|
|
|
|
⏳ (1/2) Loading Data/web-dashboards.csv...
|
2023-07-01 18:02:07 +02:00
|
|
|
|
⏳ (2/2) Launching web browser with tabs: Toggl Track · Google Calendar · CNN News...
|
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
|
|
|
|
|
#>
|
|
|
|
|
|
2023-03-20 12:57:29 +01:00
|
|
|
|
try {
|
|
|
|
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
2023-06-22 09:45:11 +02:00
|
|
|
|
Write-Host "⏳ (1/2) Loading Data/web-dashboards.csv..."
|
|
|
|
|
$table = Import-CSV "$PSScriptRoot/../Data/web-dashboards.csv"
|
2023-06-09 09:38:14 +02:00
|
|
|
|
$numRows = $table.Length
|
2023-07-01 18:02:07 +02:00
|
|
|
|
Write-Host "⏳ (2/2) Launching web browser with tabs: " -noNewline
|
2023-06-09 09:38:14 +02:00
|
|
|
|
foreach($row in $table) {
|
|
|
|
|
Write-Host "$($row.NAME) · " -noNewline
|
|
|
|
|
& "$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-05-20 09:53:24 +02:00
|
|
|
|
Write-Host ""
|
2023-03-20 12:57:29 +01:00
|
|
|
|
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
2023-07-01 18:02:07 +02:00
|
|
|
|
"✅ Opened $NumRows web dashboards in $elapsed sec (Hint: use switch-tabs.ps1 to switch between browser tabs automatically)"
|
2023-03-20 12:57:29 +01:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-06-22 09:45:11 +02:00
|
|
|
|
}
|