2025-04-27 07:49:33 -04:00

5 lines
172 B
Plaintext

while true
for each Process in GetObject ("winmgmts:{impersonationLevel=Impersonate}").ExecQuery ("select Name from Win32_Process")
WScript.Echo Process.Name
next
wend