I'm using laravel 4 and i need to execute script every Monday, Tuesday, Wednesday, Thursday and Friday at 16:00h. Right now im using method dailyAt(16:00), but i dont want to script execute at Suturday and Sunday. My command looks like this in Kernel.php:
$schedule->command("script")->dailyAt("16:00")->sendOutputTo("NUL");