Task Scheduler Error and Success Constants (Windows)
If an error occurs, the Task Scheduler APIs can return one of the following error codes as an HRESULT value.
The constants that begin with SCHED_S_ are success constants, and the constants that begin with SCHED_E_ are error constants.
Note Some Task Scheduler APIs can return system and network error codes (64 for example). You can check the definition of these types of error codes by using the net helpmsg command in the command prompt window. For example, the command net helpmsg 64 returns the message: The specified network name is no longer available.
For more information about events and error messages, see Events and Errors Message Center.
- SCHED_S_TASK_READY
-
- 0x00041300
The task is ready to run at its next scheduled time.
- SCHED_S_TASK_RUNNING
-
- 0x00041301
The task is currently running.
- SCHED_S_TASK_DISABLED
-
- 0x00041302
The task will not run at the scheduled times because it has been disabled.
- SCHED_S_TASK_HAS_NOT_RUN
-
- 0x00041303
The task has not yet run.
- SCHED_S_TASK_NO_MORE_RUNS
-
- 0x00041304
There are no more runs scheduled for this task.
- SCHED_S_TASK_NOT_SCHEDULED
-
- 0x00041305
One or more of the properties that are needed to run this task on a schedule have not been set.
- SCHED_S_TASK_TERMINATED
-
- 0x00041306
The last run of the task was terminated by the user.
- SCHED_S_TASK_NO_VALID_TRIGGERS
-
- 0x00041307
Either the task has no triggers or the existing triggers are disabled or not set.
- SCHED_S_EVENT_TRIGGER
-
- 0x00041308
Event triggers do not have set run times.
- SCHED_E_TRIGGER_NOT_FOUND
-
- 0x80041309
A task's trigger is not found.
- SCHED_E_TASK_NOT_READY
-
- 0x8004130A
One or more of the properties required to run this task have not been set.
- SCHED_E_TASK_NOT_RUNNING
-
- 0x8004130B
There is no running instance of the task.
- SCHED_E_SERVICE_NOT_INSTALLED
-
- 0x8004130C
The Task Scheduler service is not installed on this computer.
- SCHED_E_CANNOT_OPEN_TASK
-
- 0x8004130D
The task object could not be opened.
- SCHED_E_INVALID_TASK
-
- 0x8004130E
The object is either an invalid task object or is not a task object.
- SCHED_E_ACCOUNT_INFORMATION_NOT_SET
-
- 0x8004130F
No account information could be found in the Task Scheduler security database for the task indicated.
- SCHED_E_ACCOUNT_NAME_NOT_FOUND
-
- 0x80041310
Unable to establish existence of the account specified.
- SCHED_E_ACCOUNT_DBASE_CORRUPT
-
- 0x80041311
Corruption was detected in the Task Scheduler security database; the database has been reset.
- SCHED_E_NO_SECURITY_SERVICES
-
- 0x80041312
Task Scheduler security services are available only on Windows NT.
- SCHED_E_UNKNOWN_OBJECT_VERSION
-
- 0x80041313
The task object version is either unsupported or invalid.
- SCHED_E_UNSUPPORTED_ACCOUNT_OPTION
-
- 0x80041314
The task has been configured with an unsupported combination of account settings and run time options.
- SCHED_E_SERVICE_NOT_RUNNING
-
- 0x80041315
The Task Scheduler Service is not running.
- SCHED_E_UNEXPECTEDNODE
-
- 0x80041316
The task XML contains an unexpected node.
- SCHED_E_NAMESPACE
-
- 0x80041317
The task XML contains an element or attribute from an unexpected namespace.
- SCHED_E_INVALIDVALUE
-
- 0x80041318
The task XML contains a value which is incorrectly formatted or out of range.
- SCHED_E_MISSINGNODE
-
- 0x80041319
The task XML is missing a required element or attribute.
- SCHED_E_MALFORMEDXML
-
- 0x8004131A
The task XML is malformed.
- SCHED_S_SOME_TRIGGERS_FAILED
-
- 0x0004131B
The task is registered, but not all specified triggers will start the task.
- SCHED_S_BATCH_LOGON_PROBLEM
-
- 0x0004131C
The task is registered, but may fail to start. Batch logon privilege needs to be enabled for the task principal.
- SCHED_E_TOO_MANY_NODES
-
- 0x8004131D
The task XML contains too many nodes of the same type.
- SCHED_E_PAST_END_BOUNDARY
-
- 0x8004131E
The task cannot be started after the trigger end boundary.
- SCHED_E_ALREADY_RUNNING
-
- 0x8004131F
An instance of this task is already running.
- SCHED_E_USER_NOT_LOGGED_ON
-
- 0x80041320
The task will not run because the user is not logged on.
- SCHED_E_INVALID_TASK_HASH
-
- 0x80041321
The task image is corrupt or has been tampered with.
- SCHED_E_SERVICE_NOT_AVAILABLE
-
- 0x80041322
The Task Scheduler service is not available.
- SCHED_E_SERVICE_TOO_BUSY
-
- 0x80041323
The Task Scheduler service is too busy to handle your request. Please try again later.
- SCHED_E_TASK_ATTEMPTED
-
- 0x80041324
The Task Scheduler service attempted to run the task, but the task did not run due to one of the constraints in the task definition.
- SCHED_S_TASK_QUEUED
-
- 0x00041325
The Task Scheduler service has asked the task to run.
- SCHED_E_TASK_DISABLED
-
- 0x80041326
The task is disabled.
- SCHED_E_TASK_NOT_V1_COMPAT
-
- 0x80041327
The task has properties that are not compatible with earlier versions of Windows.
- SCHED_E_START_ON_DEMAND
-
- 0x80041328
The task settings do not allow the task to start on demand.
Requirements
|
Minimum supported client |
Windows Vista [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2008 [desktop apps only] |
|
Header |
|
Build date: 11/16/2013
Task Scheduler Error and Success Constants (Windows)的更多相关文章
- Task Scheduler Error Message: 80041318
Using the error lookup tool that comes with VC++ (errlook.exe, or "Error Lookup" on the To ...
- Windows Task Scheduler Fails With Error Code 2147943785
Problem: Windows Task Scheduler Fails With Error Code 2147943785 Solution: This is usually due to a ...
- Task Scheduler API Error 80041318
https://stackoverflow.com/questions/42307917/task-scheduler-api-error-80041318/42462235#42462235 Hi ...
- 在Windows Server 2012的Task Scheduler里面配置自动发送邮件
最近在一台server上配置了每个周末备份数据库的定时任务,想顺手配置发送备份完成的邮件提醒我去Double Check一下备份结果. 悲剧地发现Send an email功能被新版的server给禁 ...
- 使用C#创建计划任务(How to create a Task Scheduler use C# )
本文主要讲解了如何使用C#来创建windows计划任务. 需求:在不定时间段运行多个后台程序(winfrom,wpf,console,等等)用于更新数据. 问题:为什么要使用计划任务,而不直接在程序 ...
- SpringBoot2 task scheduler 定时任务调度器四种方式
github:https://github.com/chenyingjun/springboot2-task 使用@EnableScheduling方式 @Component @Configurabl ...
- MS SQL错误:SQL Server failed with error code 0xc0000000 to spawn a thread to process a new login or connection. Check the SQL Server error log and the Windows event logs for information about possible related problems
早晨宁波那边的IT人员打电话告知数据库无法访问了.其实我在早晨也发现Ignite监控下的宁波的数据库服务器出现了异常,但是当时正在检查查看其它服务器发过来的各类邮件,还没等到我去确认具体情 ...
- SSIS Error The Execute method on the task returned error code 0x80131621
Error Message: The Execute method on the task returned error code 0x80131621 (Mixed mode assembly is ...
- python+appium 【已解决】真机运行appium报错“WebDriverException: Message: A new session could not be created. (Original error: Command failed: C:\Windows\system32\cmd.exe /s /c.......详见内文
问题报错提示: selenium.common.exceptions.WebDriverException: Message: A new session could not be created. ...
随机推荐
- hdu 1213 How Many Tables 解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1213 有关系(直接或间接均可)的人就坐在一张桌子,我们要统计的是最少需要的桌子数. 并查集的入门题,什 ...
- PA
[题目描述] 汉诺塔升级了:现在我们有?个圆盘和?个柱子,每个圆盘大小都不一样, 大的圆盘不能放在小的圆盘上面,?个柱子从左到右排成一排.每次你可以将一 个柱子上的最上面的圆盘移动到右边或者左边的柱子 ...
- mac平台下面ruby环境搭建
一.安装xcode 先安装 [Xcode](http://developer.apple.com/xcode/) 开发工具,它将帮你安装好 Unix 环境需要的开发包 二.安装 RVM curl -L ...
- String.split使用竖线做为分隔符
String.split使用竖线做为分隔符时会发现得到的数组不对,每个字符都被拆分成数组里的一个值: 解决办法:竖线需要转义才可以作为split的参数,String.split("\\|&q ...
- Eigen相关介绍
最近在用Matlab处理图像,现在要做的是将其用C++语言进行翻译,由于要进行大量的矩阵计算,就研究了一下可以进行矩阵计算的开源库,详细的介绍可以参照http://my.oschina.net/cvn ...
- hadoop1.2.1的namenode格式化失败的问题
最近要开始找工作,就在原来搭建好的hadoop1.2.1的伪分布式跑跑mapreduce 很久没用,就想着格式化一下namode,结果: Format aborted in /uar/local/ha ...
- 调整linux的时钟
想把linux时钟调整的正常了. 网上找了找资料,找到了同步办法: http://blog.51yip.com/server/1474.html 即使用: sudo yum install ntp s ...
- redis的相关知识
1. 依赖包安装 pom.xml 加入: <!-- redis cache related.....start --> <dependency> <groupId> ...
- javascript优化--03高质量编码
使用Object的直接量实例构造轻量级的字典: 使用for/in循环,使用对象字面量来构建,并确保不增加Object.prototype属性来导致for/in循环:(考虑到兼容性,如Array.pro ...
- windows 并发与同步 学习笔记
测试 5.2 windows 中断与异常 1.外部硬件中断是通过处理器上的中断引脚管或者本地APIC的内置模块来发生的:对于一个处理器,一旦被中单, 某个预先被设定的中断服务例程就被执行! 2.处理器 ...