Grant.
Page 1 of 1
Deleting Files but not the root folder!
#1
Posted 03 August 2003 - 08:30 PM
I want to delete the DLLCACHE files inside, but I don't want to delete the folder. How can I do this in my batch command. Can anyone give me a bit of code for it please
Grant.
Grant.
#2
Posted 04 August 2003 - 03:30 PM
Put this in a batch file and run
@echo off
del /f/s/q %SYSTEMROOT%\System32\DllCache
rd /s/q %SYSTEMROOT%\System32\DllCache
@echo off
del /f/s/q %SYSTEMROOT%\System32\DllCache
rd /s/q %SYSTEMROOT%\System32\DllCache
#3
Posted 04 August 2003 - 03:32 PM
forget about the "rd /s/q %SYSTEMROOT%\System32\DllCache" part that would remove the directory even though it will be put back when windows needs it.
#4
Posted 04 August 2003 - 06:30 PM
Thank you. BTW It's a good tip to remove the files in DLLCACHE as for many obvious reasons, as well as it removes a hell of alot of space
#5
Posted 27 February 2005 - 05:58 PM
create a batch file with the following code
@echo off
echo.
ECHO Purging DLL Cache...Please Wait
start /wait /SFC /purgecache
EXIT
@echo off
echo.
ECHO Purging DLL Cache...Please Wait
start /wait /SFC /purgecache
EXIT
#6
Posted 28 February 2005 - 08:00 AM
Plastic_Cup_Politics, on Aug 4 2003, 06:30 PM, said:
Thank you. BTW It's a good tip to remove the files in DLLCACHE as for many obvious reasons, as well as it removes a hell of alot of space
<{POST_SNAPBACK}>
<{POST_SNAPBACK}>
is it safe to delete the dllcache folder ?
- ← Integrating Hotfixes ? Integrating .net And Jview?
- Unattended Windows 2000/XP/2003
- Runoncex.inf Runs Only If In Windows\inf →
Share this topic:
Page 1 of 1



Help
Back to top









