win11删除快捷方式小箭头

前言

因为安装了火绒安全,所以没有360的人工服务中的删除快捷方式小箭头了,所以在网上重新找了代码。

教程

首先新建一个txt文本,然后将如下代码放进去,再另存为删除快捷方式小箭头.bat ,选择编码为Ansi,保存打开即可。

win10

reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
start explorer
pause

win11

reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause
THE END