Examples/xScheduledTask/1-CreateScheduledTaskOnce.ps1

<#
    .EXAMPLE
    This example creates a scheduled task called 'Test task Once' in the folder
    task folder 'MyTasks' that starts a new powershell process once at 00:00 repeating
    every 15 minutes for 8 hours. The task is delayed by a random amount up to 1 hour
    each time. The task will run even if the previous task is still running and it
    will prevent hard termintaing of the previously running task instance.
#>

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DscResource -ModuleName xComputerManagement

    Node $NodeName
    {
        xScheduledTask xScheduledTaskOnceAdd
        {
            TaskName = 'Test task Once'
            TaskPath = '\MyTasks'
            ActionExecutable = 'C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe'
            ScheduleType = 'Once'
            RepeatInterval = '00:15:00'
            RepetitionDuration = '08:00:00'
            ActionWorkingPath = (Get-Location).Path
            Enable = $true
            RandomDelay = '01:00:00'
            DisallowHardTerminate = $true
            RunOnlyIfIdle = $false
            Priority = 9
        }
    }
}