Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一些帮助。
我经营一个使用可下载新闻提要的广播电台。目前我每小时手动下载一次。
我想要一个脚本,最好是 cmd,所以运行它不需要花哨的东西,它将每小时下载一次文件(使用 Windows 任务调度程序)并将其放在某个文件夹中。下载不受用户/密码保护,它是免费的并受版权保护。
可以请一些善良的灵魂启动我吗?
谢谢。
使用wget。Windows 版本作为UnxUtils包的一部分提供。
使用它很简单:
wget http://www.example.com/myfile.mp3
如果你想使用纯批处理,你可能想使用:
CERTUTIL
certutil -urlcache -split -f <url>
BITSADMIN
bitsadmin /transfer myDownloadJob /download /priority normal <url> <destination>
要自动执行任务,请使用schtasks:
schtasks
schtasks /create /tn "MyTask" /sc hourly /mo 1 /tr "certutil -urlcache -split -f <url>"