Are the Scheduled Task and the Scheduled Task the same in the Powershell context?

I am trying to create a scheduled task from Powershell.

I was read in a document for cmdlet: New-ScheduledJobOption.

And I'm a little confused ...

Question : Are the Scheduled Task and the Scheduled Task the same in the Powershell context? Or is there a difference?

+6
source share
1 answer

So, just to give a real answer, in addition to putting out an article by Valamus :

In the PowerShell context, Scheduled Tasks and Scheduled Tasks are not the same thing. From the point of view of the task scheduler, they are exactly the same.

The PowerShell team provided a set of tools to create a special type of task that will be stored in the task scheduler library. Scheduled task cmdlets will not allow you to interact with regular scheduled tasks. Task Scheduler allows you to interchangeably interact with regular tasks and scheduled tasks.

+5
source

All Articles