Advertisement
Guest User

Untitled

a guest
Jun 14th, 2016
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $username = "xxxxxx";
  2. $password = "xxxxxx";
  3. $url = "www.facebook.com/login";
  4.  
  5. $ie = New-Object -com internetexplorer.application;
  6. $ie.visible = $true;
  7. $ie.navigate($url);
  8.  
  9. ($ie.document.getElementsByName("email") |select -first 1).value = $username;
  10.  
  11. Exception from HRESULT: 0x800A01B6
  12. At line:1 char:1
  13. + ($ie.document.getElementsByName("email") |select -first 1).value = $u ...
  14. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. + CategoryInfo : OperationStopped: (:) [], NotSupportedException
  16. + FullyQualifiedErrorId : System.NotSupportedException
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement