美文网首页
隐藏桌面图标的快捷方式小箭头

隐藏桌面图标的快捷方式小箭头

作者: 张天择 | 来源:发表于2019-02-25 14:48 被阅读0次

新建一个TXT文件复制以下代码:

win7:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,196" /t reg_sz /f

taskkill /f /im explorer.exe

attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"

del "%userprofile%\AppData\Local\iconcache.db" /f /q

start explorer

win10:

@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

将文件另存为BAT格式。运行~~~~~~

最好使用管理员运行

相关文章

网友评论

      本文标题:隐藏桌面图标的快捷方式小箭头

      本文链接:https://www.haomeiwen.com/subject/tfgrpftx.html