軟體綠化之登錄檔右鍵選單

2022-04-05 07:57:11 字數 2605 閱讀 4839

軟體綠化之登錄檔右鍵選單

在綠化unlocker 1.9.1時,在綠化後,發現系統右鍵選單沒有了,於是研究了一番登錄檔。才發現,其實給系統新增右鍵選單其實很簡單。

右鍵選單一

在所有檔案上新增右鍵選單

hkey_classes_root\*\shell\程式名稱\command  在所有檔案的右鍵都新增選單例如 

reg add "hkey_classes_root\*\shell\unlocker 1.9.1\command" /ve   /d "\"%cd%\unlocker.exe\" %%0 " /f   在所有檔案的右鍵都新增unlocker 選單,

reg add "hkey_classes_root\*\shell\notepad++\command" /ve   /d "\"%cd%\notepad++.exe\" %%0 " /f   在所有檔案的右鍵都新增notepad++選單

在所有資料夾上上新增右鍵選單

hkey_classes_root\directory\\shell\程式名稱\command  在所有檔案的右鍵都新增選單

例如reg add "hkey_classes_root\directory\shell\unlocker 1.9.1\command" /ve   /d "\"%cd%\unlocker.exe\" %%v " /f

在所有驅動器上上新增右鍵選單

hkey_classes_root\drive\\shell\程式名稱\command  在所有檔案的右鍵都新增選單 例如

reg add "hkey_classes_root\directory\shell\unlocker 1.9.1\command" /ve   /d "\"%cd%\unlocker.exe\" %%v " /f  

雖然資料夾和directory和驅動器drive對我們來說都是一樣的,但在此處還是有點不一起樣,如果不在  hkey_classes_root\drive\\shell\上新增在驅動器碟符上的右鍵就沒有右鍵選單,這也是自己一點點試驗出來的。

其實還有乙個  hkey_classes_root\fold\shell\不指導是幹什麼用的。

unlocker 1.9.1綠化的bat檔案

[plain] 

regsvr32 /s unlockercom.dll  

reg add "hklm\software\microsoft\windows\currentversion\uninstall\unlocker" /v language /t reg_sz /d "2052" /f>nul  

cd /d %~dp0  

reg add "hkey_classes_root\*\shell\unlocker 1.9.1\command" /ve   /d "\"%cd%\unlocker.exe\" %%0 " /f  

reg add "hkey_classes_root\directory\shell\unlocker 1.9.1\command" /ve   /d "\"%cd%\unlocker.exe\" %%v " /f  

reg add "hkey_classes_root\drive\shell\unlocker 1.9.1\command" /ve   /d "\"%cd%\unlocker.exe\" %%v " /f  

右鍵選單二

在處理好壓時,發現還有一種右鍵選單

bat檔案為,至於有什麼不一樣,自己目前還沒有研究明白

[plain] 

regsvr32 haozipext.dll  

reg add "hkey_local_machine\software\classes\*\shellex\contextmenuhandlers\haozip" /ve   /d ""  /f  

reg add "hkey_local_machine\software\classes\*\shellex\dragdrophandlers\haozip" /ve   /d ""  /f  

reg add "hkey_local_machine\software\classes\*\shellex\propertysheethandlers\haozip" /ve   /d ""  /f  

reg add "hkey_local_machine\software\classes\directory\shellex\contextmenuhandlers\haozip" /ve   /d ""  /f  

reg add "hkey_local_machine\software\classes\directory\shellex\dragdrophandlers\haozip" /ve   /d ""  /f  

reg add "hkey_local_machine\software\classes\folder\shellex\contextmenuhandlers\haozip" /ve   /d ""  /f  

reg add "hkey_local_machine\software\classes\folder\shellex\dragdrophandlers\haozip" /ve   /d ""  /f  

仔細觀察就會發現新增右鍵選單檔案和資料夾的引數不一樣乙個是%0表示傳遞的是檔名稱,乙個是%v,表示傳遞的是資料夾的名稱,如何把%v 寫為%0意思就完全不一樣了。

利用登錄檔清理右鍵選單

隨著安裝的軟體日益增多,以 快捷 自居的右鍵選單會變得臃腫不堪。別急,以下就為你的右鍵選單 減減負 第一招 清理右鍵 新建 選單 由於不斷地安裝新的應用程式,滑鼠右鍵快捷選單的中的 新建 選單下的命令選項會越來越多,有時甚至需要花費一點時間去等待它們顯示完全。但實際上除了新建資料夾 txt文件等常用...

登錄檔和滑鼠右鍵選單

登錄檔修改滑鼠右鍵選單一般執行regedit到hkey classes root shell這個下面找 1 滑鼠右鍵桌面空白處,新建選單中的專案在登錄檔中的位置 hkey current user software microsoft windows currentversion explorer ...

用登錄檔修改右鍵選單

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!一 開始,執行裡面輸入 regsvr32 u igfxpph.dll 確定 ok了 注意 u兩邊各有乙個空格的,或者直接複製進去執行吧 二 清除滑鼠右鍵選單中多餘項的操作步驟如下 1 在系統桌面上單擊 開始 執行 項。2 在隨後出現的視窗中的 開啟...