Win10 软件应用的快捷方式小箭头添加与消除方法

Win10 软件应用的快捷方式小箭头添加与消除

添加小箭头方法

  • 新建文本文档

  • 输入代码

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
  • 修改文件后缀名为.bat

  • 以管理员身份运行即可

消除小箭头方法

  • 新建文本文档

  • 输入代码

@echo off

color 2

reg delete HKCR\lnkfile /v IsShortcut /f

reg delete HKCR\piffile /v IsShortcut /f

reg delete HKCR\InternetShortcut /v IsShortcut /f

taskkill /f /im explorer.exe && explorer
  • 修改文件后缀名为.bat

  • 以管理员身份运行即可

参考

posted @ 2021-11-16 17:32  Sunny_SunShine  阅读(234)  评论(0编辑  收藏  举报