1趁猴、使用軟件清理
使用CCleaner 清理
2、自己編寫(xiě)腳本清理
推薦使用批處理命令
reg delete 子項(xiàng)名稱 /f
可以刪除全部子項(xiàng)彪见,其他命令見(jiàn)幫助儡司。
右鍵菜單整理
右鍵菜單可分為以下幾種:
文件 - 右鍵
有兩個(gè)地方:
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}
文件夾 - 右鍵
下面幾個(gè)地方
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}
文件夾右鍵 – 包含到庫(kù)中:
HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Library Location
文件夾右鍵 – 上傳到百度云:
HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\YunShellExt
文件夾 - 右鍵 - 使用MSE掃描病毒:
HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\EPP
桌面空白 - 右鍵
桌面空白 - 右鍵 - Intel圖形選項(xiàng)
HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxDTCM
桌面空白 - 右鍵 - Intel顯卡添加
HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxcui
批處理命令內(nèi)容
@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