从 powershell 触发任务调度程序作业
Trigger task scheduler Job from powershell
我想创建一个作业,它在周一到周五的早上 6 点到晚上 9 点之间运行,并以 15 分钟的间隔触发,如果运行时间超过 10 分钟,作业应该终止。
我试过下面的代码:
$action = New-ScheduledTaskAction -Execute Powershell.exe
$trigger = New-ScheduledTaskTrigger -Weekly -At 6:30AM -DaysOfWeek 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'
$task = Register-ScheduledTask -TaskName "TaskName" -Trigger $trigger -Action $action -RunLevel Highest
$task.Triggers.ExecutionTimeLimit = 'PT30M'
$task.Triggers.Repetition.Duration = 'PT15H'
$task.Triggers.Repetition.Interval= 'PT15M'
$task.Triggers.Repetition.Duration = 'PT15H'
$task | Set-ScheduledTask -User "UserName" -Password "Password"
除了作业运行超过 10 分钟就会终止作业之外,我已经实现了所有其他目标。
我遇到错误。
The property 'ExecutionTimeLimit' cannot be found on this object. Verify that the property exists and can be set.
At line:4 char:1
+ $task.Triggers.ExecutionTimeLimit = 'PT10M'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : PropertyAssignmentException
请帮我提前过来issue.Thanks
我认为任务设置 executionlimit 是您正在寻找的:
$task.Settings.ExecutionTimeLimit = 'PT30M'
相同的 commandlet 版本:
$settings = New-ScheduledTaskSettingsSet -ExecutionTimeLimit (New-TimeSpan -Minutes 30)
Set-ScheduledTask -TaskName 'taskname' -Settings $settings
参考 属性 : https://technet.microsoft.com/en-us/library/cc722178(v=ws.11).aspx
关于触发器执行限制和任务设置执行限制的有用讨论:https://superuser.com/questions/506662/what-is-the-difference-between-stop-the-task-if-it-runs-longer-than-inside-tri
我想创建一个作业,它在周一到周五的早上 6 点到晚上 9 点之间运行,并以 15 分钟的间隔触发,如果运行时间超过 10 分钟,作业应该终止。
我试过下面的代码:
$action = New-ScheduledTaskAction -Execute Powershell.exe
$trigger = New-ScheduledTaskTrigger -Weekly -At 6:30AM -DaysOfWeek 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'
$task = Register-ScheduledTask -TaskName "TaskName" -Trigger $trigger -Action $action -RunLevel Highest
$task.Triggers.ExecutionTimeLimit = 'PT30M'
$task.Triggers.Repetition.Duration = 'PT15H'
$task.Triggers.Repetition.Interval= 'PT15M'
$task.Triggers.Repetition.Duration = 'PT15H'
$task | Set-ScheduledTask -User "UserName" -Password "Password"
除了作业运行超过 10 分钟就会终止作业之外,我已经实现了所有其他目标。 我遇到错误。
The property 'ExecutionTimeLimit' cannot be found on this object. Verify that the property exists and can be set.
At line:4 char:1
+ $task.Triggers.ExecutionTimeLimit = 'PT10M'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : PropertyAssignmentException
请帮我提前过来issue.Thanks
我认为任务设置 executionlimit 是您正在寻找的:
$task.Settings.ExecutionTimeLimit = 'PT30M'
相同的 commandlet 版本:
$settings = New-ScheduledTaskSettingsSet -ExecutionTimeLimit (New-TimeSpan -Minutes 30)
Set-ScheduledTask -TaskName 'taskname' -Settings $settings
参考 属性 : https://technet.microsoft.com/en-us/library/cc722178(v=ws.11).aspx
关于触发器执行限制和任务设置执行限制的有用讨论:https://superuser.com/questions/506662/what-is-the-difference-between-stop-the-task-if-it-runs-longer-than-inside-tri