我想使用Windows任务计划程序发送HTTP请求。 在UNIX cron作业中,我可以使用它
HTTP
UNIX
wget http://www.google.com -O /dev/null
如何在Windows Server上执行相同的操作?
你可以下载一个Windows版本的wget 。 创build一个batch file,如果你需要更多的处理:
@echo off wget http://www.google.com -O nul rem do something else, if needed
在你的任务中,只需调用这个batch file。