You may wish at some point to delete a scheduled task from all your users machines, but getting up and going to each machine can get tiresome and thats often unnessecary.

I made a batch file to do it all without me having to leave my chair.

[REMOVEAT.BAT]

AT \\computer /delete /Y

Just repeat that over and over for each pc and you got it wooped.
That deletes ALL jobs. If you know the job ID of certain jobs just use:

AT \\computer 1 /delete /Y

Where "1" is the ID number of the job.