vista缩略图问题

来源:百度知道 编辑:UC知道 时间:2024/09/20 04:07:28
学过max的朋友都知道,在xp下,max格式的文件是能显示成缩略图的,但是在vista下,我这里就看不到max格式的缩略图,这让我作图的时候很麻烦。想问各位,max格式的文件能否在vista下显示缩略图?(我这里图片格式的文件都能正常显示缩略图!)

用记事本打开 把下面的代码复制在里面

'RepairImage.vbs
'Start of Image Preview Repair
'This section repairs the associations for Image Preview

Option 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
Next

p1 = ".tif"
p3 = "{1AEB1360-5AFC-11d0-B806-00C04FD706EC}"
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
p1 = ".tiff"
WSHShell.RegWrite "HKCR\" & p1 & p2, p3
p1 = ".htm&qu