Deleting all Scheduled tasks on your lan - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Windows Noob (https://www.linux-noob.com/forums/forum-5.html) +--- Forum: Tips and Tricks (https://www.linux-noob.com/forums/forum-73.html) +--- Thread: Deleting all Scheduled tasks on your lan (/thread-3903.html) |
Deleting all Scheduled tasks on your lan - Digerati - 2003-12-18 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. |