@echo off :main cls mode con cols=31 lines=10 title  LiveREX  echo. echo.  echo.  echo.  1) È­»ìÇ¥ Á¦°Å  echo.  echo.  echo.  2) È­»ìÇ¥ º¹±¸  echo.  echo.  echo. set menu= set /p menu=¹øÈ£¸¦ ¼±ÅÃÇØÁÖ¼¼¿ä : if "%menu%" == "1" goto remove if "%menu%" == "2" goto recover goto main :remove reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d %windir%\System32\imageres.dll,196 /f taskkill /f /im explorer.exe start %Windir%\explorer.exe goto exit :recover echo y|reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /f taskkill /f /im explorer.exe start %Windir%\explorer.exe goto exit :exit exit