我想使用PowerShell从URL下载文件,而无需询问用户名和密码。
我尝试使用用户名和密码,并且文件已正确下载到路径中,但是我需要不使用用户名和密码来下载文件。
这是我到目前为止尝试过的:
$client = new-object System.Net.WebClient
$client.Credentials = New-Object System.Net.NetworkCredential("username","password")
$dToday = Get-Date -Format "yyyyMMdd"
$client.DownloadFile("url","Path and file placed")