You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5
5
6
6
## [Unreleased]
7
7
8
+
- ScheduledTask
9
+
- Allowed values for ScheduleType updated to accept AtLogon over AtLogOn - Fixes [Issue #420](https://github.com/dsccommunity/ComputerManagementDsc/issues/420)
Copy file name to clipboardExpand all lines: source/DSCResources/DSC_ScheduledTask/DSC_ScheduledTask.schema.mof
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ class DSC_ScheduledTask : OMI_BaseResource
7
7
[Write, Description("The path to the .exe for this task.")] string ActionExecutable;
8
8
[Write, Description("The arguments to pass the executable.")] string ActionArguments;
9
9
[Write, Description("The working path to specify for the executable.")] string ActionWorkingPath;
10
-
[Write, Description("When should the task be executed."), ValueMap{"Once", "Daily", "Weekly", "AtStartup", "AtLogOn", "OnEvent"}, Values{"Once", "Daily", "Weekly", "AtStartup", "AtLogOn", "OnEvent"}] string ScheduleType;
10
+
[Write, Description("When should the task be executed."), ValueMap{"Once", "Daily", "Weekly", "AtStartup", "AtLogon", "OnEvent"}, Values{"Once", "Daily", "Weekly", "AtStartup", "AtLogon", "OnEvent"}] string ScheduleType;
11
11
[Write, Description("How many units (minutes, hours, days) between each run of this task?")] String RepeatInterval;
12
12
[Write, Description("The time of day this task should start at - defaults to 12:00 AM. Not valid for AtLogon and AtStartup tasks.")] DateTime StartTime;
13
13
[Write, Description("Enable the scheduled task option to synchronize across time zones. This is enabled by including the timezone offset in the scheduled task trigger. Defaults to false which does not include the timezone offset.")] boolean SynchronizeAcrossTimeZone;
0 commit comments