maintenanceSettingsType 复杂类型

定义 MaintenanceSettings 元素的子元素和排序信息。

<xs:complexType name="maintenanceSettingsType">
    <xs:all>
        <xs:element name="Period"
            minOccurs="1"
            maxOccurs="1"
        >
            <xs:simpleType>
                <xs:restriction
                    base="duration"
                >
                    <xs:minInclusive
                        value="P1D"
                     />
                </xs:restriction>
            </xs:simpleType>
        </xs:element>
        <xs:element name="Deadline"
            minOccurs="1"
            maxOccurs="1"
        >
            <xs:simpleType>
                <xs:restriction
                    base="duration"
                >
                    <xs:minInclusive
                        value="P1D"
                     />
                </xs:restriction>
            </xs:simpleType>
        </xs:element>
        <xs:element name="Exclusive"
            type="boolean"
            maxOccurs="1"
            minOccurs="1"
         />
    </xs:all>
</xs:complexType>

子元素

元素 类型 说明
最后期限 指定任务计划程序在紧急自动维护期间(如果在常规维护期间未能完成)尝试启动任务的时间量。
独占 boolean 如果设置为 true,则任务将在其他维护任务中以独占方式启动。
周期 指定自动维护期间需要启动任务的频率。

要求

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

另请参阅

任务计划程序架构复杂类型

任务计划程序