原帖由 阿荣008 于 2008-5-31 21:02:00 发表
回楼上的
经过几个小时的寻找
现在初步确定问题是出在我安装那个isee上面
这个软件把我的注册表修改了
可是问题是我不知道怎么该回去
我把那个isee卸载了
下了个Acdsee 10
还是打不开
有朋友知道的
......
'RepairImage.vbs
'Start of Image Preview Repair
'This section repairs the associations for Image PreviewOption Explicit'Declare variables
Dim WSHShell, p1, p2, p3
Set WSHShell = WScript.CreateObject("WScript.Shell")
p2 = "\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}\"
p3 = "{7376D660-C583-11d0-A3A5-00C04FD706EC}"For Each p1 in Array(".art",".bmp",".dib",".gif",".jfif",".jpe",".jpeg",".jpg",".png",".wmf")
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
Nextp1 = ".tif"
p3 = "{1AEB1360-5AFC-11d0-B806-00C04FD706EC}"
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
p1 = ".tiff"
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
p1 = ".htm"
p3 = "{EAB841A0-9550-11cf-8C16-00805F1408F3}"
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
p1 = ".html"
WSHShell.RegWrite "HKCR\" & p1 & p2, p3'Start of Thumbnail Repair'This section repairs the view in Thumbnail mode of Explorer.p2 = "\CLSID\"
p3 = "{25336920-03F9-11cf-8FD0-00AA00686F13}"For Each p1 in Array(".art",".bmp",".dib",".gif",".jfif",".jpe",".jpeg",".jpg",".png",".tif",".tiff",".wmf")
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
NextMsgBox "图像预览和缩略图已经被修复", 4096, "Confirmation"Set WSHShell = Nothing将以上所有红色代码粘贴到记事本中后,保存后缀名为*.vbs文件,文件名任意,如
RepairImagePreview.vbs双击运行此vbs脚本文件,即可修复Windows系统中图片预览和缩略图。