发布网友
共4个回答
热心网友
假设要删除C:Documents and Settings<用户名>Local SettingsHistory这个文件夹下的文件
在开始-运行,输入cmd,打开cmd命令框,输入如下命令:
DEL/Q/S "C:Documents and Settings<用户名>Local SettingsHistory
DEL/Q "C:Documents and Settings<用户名>Cookies
DEL/Q/S "C:Documents and Settings<用户名>Local SettingsTemporary Internet Files"
或者可以用这个命令行,清除ie缓存和ie加载项命令:
cmd /c del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" & del /f /s /q "%userprofile%\Local Settings\Temp\*.*" & reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Ext /f & reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects" /f
热心网友
在批处理文件中加入如下命令行:
DEL/Q/S "C:Documents and Settings<用户名>Local SettingsHistory
DEL/Q "C:Documents and Settings<用户名>Cookies
DEL/Q/S "C:Documents and Settings<用户名>Local SettingsTemporary Internet Files"
其他一些临时文件夹也可以同理进行清理
参考资料:DEL命令的参数啊。其中参数/Q表示使用安静模式,即删除全局通配符时,不要求确认;参数/S表示从所有子目录删除文件。
热心网友
请教下Q/S是什么意思?
热心网友
有上网助手啊