win11去除桌面快捷方式小箭头
桌面创建一个去除桌面快捷方式小箭头.bat
的文件
记事本打开输入:
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
以管理员身份运行
标签:iconcache,桌面,explorer,AppData,win11,快捷方式,Local From: https://www.cnblogs.com/Arborblog/p/18414803