解决步骤:
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 ,就会只剩下一个“记事本“了
以上命令其实是以批处理的方式来修改注册表键值达到修复的效果!