However there are many reasons this should fail since even an admin account should fail if the permissions are not just so. As you are the IT staffer I won't go on about that here.
http://stackoverflow.com/questions/97875/rm-rf-equivalent-for-windows covers the takeown command so moving on to the delete. For me I'd do this in a 2 step. That is I'd CD to the folder and then do the rd. That way I won't remove the temp or Downloads folder but just what's in them.
Bob
I kind of been trying to make this batch file. Its not mine, tho i have kind of Frankenstein my way through this. trying different things and what not. the line about the temp files is perfect but the line with the downloads folder, i am running into a problem. I want it to just delete the files in the downloads folder, not the folder itself. see:
@ECHO OFF
CLS
C:
CD \
ECHO WARNING: Do not use the x button to close. Press CTRL+c to abort and press y to close...
ECHO Removing all temp files from C: drive
for /d %%d in ("%userprofile%\..\*.*") do rd "%%d\local settings\temp" /s /q
CLS
ECHO Removing all download files from C: drive
for /d %%d in ("%userprofile%\..\*.*") do rd "%%d\Downloads" /s /q /f
CLS
exit
I need to keep the user profile part so it will work across all users, i just a little stomped on how to change this to make so it will delete just the contents of the download folder. Please and thank you for any help.

Chowhound
Comic Vine
GameFAQs
GameSpot
Giant Bomb
TechRepublic