Win7右键菜单中有两个记事本选项的原因与解决方法?
发布网友
发布时间:2022-04-22 17:36
我来回答
共1个回答
热心网友
时间:2023-10-23 08:42
一、原因分析:
由于Win7系统windows文件夹(C:\Windows)和system32文件夹(C:\Windows\System32)下面各有一个notepad.exe程序,当在注册应用程序和文件关联打开方式的时候,分别使用了它们,但打开方式又要读取这两个地方,故出现两个记事本。
二、解决方法:
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的文件,双击执行就可以了。
上面就是Win7右键菜单中有两个记事本选项的原因与解决措施介绍了,其实两个记事本选项并不影响用户的使用,也可不删除。