每当我启动 Windows7 时,桌面上和 Windows 的任何文件夹目录中都没有显示任何图标。
只显示文件夹和文件的名称。任务栏中也没有图标,看起来是空白的。
有人能帮我解决这个问题吗?
笔记:
运行该 .bat 文件后,它对我来说不起作用,这些是我认为您可以很好地理解的快照。请看一下。
1.启动时:http://www.sendspace.com/file/ea823h
2.文件夹目录:http://www.sendspace.com/file/pa68be
.运行.bat 文件后http://www.sendspace.com/file/vgr6f1
并且还发生了一件事,在 Windows 启动时,一些 SQL 命令会自动运行。请参见链接 1。
答案1
我有这个.bat
脚本修复图标缓存问题,希望它能够像过去帮助我一样帮助到你。
@echo off
set iconcache=%localappdata%\IconCache.db
echo The Explorer process must be killed to delete the Icon DB.
echo.
echo Please SAVE ALL OPEN WORK before continuing.
echo.
pause
echo.
If exist "%iconcache%" goto delID
echo.
echo Icon DB has already been deleted.
echo.
pause
exit /B
:delID
echo Attempting to delete Icon DB...
echo.
ie4uinit.exe -ClearIconCache
taskkill /IM explorer.exe /F
del "%iconcache%" /A
echo.
echo Icon DB has been successfully deleted. Please "restart your PC" now to rebuild your icon cache.
echo.
start explorer.exe
pause
exit /B
将其粘贴到文本编辑器中并保存为filename.bat
。以管理员权限运行它。