I don't think that is possible with schtasks in Windows XP. You could config it to run a VBScript every ten minutes and in that VBScript you can check weekday and time.
If WeekDay(Date,2)<6 Then
t=Time
If t>TimeValue("9:00:00 AM") and t<TimeValue("3:00:00 PM") Then
Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.Run "notepad.exe", 1, false
End If
End If
Jonas Elfström
2009-09-18 07:47:37