PowerShell, Procesos PowerShell $a = Read-Host "Nombre proceso a buscar" foreach ($ap in Get-Content "F:\pcs.txt") { foreach ($i in Get-Process -ComputerName $ap) { if ($i.name -eq $a) { Write-Host $ap $i.name -foregroundcolor "green" } } } 1234567891011 $a = Read-Host "Nombre proceso a buscar"foreach ($ap in Get-Content "F:\pcs.txt"){foreach ($i in Get-Process -ComputerName $ap){if ($i.name -eq $a){Write-Host $ap $i.name -foregroundcolor "green"}}}