Unix scheduler other than Cron

Do any one know any way of scheduling jobs on Unix without using cron as thats not supported within the company

The at command. man at

However if cron is turned off for security reasons, at is also turned off as well.

there is a tool called "anacron"... maybe this works?

anacron - Wikipedia, the free encyclopedia

man at command is working, how can i schedule a job using this. Do you have any tutorial which i could read

Thanks

at doesn't work if cron is disabled...

echo who | at now

The man page should give a lot of insight, at isn't really a reoccurring task like cron is. Are you not happy with cron for some reason? There aren't replacements of it for a very good reason obviously.

Dont forget the @reboot like names as well.