2、单击窗口右侧“选项”,看到下面的隐私选项卡。
3、把“在快速访问中显示最近使用的文件”和“在快速访问中显示常用文件夹”的选项去掉。——点击“清除” ——点击“应用”——点击“确定”保存。就完成了。
一、原因分析:由于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右键菜单中有两个记事本选项的原因与解决措施介绍了,其实两个记事本选项并不影响用户的使用,也可不删除。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)