@echo off REM .-----------------------------. REM | Delete bitdefender's files | REM | and folders which pollute | REM | the windows temp directory. | REM |-----------------------------| REM | Folder names are all in the | REM | form of \tmp0000????\ | REM '-----------------------------' FOR /D %%a IN (%windir%\temp\tmp0000*) DO ( rmdir /s /q "%%a" )