notepad++

设置

右键菜单

bash 复制代码
::===========================================================================
:: bdrun_admin.cmd version 0.0.1
::---------------------------------------------------------------------------
:: enable/disable notepad++ context menu
:: 
:: Copyright (c) 2016-2018 Anon Technologies, Inc. All rights reserved.
::===========================================================================
:: when        who     what, where, why
:: ---------   ---     ------------------------------------------------------
:: 2023-9-15   bob     enable context menu by regedit
::===========================================================================

@echo off
chcp 65001

cd /d %~dp0

title Notepad++ 石键菜单添加/删除工具
SetLocal EnableDelayedExpansion

echo 1.添加 Notepad++ 右键菜单
echo --------------------------
echo 2.删除 Notepad++ 右键菜单
echo --------------------------

Set /p u=请输入数字并按 Enter 确定:

If "%u%"=="1" call :reg_npp_ctx_menu
If "%u%"=="2" call :unreg_npp_ctx_menu

goto :eof

:reg_npp_ctx_menu
    echo enable context menu for %cd%\notepad++.exe
    reg add "HKEY_CLASSES_ROOT\*\shell\Notepad++" /t REG_SZ /v "" /d "Edit with &Notepad++" /f
    reg add "HKEY_CLASSES_ROOT\*\shell\Notepad++" /t REG_EXPAND_SZ /v "Icon" /d "%cd%\notepad++.exe,0" /f
    reg add "HKEY_CLASSES_ROOT\*\shell\Notepad++\command" /t REG_SZ /v "" /d "%cd%\notepad++.exe ""%%1""" /f
    pause
goto :eof

:unreg_npp_ctx_menu
    echo disable context menu for %cd%\notepad++.exe
    reg delete "HKEY_CLASSES_ROOT\*\shell\Notepad++" /f
    pause
goto :eof
相关推荐
心无旁骛~12 小时前
【Claude Code开发】AI记账助手(miaozhang)微信小程序开发与部署完整指南
人工智能·微信小程序·notepad++
阿珊和她的猫15 小时前
微信小程序静默授权异步问题的处理方案
微信小程序·状态模式·notepad++
mon_star°3 天前
基于微信小程序原生框架搭建的转盘小程序1.0(附源码)
微信小程序·小程序·notepad++
粤M温同学5 天前
Notepad++ 在当前文件中查找窗口不见了解决方案
notepad++
杰克尼6 天前
苍穹外卖--day08
java·数据库·spring boot·mybatis·notepad++
杰克尼7 天前
苍穹外卖--day10
java·数据库·spring boot·mybatis·notepad++
Molesidy7 天前
【随笔】在Notepad官网的Notepad++安装
notepad++
杰克尼10 天前
苍穹外卖--day11
java·数据库·spring boot·mybatis·notepad++
前端 贾公子11 天前
uniapp -- 暗黑模式
notepad++
Kang.lee1 个月前
2026.2.24Notepad++高效排版技巧
notepad++