使用powershell下载通过https调用生成的文件

时间:2018-02-21 09:54:25

标签: powershell powershell-v5.0 web-administration

目前我有这么短的代码。 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

1 个答案:

答案 0 :(得分:3)

使用-OutFile的{​​{1}}参数:

Invoke-WebRequest