1 2 3 4 5 6 7 8 |
echo "notepad" > fichero echo "chrome" >> fichero Get-Content .\fichero foreach($linea in Get-Content .\fichero) { Get-Process -name $linea | select name,threads } |
1 2 3 4 5 6 7 8 |
echo "notepad" > fichero echo "chrome" >> fichero Get-Content .\fichero foreach($linea in Get-Content .\fichero) { Get-Process -name $linea | select name,threads } |