【问题标题】:Task Scheduler Error code needs translation任务计划程序错误代码需要翻译
【发布时间】:2013-08-15 11:43:13
【问题描述】:

在设置在我们的 Windows 2008 R2 服务器上运行的新任务时,我收到以下错误消息: 任务TEST报错报错:2147943729。

我已经搜索过这个特定的错误代码,但没有找到任何结果。 有谁知道我如何获得更多信息?

【问题讨论】:

  • 您在尝试将任务插入任务调度程序时是否收到错误消息?
  • 任务自己运行正常吗?即当你手动运行它时?

标签: scheduled-tasks windows-server-2008-r2


【解决方案1】:

将其转换为十六进制得到 0x80070531。这使其成为致命错误 (8),由 Windows (7) 生成,错误代码为 0x531 = 1329:

//
// MessageId: ERROR_INVALID_WORKSTATION
//
// MessageText:
//
// Logon failure: user not allowed to log on to this computer.
//
#define ERROR_INVALID_WORKSTATION        1329L

您需要为计划任务提供一个有效的用户帐户才能运行。

【讨论】:

  • 1329 通过将末尾的 0531 转换回十进制,对吗?
猜你喜欢
  • 1970-01-01
  • 2018-01-11
  • 2021-07-08
  • 1970-01-01
  • 2012-12-24
  • 1970-01-01
  • 2010-12-22
  • 2011-09-26
  • 1970-01-01
相关资源
最近更新 更多