我想从以下网站下载2个文件:example.com/somefile.jpg和example.com/somefile.bat。
在bat可执行脚本中使用PowerShell运行这两个文件。
如果有人可以通过显示代码示例来提供帮助,那就太好了。
答案 0 :(得分:0)
回答部分问题:
使用 Invoke-WebRequest ,您可以为其提供网址并使用参数 -OutFile 将其发送到您计算机本地的某个位置,例如:
$url = example.com/somefile.jpg
Invoke-WebRequest $url -OutFile C:\output\somefile.jpg
这将从example.com下载somefile.jpg并将其保存在您机器上的C:\ output \中
https://msdn.microsoft.com/powershell/reference/5.1/Microsoft.PowerShell.Utility/Invoke-WebRequest