TIPS/MicroSoft
윈도우 프로그램 아이콘 깨짐 현상 해결.
Alsmini
2014. 6. 3. 02:48
윈도우에서 프로그램실행은 문제 없으나 한글 2010 / 오피스 2010 등의 프로그램 아이콘이
시작 메뉴 및 작업표시 줄에 깨진 아이콘으로 나타날 때.
깨진 아이콘 캐쉬를 삭제 해 제대로 된 아이콘을 다시 나타내 주는 배치파일.
첨부 파일 실행하면, 아이콘 캐쉬를 삭제 후 다시 읽어오게 됨.
이때 익스플로러는 재시작 됨. (바탕화면 아이콘이 자동 재정렬됨)
파일 내용.
@echo off
taskkill /f /im explorer.exe
attrib %userprofile%\appdata\local\iconcache.db -s -r -h
del /q %userprofile%\appdata\local\iconcache.db
start explorer.exe
exit
taskkill /f /im explorer.exe
attrib %userprofile%\appdata\local\iconcache.db -s -r -h
del /q %userprofile%\appdata\local\iconcache.db
start explorer.exe
exit
악성코드 및 바이러스 문제 없음.