rem htc.bat rem Restore original .htc association rem Windows.FAQ http://winfaq.jp/ @echo off echo REGEDIT4 > %temp%\htc.reg echo. >> %temp%\htc.reg echo [HKEY_CLASSES_ROOT\.htc] >> %temp%\htc.reg echo "Content Type"="text/x-component" >> %temp%\htc.reg echo. >> %temp%\htc.reg echo [HKEY_CLASSES_ROOT\MIME\Database\Content Type\text/x-component] >> %temp%\htc.reg echo "CLSID"="{3050f4f8-98b5-11cf-bb82-00aa00bdce0b}" >> %temp%\htc.reg echo "Extension"=".htc" >> %temp%\htc.reg echo. >> %temp%\htc.reg echo [HKEY_CLASSES_ROOT\CLSID\{3050f4f8-98b5-11cf-bb82-00aa00bdce0b}] >> %temp%\htc.reg echo @="Microsoft Html Component" >> %temp%\htc.reg echo. >> %temp%\htc.reg echo [HKEY_CLASSES_ROOT\CLSID\{3050f4f8-98b5-11cf-bb82-00aa00bdce0b}\InProcServer32] >> %temp%\htc.reg echo @="%windir%\\SYSTEM\\MSHTML.DLL" >> %temp%\htc.reg echo "ThreadingModel"="Apartment" >> %temp%\htc.reg echo. >> %temp%\htc.reg echo [HKEY_LOCAL_MACHINE\SOFTWARE\CLASSES\.htc] >> %temp%\htc.reg echo "Content Type"="text/x-component" >> %temp%\htc.reg regedit /s %temp%\htc.reg del %temp%\htc.reg