mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-15 19:21:04 +01:00
20 lines
483 B
PowerShell
20 lines
483 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Lists window titles
|
|||
|
.DESCRIPTION
|
|||
|
This PowerShell script list all main window titles and displays them in a table.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./list-window-titles
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz | License: CC0
|
|||
|
#>
|
|||
|
|
|||
|
try {
|
|||
|
Get-Process | Where-Object {$_.mainWindowTitle} | Format-Table Id,Name,mainWindowtitle -AutoSize
|
|||
|
exit 0 # success
|
|||
|
} catch {
|
|||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|||
|
exit 1
|
|||
|
}
|