1 2 3 4 5 6 7 8 9 10 11 |
Get-Process | select * Get-Process | select Company foreach ($proceso in Get-Process | select Company) { $proceso.Company | Select-String "Microsoft" } foreach ($proceso in Get-Process | select Company) { $proceso.Company | Select-String "Acrobat" } |