'Disable Compress Old Files 'This script will speed up the Disk Cleanup Wizard by removing the option 'compress old files. 'DisableCompressOld.vbs '© Robert Dunham - 2/14/2006 'Downloaded from http://www.nilpo.com On Error Resume Next Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.RegDelete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Compress old files\" Message = "Compress old files has been disabled." X = MsgBox(Message, vbOKOnly, "Done") Set WshShell = Nothing