PowerShell, Procesos PowerShell echo "1288" > fichero echo "1200" >> fichero Get-Content .\fichero foreach($linea in Get-Content .\fichero) { Get-Process -Id $linea | select name } 12345678 echo "1288" > ficheroecho "1200" >> ficheroGet-Content .\fichero foreach($linea in Get-Content .\fichero){ Get-Process -Id $linea | select name}