將VScode新增至右鍵選單

2021-10-01 20:40:59 字數 1187 閱讀 8772

首先展示下最終效果:

右擊單個檔案:

右擊資料夾:

操作流程:

1.右擊vscode快捷方式檢視屬性,找到快捷方式對應的目標路徑

2.隨便找個地方新建個***.reg的登錄檔指令碼檔案,檔案名叫啥都可以,但字尾名必須為.reg,然後在裡面貼上上下面的**

windows registry editor version 5.00

[hkey_classes_root\*\shell\vscode] ;右擊檔案時彈出的選單

@="edit with visual studio code" ;顯示的文字

"icon"="d:\\microsoft vs code\\code.exe" ;顯示的圖示

[hkey_classes_root\*\shell\vscode\command] ;要執行的命令

@="\"d:\\microsoft vs code\\code.exe\" \"%1\"" ;具體的命令**,%1代表第乙個引數,即右擊選中的那個檔案的路徑

windows registry editor version 5.00

[hkey_classes_root\directory\shell\vscode] ;右擊資料夾時彈出的選單

@="open with visual studio code"

"icon"="d:\\microsoft vs code\\code.exe"

[hkey_classes_root\directory\shell\vscode\command]

@="\"d:\\microsoft vs code\\code.exe\" \"%v\"" ;%v意思同%1,只不過在路徑為空時替換為當前工作路徑

貼上完成後再將**裡的code.exe路徑替換為前面我們在屬性裡看的那個code.exe路徑,注意" \ 「要轉換為」 \\ "

3.儲存檔案,雙擊執行,一路選是,完成

新增Notepad 至右鍵選單

使用官方安裝包中的nppshell 06.dll notepad 官方提供了乙個 dll 檔案用於註冊以及解除安裝右鍵選單。如果你使用的是安裝版,那麼在程式目錄下應該會有乙個nppshell 06.dll檔案 不同版本下檔名中的數字可能會不同 regsvr32 i nppshell 06.dll 執...

Windows為VSCode新增右鍵選單

在本地建立乙個.reg字尾的檔案,檔名test 可自定義 建立好檔案後將其拖到任意一款編輯器當中,新增其內容 windows registry editor version 5.00 hkey classes root directory background shell vscode open v...

將vscode設定到右鍵選單中

由於安裝的時候沒有設定好,導致不能用右鍵快速開啟vscode 在網上查到了以下方法 1.新建檔案,拷貝 進去 是注釋 windows registry editor version 5.00 open files hkey classes root shell open with vs code e...