Examples/Resources/ScheduledTask/9-RunPowerShellTaskOnceAsUserWithHighestPriveleges.ps1

<#
    .EXAMPLE
    This example creates a scheduled task called 'Test task Run As Highest Privilege'
    in the folder task folder 'MyTasks' that starts a new powershell process once.
    The task will run as the credential passed into the $Credential parameter, running
    with the highest privileges.
#>

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

        [Parameter(Mandatory = $true)]
        [ValidateNotNullorEmpty()]
        [System.Management.Automation.PSCredential]
        $Credential
    )

    Import-DscResource -ModuleName ComputerManagementDsc

    Node $NodeName
    {
        ScheduledTask MaintenanceScriptExample
        {
            TaskName            = 'Test task Run As Highest Privilege'
            TaskPath            = '\MyTasks'
            ActionExecutable    = 'C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe'
            ScheduleType        = 'Once'
            ActionWorkingPath   = (Get-Location).Path
            Enable              = $true
            ExecuteAsCredential = $Credential
            RunLevel            = 'Highest'
        }
    }
}