去掉桌面快捷图标的小箭头

admin 2022-12-16 115 12/16
cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe

或建个批处理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

 

- THE END -

admin

12月16日12:15

最后修改:2022年12月16日
0

非特殊说明,本博所有文章均为博主原创。

共有 1 条评论

  1. rtyun

    学习了 ?