Working days - How?

Hi guys!
I have some scripts which is ok , and runing every 24 hours.
But I have problems :
I need this scripts to running from monday-friday , at weekend days (saturday and sunday) I dont need to use this scripts , and then I manualy (via winbox) disable scheduled scripts.
Is there any way to make some script which will be do this ?
How to make mikrotik to run these scheduled scripts only in working days?

Thanks for any help!

Put an increment count in the script and if statement in the beginning.

To handle this we just use another two scripts and scheduler events. These extra scripts disable the scheduler on weekends and enable them weekdays. Here is an example of the scripts.

StartWeek Script
:foreach I in=[/system scheduler find name=DaySwitch] do={
/system scheduler enable $I
}
:foreach I in=[/system scheduler find name=NightSwitch] do={
/system scheduler enable $I
}

StartWeekend Script
:foreach I in=[/system scheduler find name=DaySwitch] do={
/system scheduler disable $I
}

:foreach I in=[/system scheduler find name=NightSwitch] do={
/system scheduler disable $I
}

I then set up a Scheduler event to run the StartWeekend script on fridays at the desired time and another event to run the StartWeek script on Monday at the desired time.

Thanks!
I put on scheduler these two script with satring date and interval 168 hours.
Now I will be watch does script work…