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
* Added V1 support to TaskEventWatcher
* Refactored V1 task flags and data handlers to use extension methods
* Bug fixes to TaskService.Connect, MMCMockup to work with V1, editors to handle V1 editing without V2 errors, TaskListView updating
* Added TaskHistoryControl.MaxQueryCount and corresponding MaxHistoryCount to TaskEditDialog and TaskPropertiesControl that allows limiting history items
ret.Add($"{TorF(validator.UserIsServerOperator)} Server Operators");
24
24
returnret.ToArray();
25
25
}
26
26
27
27
publicstring[]V1()
28
28
{
29
29
varret=newList<string>();
30
-
ret.Add($"User is a member of at least one of the required groups: {validator.UserIsAdmin||validator.UserIsBackupOperator||validator.UserIsServerOperator}");
31
-
ret.Add($"User has access rights to C:\\Windows\\Tasks: {validator.V1TaskPathAccess}");
30
+
ret.Add($"{TorF(validator.UserIsAdmin||validator.UserIsBackupOperator||validator.UserIsServerOperator)}User is a member of at least one of the required groups");
31
+
ret.Add($"{TorF(validator.V1TaskPathAccess)}User has access rights to C:\\Windows\\Tasks");
32
32
ret.Add("");
33
-
ret.Add($"Firewall must be enabled and have the following exceptions:");
0 commit comments