mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-17 08:01:31 +02:00
Updated the manuals
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
The *open-dashboards.ps1* Script
|
||||
===========================
|
||||
|
||||
This PowerShell script launches the Web browser with 20 tabs of popular dashboard websites.
|
||||
This PowerShell script launches the Web browser with 24 tabs of popular dashboard websites.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
@ -15,6 +15,7 @@ Parameters
|
||||
Position? 1
|
||||
Default value 120
|
||||
Accept pipeline input? false
|
||||
Aliases
|
||||
Accept wildcard characters? false
|
||||
|
||||
[<CommonParameters>]
|
||||
@ -26,7 +27,7 @@ Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./open-dashboards.ps1
|
||||
✅ Launching Web browser with 20 tabs: Toggl Track•Google Calendar•Google Mail, ...
|
||||
✅ Launching Web browser with 24 tabs: Toggl Track•Google Calendar•Google Mail, ...
|
||||
NOTE: Execute './switch-tabs.ps1' to switch from tab to tab automatically.
|
||||
...
|
||||
|
||||
@ -45,14 +46,14 @@ Script Content
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Open 20 web dashboards
|
||||
Open Web dashboards
|
||||
.DESCRIPTION
|
||||
This PowerShell script launches the Web browser with 20 tabs of popular dashboard websites.
|
||||
This PowerShell script launches the Web browser with 24 tabs of popular dashboard websites.
|
||||
.PARAMETER timeInterval
|
||||
Specifies the time interval between each tab (110ms per default)
|
||||
.EXAMPLE
|
||||
PS> ./open-dashboards.ps1
|
||||
✅ Launching Web browser with 20 tabs: Toggl Track•Google Calendar•Google Mail, ...
|
||||
✅ Launching Web browser with 24 tabs: Toggl Track•Google Calendar•Google Mail, ...
|
||||
NOTE: Execute './switch-tabs.ps1' to switch from tab to tab automatically.
|
||||
...
|
||||
.LINK
|
||||
@ -68,7 +69,7 @@ try {
|
||||
$table = Import-CSV "$PSScriptRoot/../data/popular-dashboards.csv"
|
||||
Write-Progress -completed "Done."
|
||||
|
||||
Write-Host "✅ Launching Web browser with 20 tabs: " -noNewline
|
||||
Write-Host "✅ Launching Web browser with $($table.Count) tabs: " -noNewline
|
||||
foreach($row in $table) {
|
||||
Write-Host "$($row.NAME)•" -noNewline
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "$($row.URL)"
|
||||
@ -83,4 +84,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 01/23/2025 12:15:23)*
|
||||
*(page generated by convert-ps2md.ps1 as of 05/12/2025 22:02:57)*
|
||||
|
Reference in New Issue
Block a user