I need a Job Scheduler / Cron Jobs on Windows 7.
I need through command line set a start date (with day, month and year), a start time (with hour, minute and second), a job name and a command.
I tried with schtasks, but the seconds doesn't work (starts at 10:20:00):
schtasks /Create /SC ONCE /ST 10:20:30 /TN MyApp /TR calc.exe
Any suggestions?