民治第三工业区旧改:恢复硬盘盘符图标

来源:百度文库 编辑:偶看新闻 时间:2024/04/27 15:01:11
@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