为什么我无法去除桌面上的快捷键的小箭头

来源:百度知道 编辑:UC知道 时间:2024/07/16 16:20:07
我以前用的是这个 reg

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\lnkfile]
@="快捷方式"
"EditFlags"=dword:00000001
"NeverShowExt"=""

[HKEY_CLASSES_ROOT\lnkfile\CLSID]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\lnkfile\shellex]

[HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers]

[HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\Offline Files]
@="{750fdf0e-2a26-11d1-a3ea-080036587f03}"

[HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\{00021401-0000-0000-C000-000000000046}]

[HKEY_CLASSES_ROOT\lnkfile\shellex\DropHandler]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\lnkfile\shellex\IconHandler]
@="{00021401-0000-0000-C000-000000000046}"

如果你想除去快捷方式上的小箭头.你可以试试这样.
”运行”中键入”regedit”.打开注册表.
按F3查找.键入”isshortcut”.找到的全部删除.然后回到桌面刷新就发现小箭头没有了.如果不行.下次重启后也会没有的.

用超级兔子软件可以解决相关问题。你需要的功能在优化选项里都有。
http://nj.onlinedown.net/soft/2636.htm

把以下程序分别输入到开始-运行中

1、

cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f

2、

cmd /k reg delete "HKEY_CLASSES_ROOT\piffile" /v IsShortcut /f

3、

cmd /k taskkill /f /im explorer.exe & explorer.exe

或者保存下面文本为.reg格式,双击导入

REGEDIT4
;删除快捷方式的箭头
[HKEY_CLASSES_ROOT\lnkfile]
"IsShortcut"=-

[HKEY_CLASSES_ROOT\piffile]
"IsShortcut"=-