我需要从互联网上下载一个 51gb 的 zip 文件,打开需要输入密码的网站。
我想用 PowerShell (PSVersion:5.1.18362.752) 中的一个函数来做到这一点,但我不能再进一步了。我的功能如下所示:
$securepassword = "thepassword"
function Get-Files {
$Properties = @{
URI = "https://theurl"
Credential = $securepassword
}
Invoke-WebRequest @Properties -OutFile "C:\Users\$env:USERNAME\Desktop\thefiles.zip"
}
参数 Credential 是否只能用于 Windows Credential?
非常感谢您的帮助