Win7笔记本右键菜单中有两个记事本选项怎样将多余的删除

2024-11-14 04:41:18
推荐回答(1个)
回答(1):

解决步骤:

1、打开记事本,复制以下代码进去:

@echo off

if exist “%systemroot%\notepad.exe” set Npath=“%systemroot%\notepad.exe %”1

if not exist “%systemroot%\notepad.exe” set Npath=“%systemroot%\system32\notepad.exe %”1

reg add “HKCR\txtfile\shell\open\command” /ve /d %Npath% /t REG_SZ /f

reg add “HKCR\Applications\notepad.exe\shell\open\command” /ve /d %Npath% /t REG_SZ /f

reg add “HKCR\SystemFileAssociations\text\shell\open\command” /ve /d %Npath% /t REG_SZ /f

2、然后另存为 记事本.bat 保存时记得将文件类型选择为“所有文件”。

3、双击运行记事本.bat ,就会只剩下一个“记事本“了

以上命令其实是以批处理的方式来修改注册表键值达到修复的效果!