win7右键计算机死机,win7右键文件死机,win7电脑右键一直转圈

在win7系统中经常会对文件选择右键菜单进行操作,而小编今天在右击文件选择打开方式的时候发现这样一个问题,就是右键菜单中出现了两个记事本的情况,这让小编很不解,后面网上查找了一下,其实这是很正常的一件事,那么如果不喜欢的话我们可以让它只剩下一个记事本,下面给大家带来彻底解决win7系统右键选择打开方式中出现两个记事本选项的步骤如下!

推荐:

win7纯净版系统下载

865b4552f3ff5dcf307190dff6c298b0.png

原因分析:

因为在我们系统windows文件夹(C:\Windows)和system32文件夹(C:\Windows\System32)下面各有一个notepad.exe程序,系统在注册应用程序和文件关联打开方式的时候,分别使用了它们,但是打开方式又要读取这两个地方,所以就出现两个记事本了。

解决方法:

1、网站查找的方法:

首先创建批处理,用来处理这个问题,把里面的代码复制粘贴到文本文件,保存为后缀。bat的文件,执行就可以了。[emailprotected] 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 /f2、经小编测试,再加上翻阅资料,上述源码有误,应该是:

[emailprotected] 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

3、然后就可以解决win7系统右键选择打开方式中出现两个记事本选项了。

f6027df17611613e502789ea843d2167.png

命令简单介绍:

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

这句话是设置一个变量: Npath="%systemroot%\notepad.exe %"1,这个变量将写入注册表。

c8646a7e74b57e7eda3b7cf9b74c9c42.png

%1 表示参数

比如你想打开1.txt,就是用 命令:notepad 1.txt搞定。

这个方法算是解决了txt后缀文件打开方式出现两个文件夹的问题。

总结:

我们在设置txt后缀打开类型的时候,

设置了HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\open\command=%systemroot%\notepad.exe

这就导致text类型直接映射到c:\Windows\notepad.exe

这时候包括ini文件inf文件在内的所有PerceivedType=text的文件类型映射到了c:\Windows\notepad.exe。

ini,inf文件的打开类型已经映射到了c:\Windows\System32\notepad.exe

这时候就会右键打开---出现两个记事本选项。。

解决的根本之道就是,将HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\open\command=%systemroot%\System32\notepad.exe

请使用命令:

@echo off

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

最后我们看看所谓的ini文件:

f7357732bdc648cc6eb7292b77312e0d.png 好了,以上给大家介绍的就是彻底解决win7系统右键选择打开方式中出现两个记事本选项的方法,大家可以尝试上面的方法进行解决就可以了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值