解决win10 清理桌面图标小箭头后任务栏固定程序点击无关联

将一下代码复制后保存为.bat文件后,管理员模式运行,即可解决

taskkill /f /im explorer.exe
reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "C:Windowssystem32imageres.dll,154" /t reg_sz /f
reg add "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "C:Windowssystem32imageres.dll,154" /t reg_sz /f
reg add "HKEY_CLASSES_ROOTlnkfile" /v IsShortcut /t reg_sz /f
reg add "HEKY_CLASSES_ROOTpiffile" /v IsShortcut /t reg_sz /f
start explorer

原文地址:https://www.cnblogs.com/ForestDeer/p/13644389.html