How to connect secure web page with Powershell?

Sunday, May 31st, 2009 Posted in Windows Powershell | 4 Comments »

You can connect to secure web pages with powershell using your username and password. $url = "http://secure.yusufozturk.info/secured_page.aspx" $username = "ysfozy" $pass = "my_password" $domain = "DOMAIN" $webclient = new-object System.Net.WebClient $webclient.Credentials = new-object System.Net.NetworkCredential($username, $pass, $domain) $webpage ... Read more..