$urls=”https://www.google.com/search?q=powershell”
$result=Invoke-WebRequest $urls
$en=$result.AllElements | ? {$_.id -eq “resultStats”}
foreach($aen in $en.innerText){
$aen
}
The post About results (Google) appeared first on Scripting.
$urls=”https://www.google.com/search?q=powershell”
$result=Invoke-WebRequest $urls
$en=$result.AllElements | ? {$_.id -eq “resultStats”}
foreach($aen in $en.innerText){
$aen
}
The post About results (Google) appeared first on Scripting.