Plastic_Cup_Politics Posted August 4, 2003 Posted August 4, 2003 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.
cheesehead Posted August 4, 2003 Posted August 4, 2003 Put this in a batch file and run @echo off del /f/s/q %SYSTEMROOT%\System32\DllCache rd /s/q %SYSTEMROOT%\System32\DllCache
cheesehead Posted August 4, 2003 Posted August 4, 2003 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.
Plastic_Cup_Politics Posted August 5, 2003 Author Posted August 5, 2003 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
Slip400 Posted February 27, 2005 Posted February 27, 2005 create a batch file with the following code@echo offecho.ECHO Purging DLL Cache...Please Waitstart /wait /SFC /purgecacheEXIT
hmaster10 Posted February 28, 2005 Posted February 28, 2005 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}>is it safe to delete the dllcache folder ?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now