PowerShell, Strings PowerShell (Get-Process).Path | Select-String "svchost" foreach($proceso in (Get-Process).Path) { $proceso | Select-String "svchost" } 123456 (Get-Process).Path | Select-String "svchost" foreach($proceso in (Get-Process).Path){ $proceso | Select-String "svchost"}