#Getting process list
foreach($proces in get-process)
{
#Process information
$proceso=$proces.Name+”.exe”
$url=”http://elarchivo.es/proceso/”+$proceso+”.html”
((Invoke-WebRequest $url).AllElements | Where Class -eq “legend” | Select -ExpandProperty innerText)[1]
}
The post Information about process appeared first on Security.