计划任务错误
我在计划任务中遇到错误:“http://localhost:4625/DataUpdater.aspx.Error 消息:未将对象引用设置为对象的实例。”
计划任务vbs脚本:
Call LogEntry()
Sub LogEntry()
On Error Resume Next
Dim objRequest
Dim URL
Set objRequest = CreateObject("Microsoft.XMLHTTP")
URL = "http://localhost:4625/DataUpdater.aspx"
objRequest.open "POST", URL , false
objRequest.Send
Set objRequest = Nothing
End Sub
I am getting error in scheduled task :"http://localhost:4625/DataUpdater.aspx.Error Message:Object reference not set to an instance of an object."
Scheduledtask vbs script :
Call LogEntry()
Sub LogEntry()
On Error Resume Next
Dim objRequest
Dim URL
Set objRequest = CreateObject("Microsoft.XMLHTTP")
URL = "http://localhost:4625/DataUpdater.aspx"
objRequest.open "POST", URL , false
objRequest.Send
Set objRequest = Nothing
End Sub
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果错误是从 Cassini/IIS 返回的,那么您应该将代码发布到 .aspx / .aspx.cs 文件中,以及发生错误的行。
If the error is coming back from Cassini/IIS then you should post the code in the .aspx / .aspx.cs file, and the line the error is occurring on.
您是否尝试过使用批处理文件来执行此操作?
例如,以下是一些示例运行行:
或者:
这是我用来归档 IIS 日志的行:
Have you tried to use a batch file to do this?
For example here are some sample run lines:
Or:
Here is one that I use to archive off IIS Logs: