我正在尝试使用 PowerShell 登录网站并下载文件。
但是我无法让 PS 正确传递凭据。
这是我的PS:
$webclient = new-object System.Net.WebClient
$webclient.Credentials = new-object System.Net.NetworkCredential("username","password","domain")
$webpage = $webclient.DownloadString("url goes here")
这是我在 IE 中访问该站点时得到的登录框: