Jump to content

bigkevgray

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

About bigkevgray

bigkevgray's Achievements

0

Reputation

  1. Hi, The command below should work. It will only work from a batch file (.cmd/.bat). It's all in one line. FOR /F "tokens=*" %%a in ('dir "%SYSTEMDRIVE%\DOCUMENTS AND SETTINGS" /ad/b/o') DO DEL "%SystemDrive%\DOCUMENTS AND SETTINGS\%%a\LOCAL SETTINGS\TEMPORARY INTERNET FILES\*.*" /S /Q The command does a DIR of the documents and settings directory then uses that to run a DEL command for each directory returned. Cheers, Kevin
×
×
  • Create New...