win7桌面快捷方式箭头的去除与恢复的方法
发布时间:2016-12-27 来源:查字典编辑
摘要:win7桌面快捷方式箭头的去除与恢复regadd"HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCur...
win7桌面快捷方式箭头的去除与恢复
reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,196" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
首先将以上的代码复制并保存以quchu.bat格式
然后以管理员的身份运行就可以去除快捷方式的箭头了。
reg delete "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
首先将以上的代码复制并保存以huifu.bat格式
然后以管理员的身份运行就可以恢复快捷方式的箭头了。