Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ctkirkman/02bd93d8166a88d27f8232697cba5b7b to your computer and use it in GitHub Desktop.
Save ctkirkman/02bd93d8166a88d27f8232697cba5b7b to your computer and use it in GitHub Desktop.
$ie = New-Object -ComObject InternetExplorer.application
$ie.Navigate("http://somewebsite")
while ($ie.Busy) { Start-Sleep -Seconds 1 }
Write-Host $ie.Document.body.innerText
$ie.Quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment