谨慎消除桌面快捷方式的小箭头

原文 http://bbs.pcbeta.com/viewthread-1365497-1-1.html

安装8.1以后,如果按XP系统那样的方法(在注册表里删除InShortcut的子项)会造成开始按钮的右键和Win+X无法工作。如要删除箭头,可采用以下方法:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /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

pause

将以上代码另存为.bat格式,用管理员身份运行即可。
如需恢复箭头,代码如下:

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

pause

上一篇:封装CoreGraphics的API简化绘图操作


下一篇:重载操作符[]