在使用Win7系统的时候,点击鼠标右键的菜单中有两个记事本的选项,如下图:
操作步骤:
由于Win7系统Windows文件夹(C:\\Windows)和System32文件夹(C:\\Windows\\System32)下面各有一个notepad.exe程序,当在注册应用程序和文件关联打开方式的时候,分别使用了它们,但打开方式又要读取这两个地方,故出现两个记事本。
解决方法:
1、新建一个记事本,将里面的代码复制粘贴到文本文件。
@echo off
if exist “%systemroot%otepad.exe” set Npath=“%systemroot%otepad.exe %”1
if not exist “%systemroot%otepad.exe” set Npath=“%systemroot%\\system32otepad.exe %”1
reg add “HKCRxtfile\\shell\\open\\command” /ve /d %Npath% /t REG_SZ /f
reg add “HKCR\\Applicationsotepad.exe\\shell\\open\\command” /ve /d %Npath% /t REG_SZ /f
reg add “HKCR\\SystemFileAssociationsext\\shell\\open\\command” /ve /d %Npath% /t REG_SZ /f
2、另存为后缀.bat的文件,双击执行就可以了。
重要提示:bat文件修改系统可能会导致系统损坏,在执行以前建议您提前备份电脑中的数据至U盘或移动硬盘。