在Win7系統中右鍵選擇程序打開方式的時候,發現有2個記事本選項,選擇哪個效果都一樣,但之前都只有一個記事本選項的,那麼要如何將多余的記事本選項刪除呢?下面小編給大家介紹Win7右鍵“打開方式”出現兩個記事本的原因及解決方法.
原因分析:
因為在我們系統windows文件夾(C:\Windows)和system32文件夾(C:\Windows\System32)下面各有一個notepad.exe程序,系統在注冊應用程序和文件關聯打開方式的時候,分別使用了它們,但是打開方式又要讀取這兩個地方,所以就出現兩個記事本了。
解決方法:
1、首先創建批處理,用來處理這個問題,把裡面的代碼復制粘貼到文本文件,保存為後綴.bat的文件,執行就可以了。
@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、然後就可以解決右鍵選擇打開方式中出現兩個記事本選項了。
命令簡單介紹:
if exist “%systemroot%\notepad.exe” set Npath=“%systemroot%\notepad.exe %”1 上一頁12下一頁共2頁