Powershell操作IE实现网站登录 虽然curl也可以实现,但由于网站有cookies,偶尔会失败,所以研究了用Powershell控制IE模拟人操作实现网站登录认证 $url="http://web.com/login.html"$username="username"$password="password"$ie=new-object-com"InternetExplorer.ApplicationMedium"$ie.visible=$false$ie.navigate("$url"...