23

Is it possible to schedule a task only for working days (Monday to Friday)?

Lee Taylor
  • 1,506
me.at.coding
  • 1,667

3 Answers3

45

Yes, this is possible.

  1. Create a Task
  2. On the Triggers tab, click New...
  3. Then click Weekly (see below)
  4. Choose the days you want
  5. Fill in the rest of your requirements.

Lee Taylor
  • 1,506
0

Or command for those who do not like GUI or just want to script:

schtasks /create /sc weekly /D TUE,THU /st 16:00 /f /RI 60 /du 12:00 /tr "'c:\temp\imdms\l.cmd'" /tn lock_mecoms

Result:

SUCCESS: The scheduled task "lock_mecoms" has successfully been created.

Destroy666
  • 12,350
Fdv
  • 1
-1

supplebee.comallows you to create monthly events on business days and avoid weekends and public holidays enter image description here

Xiaoguo Ge
  • 99
  • 1