Win11 移除 还原 快捷方式图标
操作
新建bat文件,复制下面需要的代码,保存,右键文件,以管理员方式运行
var code = “9c5c9bbe-d782-4165-ad4d-2dd06cbe59ee”
移除快捷方式箭头
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
还原快捷方式箭头
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
taskkill /f /im explorer.exe
start explorer
pause

浙公网安备 33010602011771号