怎么消除脸上的黑点:恢复硬盘盘符图标

来源:百度文库 编辑:中财网 时间:2024/05/08 03:21:14
@echo off
cls
echo 您的选择为:恢复硬盘盘符图标……
@echo off
for %%i in (c d e f g) do (
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\%%i" /f >nul 2>nul
dir /a-d /b %%i:\autorun.inf>nul&&(
attrib %%i:\autorun.inf -s -h -r
del /q %%i:\autorun.inf
)
)
attrib "%USERPROFILE%\Local Settings\Application Data\IconCache.db" -s -h -r
del /q "%USERPROFILE%\Local Settings\Application Data\IconCache.db"
taskkill /f /im explorer.exe&start "" "explorer.exe"
cls
exit