Exclusive 元素

指示任务计划程序在自动维护期间是否必须以独占模式启动任务。

仅在其他维护任务之间保证排他性,不授予任务的任何排序优先级。 如果未指定排他性,则会与其他维护任务并行启动该任务。

<xs:element name="Exclusive"
    type="xsd:boolean"
    maxOccurs="1"
    minOccurs="0"
 />

Exclusive 元素由 maintenanceSettingsType 复杂类型定义。

父元素

元素 派生 说明
MaintenanceSettings (maintenanceSettingsType) maintenanceSettingsType 指定任务计划程序在自动维护期间用于启动任务的任务设置。

备注

对于 C++ 编程,此空闲设置是使用 IMaintenanceSettings::Exclusive 属性指定的。

示例

以下 XML 定义了截止时间要求设置为 15 天的维护任务。

<MaintenanceSettings>
    <Period>P5D</Period>
    <Deadline>P15D</Deadline>
    <Exclusive>true</Exclusive>
</MaintenanceSettings>

要求

要求
最低受支持的客户端
Windows 8 [仅限桌面应用]
最低受支持的服务器
Windows Server 2012 [仅限桌面应用]

另请参阅

任务计划程序架构元素

任务计划程序