윈도우 7 바로가기 아이콘 화살표 제거 및 복원 정보 바구니
2009.11.24 03:11 Edit
화살표 제거 cmd 명령어
@echo off
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d %windor%\System32\shell32.dll,50 /f
reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v "Shell Icon Size" /d 33 /f
taskkill /f /im explorer.exe
start explorer.exe
reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v "Shell Icon Size" /d 32 /f
taskkill /f /im explorer.exe
start explorer.exe
exit
화살표 제거에 대한 복원 cmd 명령어
@echo off
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /f
taskkill /f /im explorer.exe
start explorer.exe
exit


