windows 10桌面快捷方式小箭头

1、去除小箭头
@echo off
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
2、恢复
taskkill /f /im explorer.exe
reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /v 29 /d “C:\Windows\system32\imageres.dll,154” /t reg_sz /f
reg add “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /v 29 /d “C:\Windows\system32\imageres.dll,154” /t reg_sz /f
reg add “HKEY_CLASSES_ROOT\lnkfile” /v IsShortcut /t reg_sz /f
reg add “HEKY_CLASSES_ROOT\piffile” /v IsShortcut /t reg_sz /f
start explorer
注:原理是修改注册表里面的参数,去除之后,有些快捷方式点开提示:该文件没有与之关联的应用来执行该操作
所以,我用了下面的方式恢复回来
保存到txt文档,修改为bat类型,执行

你可能感兴趣的:(电脑配置问题)