Quantcast
Channel: foreach | Operating systems, scripting, PowerShell and security | jesusninoc.com
Viewing all articles
Browse latest Browse all 409

Information about process

$
0
0

#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.


Viewing all articles
Browse latest Browse all 409

Trending Articles