100%
阅读:1980回复:0
.lnk文件的关联的解决方式
很多时候,病毒修改了.lnk文件的关联来指向自己。杀毒后,容易出现lnk文件关联错误。怎么修复呢?
小提示:lnk文件就是快捷方式。 简单说明: 我看到SReng 2.7里面有个修复的选项,就研究了下SReng 2.7 ,发现他修复.lnk文件关联的方式有问题,到网上搜索,发现上面说的用文件夹选项麻烦且没有效果。 还是用注册表的方法最好。所以就自己写了下面的代码。 使用方法: 新建一个文本文档,复制下面的代码后,粘贴进去并保存为fixlnk.reg,双击fixlnk.reg。 弹出确认窗口,点击『是』就可以了。 修复就成功了,不过需要重新启动explorer.exe,快捷方式图标才能正常显示。 重启explorer.exe: windows xp下面可以点击 开始 -> 运行 ,然后输入以下代码 cmd /c taskkill /f /im explorer.exe && start explorer.exe 然后点击确定,就可以了。 内容如下: Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\.lnk] [-HKEY_CLASSES_ROOT\lnkfile] [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk] [HKEY_CLASSES_ROOT\.lnk] @="lnkfile" [HKEY_CLASSES_ROOT\.lnk\ShellNew] "Command"="rundll32.exe appwiz.cpl,NewLinkHere %1" [HKEY_CLASSES_ROOT\lnkfile] @="快捷方式" "EditFlags"=dword:00000001 "NeverShowExt"="" "IsShortcut"="" [HKEY_CLASSES_ROOT\lnkfile\CLSID] @="{00021401-0000-0000-C000-000000000046}" [HKEY_CLASSES_ROOT\lnkfile\shellex] [HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers] [HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\Offline Files] @="{750fdf0e-2a26-11d1-a3ea-080036587f03}" [HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\{00021401-0000-0000-C000-000000000046}] [HKEY_CLASSES_ROOT\lnkfile\shellex\DropHandler] @="{00021401-0000-0000-C000-000000000046}" [HKEY_CLASSES_ROOT\lnkfile\shellex\IconHandler] @="{00021401-0000-0000-C000-000000000046}" [HKEY_CLASSES_ROOT\lnkfile\shellex\PropertySheetHandlers] [HKEY_CLASSES_ROOT\lnkfile\shellex\PropertySheetHandlers\ShimLayer Property Page] @="{513D916F-2A8E-4F51-AEAB-0CBC76FB1AF8}" [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk\OpenWithList] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk\OpenWithProgids] "lnkfile"=hex(0): [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.lnk] @="lnkfile" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.lnk\ShellNew] "Command"="rundll32.exe appwiz.cpl,NewLinkHere %1" |
|
|