No problemo m8

Hope it helps, batch files can be really useful, I have one that clears all user's temp internet files on logon and logoff:
SET SRC1=C:\Documents and Settings
SET SRC2=Local Settings\Temporary Internet Files\Content.IE5
FOR /D %%X IN ("%SRC1%\*") DO FOR /D %%Y IN ("%%X\%SRC2%\*.*") DO RMDIR /S /Q "%%Y"
I use it on terminal servers where space needs to be conserved (just changed the drive letter)
Works like a charm
/JD