윈도우에서 프로세스 kill 사용법(taskkill.exe)
2014년 9월 11일 목요일
explorer를 죽이고 explorer가 물고있는 db파일을 삭제하는 배치파일
@echo off
taskkill /f /im explorer.exe
attrib "%userprofile%appdatalocaliconcache.db" -s -r -h
del /q "%userprofile%appdatalocaliconcache.db"
start explorer.exe
exit