您现在的位置是:首页> 操作系统> Windows

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

  • 3000人已阅读
  • 时间:2020-05-02 09:55:24
  • 分类:Windows
  • 作者:祥哥

开始:运行输入

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


Top