J JJ Jan 29, 2007 #1 I am trying to setup a window tasks (or other better method) that runs aspx page once a day. How do I do this? Thanks
I am trying to setup a window tasks (or other better method) that runs aspx page once a day. How do I do this? Thanks
J John Timney \(MVP\) Jan 29, 2007 #2 You could try using the scheduler service to invoke a batch file with something like this in it cmd.exe http://www.microsoft.com/default.aspx Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog
You could try using the scheduler service to invoke a batch file with something like this in it cmd.exe http://www.microsoft.com/default.aspx Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog
J JJ Jan 30, 2007 #3 Can you provide the complete batch file? I am not that familiar with batch processes. Thanks
A Alexey Smirnov Jan 30, 2007 #4 Can you provide the complete batch file? I am not that familiar with batch processes. Click to expand... I recommend you to create a file sched.vbs Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") objXMLHTTP.Open "GET", "http://mysite", False objXMLHTTP.Send Set objXMLHTTP = Nothing and add this file into Windows sheduler
Can you provide the complete batch file? I am not that familiar with batch processes. Click to expand... I recommend you to create a file sched.vbs Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") objXMLHTTP.Open "GET", "http://mysite", False objXMLHTTP.Send Set objXMLHTTP = Nothing and add this file into Windows sheduler
J John Timney \(MVP\) Jan 30, 2007 #5 That would probably be a better idea actually..... -- -- Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog
That would probably be a better idea actually..... -- -- Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog