1、使用软件清理
使用CCleaner 清理
2、自己编写脚本清理
推荐使用批处理命令
reg delete 子项名称 /f
可以删除全部子项,其他命令见帮助。
右键菜单整理
右键菜单可分为以下几种:
文件 - 右键
有两个地方:
HKEY_CLASSES_ROOT*\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers
文件 - 右键 - 上传到百度云:
HKEY_CLASSES_ROOT*\shellex\ContextMenuHandlers\YunShellExt
文件 - 右键 - 使用MSE扫描病毒:
HKEY_CLASSES_ROOT*\shellex\ContextMenuHandlers\EPP
文件 - 右键 - 还原到以前版本:
HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\PropertySheetHandlers{596AB062-B4D2-4215-9F74-E9109B0A8153}
文件夹 - 右键
下面几个地方
HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\Directory\shell
HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\Folder\shell
HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers
文件夹右键 – 还原到以前版本:
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers{596AB062-B4D2-4215-9F74-E9109B0A8153}
文件夹右键 – 包含到库中:
HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Library Location
文件夹右键 – 上传到百度云:
HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\YunShellExt
文件夹 - 右键 - 使用MSE扫描病毒:
HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\EPP
桌面空白 - 右键
桌面空白 - 右键 - Intel图形选项
HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxDTCM
桌面空白 - 右键 - Intel显卡添加
HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxcui
批处理命令内容
@Echo Off
reg delete "HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\YunShellExt" /f
reg delete "HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\Sharing" /f
reg delete "HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\EPP" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}" /f
reg delete "HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Library Location" /f
reg delete "HKEY_CLASSES_ROOT\.lnk\ShellNew" /f
reg delete "HKEY_CLASSES_ROOT\.contact\ShellNew" /f
reg delete "HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxDTCM" /f
reg delete "HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxcui" /f
reg delete "HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\EPP" /f
reg delete "HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\YunShellExt" /f
reg delete "HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\QQShellExt" /f
reg delete "HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}" /f
Pause>Nul