@echo off cls echo *********************************************************** echo 此文件用于修复 bat com exe pif scr txt ini 文件关联 echo *********************************************************** echo. echo REGEDIT4>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\batfile\shell\open\command]>>Fix.reg echo @="\"%%1\" %%*">>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\comfile\shell\open\command]>>Fix.reg echo @="\"%%1\" %%*">>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\exefile\shell\open\command]>>Fix.reg echo @="\"%%1\" %%*">>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\piffile\shell\open\command]>>Fix.reg echo @="\"%%1\" %%*">>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\scrfile\shell\open\command]>>Fix.reg echo @="\"%%1\" /S">>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\txtfile\shell\open\command]>>Fix.reg echo @="NOTEPAD.EXE %%1">>Fix.reg echo.>>Fix.reg echo [HKEY_CLASSES_ROOT\inifile\shell\open\command]>>Fix.reg echo @="NOTEPAD.EXE %%1">>Fix.reg echo. pause start /w regedit /s Fix.reg del Fix.reg echo. echo **************** echo * 修复成功 * echo **************** echo. pause cls