mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
26 lines
630 B
PowerShell
Executable File
26 lines
630 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Lists window titles
|
|
.DESCRIPTION
|
|
This PowerShell script queries all main window titles and lists them as a table.
|
|
.EXAMPLE
|
|
PS> ./list-window-titles.ps1
|
|
|
|
Id ProcessName MainWindowTitle
|
|
-- ----------- ---------------
|
|
11556 Spotify Spotify Free
|
|
...
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
Get-Process | Where-Object {$_.mainWindowTitle} | Format-Table ID,ProcessName,MainWindowTitle -AutoSize
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|