PowerShell/scripts/open-dashboards.ps1

40 lines
1.2 KiB
PowerShell
Raw Normal View History

2024-10-01 13:37:53 +02: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.
.PARAMETER timeInterval
Specifies the time interval between each tab (110ms per default)
2023-03-19 19:07:59 +01:00
.EXAMPLE
2023-06-22 09:45:11 +02:00
PS> ./open-dashboards.ps1
Launching Web browser with 20 tabs showing Toggl TrackGoogle CalendarGoogle Mail, ...
NOTE: Execute './switch-tabs.ps1' to switch from tab to tab automatically.
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
#>
param([int]$timeInterval = 110) # milliseconds
try {
Write-Progress "Reading Data/popular-dashboards.csv..."
2023-10-31 11:25:11 +01:00
$table = Import-CSV "$PSScriptRoot/../data/popular-dashboards.csv"
Write-Progress -completed "Done."
Write-Host "✅ Launching Web browser with 20 tabs showing " -noNewline
$numRows = $table.Length
2023-06-09 09:38:14 +02:00
foreach($row in $table) {
Write-Host "$($row.NAME)" -noNewline
2023-06-09 09:38:14 +02:00
& "$PSScriptRoot/open-default-browser.ps1" "$($row.URL)"
Start-Sleep -milliseconds $timeInterval
2023-03-30 11:27:50 +02:00
}
Write-Host ""
Write-Host "NOTE: Execute './switch-tabs.ps1' to switch from tab to tab automatically."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}