Hi, I've setup a couple of chkdsk cluster scheduled tasks but they're not appearing in the failover cluster section in task scheduler, and not running when the trigger is hit. They were created using the following powershell commands
$actionF = New-ScheduledTaskAction –Execute C:\Windows\System32\chkdsk.exe -Argument /scan -WorkingDirectory "F:"
$triggerF = New-ScheduledTaskTrigger -Weekly -At 12:00 -DaysofWeek Saturday
Register-ClusteredScheduledTask –Cluster ClusterName –TaskName CHKDSK_F –TaskType ResourceSpecific –Resource ClusterResource –Action $actionF –Trigger $triggerF
does the resource need to be brought offline/online for the scheduled task to take effect?
thanks for any assistance