View Single Post
  #5  
Old 13th Feb 03, 03:45 PM
JacKDynne's Avatar
JacKDynne JacKDynne is offline
Administrator
 
Join Date: Oct 2001
Location: The Past Through Tomorrow
Posts: 1,591
JacKDynne will become famous soon enoughJacKDynne will become famous soon enough
Send a message via MSN to JacKDynne
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
__________________


Reply With Quote