计划任务错误

发布于 2024-08-13 07:48:13 字数 530 浏览 6 评论 0原文

我在计划任务中遇到错误:“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

预谋 2024-08-20 07:48:13

如果错误是从 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.

揽清风入怀 2024-08-20 07:48:13

您是否尝试过使用批处理文件来执行此操作?

例如,以下是一些示例运行行:

cscript.exe c:\scripts\call_logs.vbs

或者:

script.exe c:\scripts\call_logs.vbs

这是我用来归档 IIS 日志的行:

C:\WINDOWS\system32\wscript.exe D:\scripts\list.vbs

Have you tried to use a batch file to do this?

For example here are some sample run lines:

cscript.exe c:\scripts\call_logs.vbs

Or:

script.exe c:\scripts\call_logs.vbs

Here is one that I use to archive off IIS Logs:

C:\WINDOWS\system32\wscript.exe D:\scripts\list.vbs
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文