目前我有这么短的代码。 URL https://dosomething.do
生成.csv文件。我可以运行powershell代码,在shell中我可以看到文件的内容。但是,文件本身未下载。我想在下载后指定保存位置。我有什么选择?
$securepassword = ConvertTo-SecureString "xxx" -AsPlainText -Force
$credentials = New-Object System.Management.Automation.PSCredential("hxxx", $securepassword)
Invoke-WebRequest -Uri "https://dosomething.do" -Credential $credentials
答案 0 :(得分:3)
使用-OutFile
的{{1}}参数:
Invoke-WebRequest