﻿<?xml version="1.0" encoding="utf-8"?>
<AxeAssessmentManifest xmlns="http://www.microsoft.com/axe/assessment/manifest">

    <VersionedId>
        <Guid>{ef906e1e-af6d-4d93-9378-be8104287681}</Guid>
        <Version>
            <Major>1</Major>
            <Minor>0</Minor>
            <Build>0</Build>
            <Revision>1</Revision>
        </Version>
    </VersionedId>

    <MinimumAxeVersionRequired>
        <Version>
            <Major>6</Major>
            <Minor>2</Minor>
            <Build>0</Build>
            <Revision>0</Revision>
        </Version>
    </MinimumAxeVersionRequired>

    <Description>
        <ProgrammaticName>Delay</ProgrammaticName>
        <DisplayName>ADK Samples - Delay</DisplayName>
        <ToolTip>A simple assessment that can add a sleep or delay before other assessments.</ToolTip>
    </Description>

    <Properties>
        <Author>Microsoft Corporation</Author>
        <Copyright>© 2013 Microsoft Corporation. All rights reserved.</Copyright>
        <Url>http://go.microsoft.com/fwlink/?LinkID=232339&amp;clcid=0x409</Url>
        <AuthorUrl>http://go.microsoft.com/fwlink/?LinkID=232354&amp;clcid=0x409</AuthorUrl>
        <UpdateUrl>http://go.microsoft.com/fwlink/?LinkID=232356&amp;clcid=0x409</UpdateUrl>
        <ExitValueMeaning>
            <ZeroIsSuccess />
        </ExitValueMeaning>
    </Properties>

    <ParameterDefinitions>

        <ParameterDefinition>
            <Description>
                <ProgrammaticName>TimeSeconds</ProgrammaticName>
                <DisplayName>Time in Seconds</DisplayName>
                <ToolTip>Number seconds to wait before moving onto the next assessment.</ToolTip>
            </Description>
            <Type>
                <UInt32 />
            </Type>
            <CommandLineFormat>-Seconds {0}</CommandLineFormat>
            <Inclusion>
                <Required />
            </Inclusion>
            <DefaultValue>60</DefaultValue>
            <BenchmarkValue>60</BenchmarkValue>
            <Constraints>
                <MinimumConstraint>1</MinimumConstraint>
            </Constraints>
        </ParameterDefinition>
        
    </ParameterDefinitions>

    <MetricDefinitions>
    </MetricDefinitions>

    <Execution>
        <CreateProcess>
            <ApplicationName>powershell.exe -Command Start-Sleep</ApplicationName>
            <CreateNewConsole />
        </CreateProcess>
    </Execution>

</AxeAssessmentManifest>