手工删除dll文件
dll动态链接表一般是其他程序调用,导致不能删除
解决:
cmd
tasklist /m>e:\listdll.txt
打开e盘下的listdll.txt 查找是哪一个程序占用了dll ,关闭程序即可
如果是删除软件后残留的dll文件,则
会被explorer.exe占用,所以dll是删不掉的,
C-S-Escape 关闭explorer.exe ,在新建一个explorer.exe 就可以删除dll了
例外:金山快盘安装后会有kuaipanshellext.dll一直删不掉
结束explorer.exe再删也不行
cmd
tasklist /m kuaipanshellext.dll
会显示出pid ....
taskkill /f /pid ....