바탕화면이 사라지거나 아이콘이 안보일때

2017. 9. 25. 22:59보안 & 해킹/IT 꿀팁

이상하게 잘 안보일 경우에 taskkill 로 explorer.exe를 죽이고 다시 시작하면 문제없이 볼 수 있다.



아래는 bat파일 명령어

@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