Powershell command to retrieve the process list from a remote computer and apply some filtering.
Get-WmiObject Win32_Process -Filter "Name like '%svchost%'" -computername dave | select-Object CommandLine
[Credit]
Get-WmiObject Win32_Process -Filter "Name like '%svchost%'" -computername dave | select-Object CommandLine
[Credit]