1、去除小箭头
@echo off
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
2、恢复
taskkill /f /im explorer.exe
reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /v 29 /d “C:\Windows\system32\imageres.dll,154” /t reg_sz /f
reg add “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /v 29 /d “C:\Windows\system32\imageres.dll,154” /t reg_sz /f
reg add “HKEY_CLASSES_ROOT\lnkfile” /v IsShortcut /t reg_sz /f
reg add “HEKY_CLASSES_ROOT\piffile” /v IsShortcut /t reg_sz /f
start explorer
注:原理是修改注册表里面的参数,去除之后,有些快捷方式点开提示:该文件没有与之关联的应用来执行该操作
所以,我用了下面的方式恢复回来
保存到txt文档,修改为bat类型,执行
windows 10桌面快捷方式小箭头
最新推荐文章于 2025-04-30 13:14:20 发布
本文介绍了一种通过修改注册表参数去除Windows系统中快捷方式图标上的小箭头的方法,并提供了恢复原状的步骤。保存提供的批处理命令到txt文档并更改为bat类型即可执行。
387





