I want to automate a thing in IE using power shell , I have the following snippet:
$ie = new-object -com "InternetExplorer.Application";
$ie.navigate('http://urlWithAuthentication.com');
this url has http authentication, so the browser prompts for the user and password, the previous script works fine, but I would like to not interactively set the user and password.
for example:
This does not exist, looking for something similar
$ie.navigate('http://urlWithAuthentication.com','user','password');
there's nothing about authentication in the method documentation http://msdn.microsoft.com/en-us/library/aa752093%28v=vs.85%29.aspx
I've found questions similar but they were targeting when there's a login page (i.e. user/pass form), in this case I'm targeting to handle the browser's builtin user/pass promt.