TaskMultipleInstancePolicy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates Task Scheduler options for multiple instance polices of scheduled tasks (jobs).
public enum TaskMultipleInstancePolicy
type TaskMultipleInstancePolicy =
Public Enum TaskMultipleInstancePolicy
- Inheritance
-
TaskMultipleInstancePolicy
Fields
Name | Value | Description |
---|---|---|
None | 0 | None |
IgnoreNew | 1 | Ignore a new instance of the task (job) |
Parallel | 2 | Allow parallel running of a task (job) |
Queue | 3 | Queue up multiple instances of a task (job) |
StopExisting | 4 | Stop currently running task (job) and start a new one |