当前位置: 首页 - 编程技术 - 文章正文

去掉桌面图标的箭头

xiaoqihv

一、第一种方法是通过在“运行”里边输入应用程序来去除,首先用win+R键调出运行窗口。 1、 在运行窗口中输入:

cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe

2.点击确定。我们会发现桌面小箭头就已经去掉了。

二、第二种方法是通过批处理命令来去除

1.首先建立一个文本文档,在里边输入:

@echo offcolor 2reg delete HKCR\lnkfile /v IsShortcut /freg delete HKCR\piffile /v IsShortcut /freg delete HKCR\InternetShortcut /v IsShortcut /ftaskkill /f /im explorer.exe && explorer

2.修改新建文本的扩展名为bat,这样它就会变为系统的批处理命令,双击运行。我们发现桌面图标没有了。

文章地址:https://wenmayi.cn/post/847.html