2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2023-01-18 12:47:54 +01:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Lists window titles
|
|
|
|
|
.DESCRIPTION
|
2023-08-06 21:35:36 +02:00
|
|
|
|
This PowerShell script queries all main window titles and lists them as a table.
|
2023-01-18 12:47:54 +01:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./list-window-titles.ps1
|
|
|
|
|
|
2024-05-02 12:37:57 +02:00
|
|
|
|
Id ProcessName MainWindowTitle
|
|
|
|
|
-- ----------- ---------------
|
2023-08-06 21:35:36 +02:00
|
|
|
|
11556 Spotify Spotify Free
|
|
|
|
|
...
|
2023-01-18 12:47:54 +01:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2024-05-02 12:37:57 +02:00
|
|
|
|
Get-Process | Where-Object {$_.mainWindowTitle} | Format-Table ID,ProcessName,MainWindowTitle -AutoSize
|
2023-01-18 12:47:54 +01:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|