- Windows 7 32b
- Powershell v2, default
- Powershell v3, upgraded manually when v2 did not work from KB2506143.
- Powershell v4, upgraded after having back v2 from KB2819745.
- IE 11.0.9600, not instaled, just what was with the OS. Protected mode turned off.
Tried the script in admin mode - this is as far as I can go securitywise, not gonna remove antivirus or stop firewall or anything else as ludacrious. Tried a lot ... nothing gives anything from the webpage. Any webpage.
$ie = New-Object -com InternetExplorer.Application
$ie.visible = $true
$ie.silent = $true
$ie.Navigate("https://www.facebook.com/login.php")
while($ie.busy){Start-Sleep 1}
$ie.Document.getElementById("email").value = "aaaaaaa"
Error: Cannot find an overload for "getElementById" and the argument count: "1". How do I get information from the page? Need to interact with the page, fill forms, click, etc.