我尝试使用powershell在Windows Server 2012上注册一个新的ClusteredScheduledTask。但该任务无法正确设置RepetitionInterval和RepetitionDuration。
$T = New-ScheduledTaskTrigger -Once -At 08:10AM -RepetitionInterval (New-TimeSpan -Hours 1) -RepetitionDuration (New-TimeSpan -Hours 12)
任务计划程序ui可以看到触发器仅在08:10执行一次,但没有RepetitionInterval和RepetitionDuration。
你能告诉我出了什么问题吗?谢谢。 乔