我尝试通过批处理脚本下载图片
:downloadPicture
bitsadmin /transfer downloadPicture /download /priority normal http://wallpaperlatest.com/wp-content/uploads/nature-wallpaper-download-20.jpg C:\Users\%username%\desktop\%pictureName%
它不断给我一个错误,告诉它服务器不支持必要的 HTTP 协议。
顺便说一句,这只是项目的一部分。我将 pictureName 设置在其他地方。
答案1
对我来说代码运行良好(我在我的电脑上测试过)
您也可以使用 curl 或 wget 来完成同样的工作。例如使用 wget:
powershell.exe -Command wget <file_url> -OutFile <file_name>
你可以获取适用于 Windows 的 wget这里。