博客日历
2024年12月 | ||||||
一 | 二 | 三 | 四 | 五 | 六 | 七 |
25 | 26 | 27 | 28 | 29 | 30 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
存档
2024年03月 04月 05月 2021年
01月 02月 11月 12月 2020年
02月 03月 04月 05月 06月 07月
09月 2018年
09月 2017年
01月 02月 07月 2016年
01月 04月 07月 08月 11月 12月
2015年
01月 02月 03月 05月 09月 10月
11月 2014年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2013年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2012年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2011年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2010年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2009年
03月 04月 05月 06月 07月 08月
09月 10月 11月 12月
去掉/恢复Win7/XP快捷方式小箭头
@echo off echo 1.去掉Win7快捷方式小箭头 echo 2.恢复Win7快捷方式小箭头 echo. echo 3.去掉 XP 快捷方式小箭头 echo 4.恢复 XP 快捷方式小箭头 echo. echo 0.退出 echo --------------------------- :select set /P select=请选择: if "%select%" == "0" goto end2 if not "%select%" == "1" ( if not "%select%" == "2" ( if not "%select%" == "3" ( if not "%select%" == "4" ( goto end1 ) ) ) ) ver | find "6.1" > NUL if "%errorlevel%" == "0" ( if "%select%" == "1" ( reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,196" /t reg_sz /f taskkill /f /im explorer.exe attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db" del "%userprofile%\AppData\Local\iconcache.db" /f /q start explorer ) if "%select%" == "2" ( reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f taskkill /f /im explorer.exe attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db" del "%userprofile%\AppData\Local\iconcache.db" /f /q start explorer ) ) ver | find "5.1" > NUL if "%errorlevel%" == "0" ( if "%select%" == "3" ( reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\shell32.dll,49" /t reg_sz /f taskkill /f /im explorer.exe attrib -s -r -h "%userprofile%\Local Settings\Application Data\iconcache.db" del "%userprofile%\Local Settings\Application Data\iconcache.db" /f /q start explorer ) if "%select%" == "4" ( reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f taskkill /f /im explorer.exe attrib -s -r -h "%userprofile%\Local Settings\Application Data\iconcache.db" del "%userprofile%\Local Settings\Application Data\iconcache.db" /f /q start explorer ) ) goto end2 ::-------------------------------- :end1 echo 您的选择无效。 echo. goto select :end2 pause
上一篇: 将Visual Studio 2013的图标修改为Visual Studio 2010风格
下一篇: 使用Visual Studio 2013编译QT5.2.0
分类:脚本编程 查看次数:4749 发布时间:2013/11/1 21:32:20