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
相关推荐
learning_tom18 小时前
微信小程序功能 表单密码强度验证
notepad++
meng半颗糖4 天前
uniapp 基础(三)
前端·uniapp·notepad++·uniapp基础
learning_tom7 天前
微信小程序中进行参数传递的方法
notepad++
冥王 • 雷利10 天前
Notepad++插件安装
notepad++
韩召华11 天前
uniapp实现微信小程序导航功能
微信小程序·uni-app·notepad++
learning_tom11 天前
微信小程序中实现页面跳转的方法
notepad++
白日依山尽yy12 天前
前段面试题新版
notepad++
超级土豆粉12 天前
Taro 网络请求相关 API 全面解析
网络·notepad++·taro
半生过往14 天前
微信小程序文件下载与预览功能实现详解
微信小程序·小程序·notepad++·压缩包下载解压
bestsun99917 天前
Notepad++工具操作技巧
测试工具·notepad++