New-ScheduledTaskTrigger

New-ScheduledTaskTrigger

Creates a scheduled task trigger object.

구문

Parameter Set: Once
New-ScheduledTaskTrigger [-Once] -At <DateTime> [-RandomDelay <TimeSpan> ] [-RepetitionDuration <TimeSpan> ] [-RepetitionInterval <TimeSpan> ] [ <CommonParameters>]

Parameter Set: AtLogon
New-ScheduledTaskTrigger [-AtLogOn] [-RandomDelay <TimeSpan> ] [-User <String> ] [ <CommonParameters>]

Parameter Set: AtStartup
New-ScheduledTaskTrigger [-AtStartup] [-RandomDelay <TimeSpan> ] [ <CommonParameters>]

Parameter Set: Daily
New-ScheduledTaskTrigger [-Daily] -At <DateTime> [-DaysInterval <Int32> ] [-RandomDelay <TimeSpan> ] [ <CommonParameters>]

Parameter Set: Weekly
New-ScheduledTaskTrigger [-Weekly] -At <DateTime> -DaysOfWeek {Sunday | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday}[] [-RandomDelay <TimeSpan> ] [-WeeksInterval <Int32> ] [ <CommonParameters>]

자세한 설명

The New-ScheduledTaskTrigger cmdlet creates and returns a new scheduled task trigger object.

You can use a time-based trigger or an event-based trigger to start a task. Time-based triggers include starting a task at a specific time or starting a task multiple times on a daily or weekly schedule. Event-based triggers include starting a task when the system starts up or when a user logs on to the computer. Each task can contain one or more triggers, which means there are many ways that you can start a task. If a task has multiple triggers, Task Scheduler starts the task when any of the triggers occur.

매개 변수

-At<DateTime>

Specifies a date and time to trigger the task. This paramater is valid for calendar-based triggers (Once, Daily, Weekly).

별칭

없음

필수 여부

true

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-AtLogOn

Indicates that a trigger starts a task when a user logs on.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-AtStartup

Indicates that a trigger starts a task when the system is started.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Daily

Indicates that a trigger starts a task on a recurring daily schedule.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-DaysInterval<Int32>

Specifies the interval between the days in the schedule. An interval of 1 produces a daily schedule. An interval of 2 produces an every-other day schedule.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-DaysOfWeek<DayOfWeek[]>

Specifies an array of the days of the week on which Task Scheduler runs the task.

별칭

없음

필수 여부

true

위치

named

기본값

{ DayOfWeek.Monday, DayOfWeek.Tuesday, DayOfWeek.Wednesday, DayOfWeek.Thursday, DayOfWeek.Friday, DayOfWeek.Saturday, DayOfWeek.Sunday }

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Once

Indicates that a trigger starts a task once at a time specified in the At parameter.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-RandomDelay<TimeSpan>

Specifies a random amount of time to delay the start time of the trigger. The delay time is a random time between the time the task triggers and the time that you specify in this setting.

별칭

없음

필수 여부

false

위치

named

기본값

0

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-RepetitionDuration<TimeSpan>

Specifies how long the repetition pattern repeats after the task starts.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-RepetitionInterval<TimeSpan>

Specifies an amount of time between each restart of the task. The task will run, wait for the time interval specified, and then run again. This cycle continues for the time that you specify for the RepetitionDuration parameter.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-User<String>

Specifies the identifier of the user for a trigger that starts a task when a user logs on.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Weekly

Indicates that the trigger starts a task on a recurring weekly schedule.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-WeeksInterval<Int32>

Specifies the interval between the weeks in the schedule. An interval of 1 produces a weekly schedule. An interval of 2 produces an every-other week schedule.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • Microsoft.Management.Infrastructure.CimInstance#MSFT_TaskTrigger

예제

Example 1: Register a scheduled task that starts a task once

This example registers a scheduled task that starts once.

The first command creates a scheduled task action named Cmd and assigns the ScheduledTaskAction object to the Sta variable.

PS C:\> $Sta = New-ScheduledTaskAction -Execute "Cmd"

The second command creates a scheduled task trigger that starts the task once at 3:00 A.M and assigns the ScheduledTaskTrigger object to the Stt variable.

PS C:\> $Stt = New-ScheduledTaskTrigger -Once -At 3am

The third command registers the scheduled task Task01 to run the task action named Cmd once at 3:00 A.M.

PS C:\> Register-ScheduledTask Task01 -Action $Sta -Trigger $Stt

Example 2: Register a scheduled task that starts every day

This example registers a scheduled task that starts every day.

The first command creates a scheduled task action named Cmd and assigns the ScheduledTaskAction object to the Sta variable.

PS C:\> $Sta = New-ScheduledTaskAction -Execute "Cmd"

The second command creates a scheduled task trigger that starts every day at 3:00 A.M and assigns the ScheduledTaskTrigger object to the Stt variable.

PS C:\> $Stt = New-ScheduledTaskTrigger -Daily -At 3am

The third command registers the scheduled task Task01 to run the task action named Cmd every day at 3:00 A.M.

PS C:\> Register-ScheduledTask Task01 -Action $Sta -Settings $Stt

Example 3: Register a scheduled task that starts every 3 days

This example registers a scheduled task that starts every 3 days.

The first command creates a scheduled task action named Cmd and assigns the ScheduledTaskAction object to the Sta variable.

PS C:\> $Sta = New-ScheduledTaskAction -Execute "Cmd"

The second command creates a scheduled task trigger that starts every 3 days at 3:00 A.M and assigns the ScheduledTaskTrigger object to the Stt variable.

PS C:\> $Stt = New-ScheduledTaskTrigger -Daily -DaysInterval 3 -At 3am

The third command registers the scheduled task Task01 to run the task action named cmd every 3 days at 3:00 A.M.

PS C:\> Register-ScheduledTask Task01 -Action $Sta -Settings $Stt

Example 4: Register a scheduled task that starts every-other week

This example registers a scheduled task that starts every other week.

The first command creates a scheduled task action named Cmd and assigns the ScheduledTaskAction object to the Sta variable.

PS C:\> $Sta = New-ScheduledTaskAction -Execute "Cmd"

The second command creates a scheduled task trigger that starts every other Sunday at 3:00 A.M and assigns the ScheduledTaskTrigger object to the Stt variable.

PS C:\> $Stt = New-ScheduledTaskTrigger -Weekly -WeeksInterval 2 -DaysOfWeek Sunday -At 3am

The third command registers the scheduled task Task01 to run the task action named Cmd every other Sunday at 3:00 A.M.

PS C:\> Register-ScheduledTask Task01 -Action $Sta -Settings $Stt

Example 5: Register a scheduled task that starts when a user logs on

This example registers a scheduled task that starts when a user logs on.

The first command creates a scheduled task action named Cmd and assigns the ScheduledTaskAction object to the Sta variable.

PS C:\> $Sta = New-ScheduledTaskAction -Execute "Cmd"

The second command creates a scheduled task trigger that starts when a user logs on, and assigns the ScheduledTaskTrigger object to the Stt variable.

PS C:\> $Stt = New-ScheduledTaskTrigger -AtLogon

The third command registers the scheduled task Task01 to run the task action named Cmd when a user logs on.

PS C:\> Register-ScheduledTask Task01 -Action $Sta -Settings $Stt

관련 항목

New-ScheduledTaskAction

New-ScheduledTask

Get-ScheduledTaskInfo

Enable-ScheduledTask

Register-ScheduledTask

Register-ScheduledTask

Start-ScheduledTask