1 2 3 4 |
foreach($servicio in Get-WmiObject Win32_Service | where state -eq Running) { Get-WmiObject -Class win32_process | where ProcessID -eq $servicio.ProcessId | select name,CommandLine | Format-Custom } |
1 2 3 4 |
foreach($servicio in Get-WmiObject Win32_Service | where state -eq Running) { Get-WmiObject -Class win32_process | where ProcessID -eq $servicio.ProcessId | select name,CommandLine | Format-Custom } |