delete files in directory rather than the whole directory (#56)
This commit is contained in:
parent
d30701209f
commit
31f135bba8
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ DEL /S /F /Q %LOCALAPPDATA%\Temp\* 2>NUL
|
|||
RMDIR /S /Q "%TEMP%" 2>NUL
|
||||
|
||||
:: Empty the system's temp folder
|
||||
ECHO Delete files in %WINDIR%\Temp...
|
||||
RMDIR /S /Q "%WINDIR%\Temp" 2>NUL
|
||||
ECHO Delete files in %WINDIR%\temp...
|
||||
DEL /S /F /Q %WINDIR%\temp\* 2>NUL
|
||||
|
||||
:: Empty the Prefetch folder
|
||||
ECHO Delete files in %WINDIR%\Prefetch...
|
||||
|
|
Loading…
Reference in a new issue