解决电脑软件桌面图标都一样,打开不是相应软件

解决方法:

这个问题的实质是.lnk的打开方式变成了媒体播放器。如果不考虑木马造成,可以这样修复:

一:打开记事本,将如下代码复制粘贴到记事本中后保存为abc.reg,然后双击abc.reg


Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT.lnk]
[-HKEY_CLASSES_ROOTlnkfile]
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.lnk]
[HKEY_CLASSES_ROOT.lnk]
@="lnkfile"
[HKEY_CLASSES_ROOT.lnkShellNew]
"Command"="rundll32.exe appwiz.cpl,NewLinkHere %1"
[HKEY_CLASSES_ROOTlnkfile]
@="快捷方式"
"EditFlags"=dword:00000001
"NeverShowExt"=""
"IsShortcut"=""
[HKEY_CLASSES_ROOTlnkfileCLSID]
@="{00021401-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOTlnkfileshellex]
[HKEY_CLASSES_ROOTlnkfileshellexContextMenuHandlers]
[HKEY_CLASSES_ROOTlnkfileshellexContextMenuHandlersOffline Files]
@="{750fdf0e-2a26-11d1-a3ea-080036587f03}"
[HKEY_CLASSES_ROOTlnkfileshellexContextMenuHandlers{00021401-0000-0000-C000-000000000046}]
[HKEY_CLASSES_ROOTlnkfileshellexDropHandler]
@="{00021401-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOTlnkfileshellexIconHandler]
@="{00021401-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOTlnkfileshellexPropertySheetHandlers]
[HKEY_CLASSES_ROOTlnkfileshellexPropertySheetHandlersShimLayer Property Page]
@="{513D916F-2A8E-4F51-AEAB-0CBC76FB1AF8}"

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.lnk]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.lnkOpenWithList]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.lnkOpenWithProgids]
"lnkfile"=hex(0):

[HKEY_LOCAL_MACHINESOFTWAREClasses.lnk]
@="lnkfile"
[HKEY_LOCAL_MACHINESOFTWAREClasses.lnkShellNew]
"Command"="rundll32.exe appwiz.cpl,NewLinkHere %1"

二:按Ctrl+Shiift+Esc键,在出现的进程窗口中结束Explorer.exe进程,然后再新建Explorer.exe进程

原文地址:https://www.cnblogs.com/zoulongbin/p/5799024.html