How to search for Services on a network started by a user

Local PC

cmd.exe /c echo . | powershell.exe -ExecutionPolicy Bypass -command “Get-WmiObject win32_service |Where {$_.startname -like ‘*admin*’}”

Remote PC

cmd.exe /c echo . | powershell.exe -ExecutionPolicy Bypass -command “Get-WmiObject win32_service -ComputerName SERVER1|Where {$_.startname -like ‘*admin*’}”

(No Ratings Yet)