Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 544 Bytes

File metadata and controls

24 lines (15 loc) · 544 Bytes
description Discovery

T1010: Application Window Discovery

Retrieving running application window titles:

get-process | where-object {$_.mainwindowtitle -ne ""} | Select-Object mainwindowtitle

A COM method that also includes the process path and window location coordinates:

[activator]::CreateInstance([type]::GetTypeFromCLSID("13709620-C279-11CE-A49E-444553540000")).windows()

References