gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 23:21:44 27 4
gpt4 key购买 nike

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

最佳答案

使用-OutFileInvoke-WebRequest参数:

Invoke-WebRequest -Uri "https://dosomething.do" -OutFile C:\some\path\to\yourfile.csv

关于powershell - 下载使用powershell通过https调用生成的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48902844/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com