1 2 3 4 5 6 7 8 9 10 |
foreach($rutas in Get-Process) { if($rutas.Path -match " ") { $rutas.Path ((Get-ChildItem $rutas.Path).VersionInfo).FileDescription ((Get-ChildItem $rutas.Path).VersionInfo).Product Start-Sleep -Seconds 1 } } |