1. 程式人生 > >新增win7目錄下右鍵選單

新增win7目錄下右鍵選單

1、通過在“執行”中輸入‘regedit’,開啟登錄檔。

2、找到[HKEY_CLASSES_ROOT\Directory\shell]

3、在[Directory]下如果沒有[shell],則右鍵-新建項[shell]

4、在[shell]下新建項,命名QAAT-Check 

5、在[QAAT-Check]下新建項,命名command,右邊雙擊填入"c:\QAAT\Run-QAAT-ProGuard.bat"  "%l"

再在目前下右鍵可以看到 QAAT-Check 選單

也可以使用一下腳步實現

@echo off  echo Windows Registry Editor Version 5.00>>temp.reg echo.>>temp.reg  echo [HKEY_CLASSES_ROOT\Directory\shell\bat]>>temp.reg echo @="QAAT-Check">>temp.reg echo.>>temp.reg echo [HKEY_CLASSES_ROOT\Directory\shell\bat\command]>>temp.reg echo @="c:\\QAAT\\Run-QAAT-ProGuard.bat \"%%l\"" >> temp.reg echo.>>temp.reg  echo [HKEY_CLASSES_ROOT\*\shell\bat]>>temp.reg echo @="QAAT-Check">>temp.reg echo.>>temp.reg echo [HKEY_CLASSES_ROOT\*\shell\bat\command]>>temp.reg echo @="c:\\QAAT\\Run-QAAT-ProGuard.bat \"%%l\"" >> temp.reg

@echo on echo register QAAT

@echo off c:\windows\regedit -s temp.reg