8毫米pe保温棉:缩略图不显示

来源:百度文库 编辑:高考问答 时间:2024/04/25 09:12:19
我的图片缩略图显示不出来怎么办(已经选定)(其他设置没有问题)

1。系统有问题。
用一段时间就回出现这种问题了
用安装盘修复一下就可以了
2。解决这个问题的方法是使用后面提供的一个vbs脚本程序。这个vbs脚本程序专门修改与“缩略图”浏览方式相关的注册表项,从而恢复“缩略图”浏览功能。

使用方法如下。

1 打开记事本程序。

2 把下面的vbs代码复制下来,粘贴到记事本里。

3 在记事本里选择“另存为”,将文件命名为:repairimage.vbs,并保存到桌面或其他能快速找到的地方。

4 鼠标双击 repairimage.vbs 脚本文件。

5 OK

'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"
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
Next

MsgBox "Image Preview and Thumbnail View File" & vbCR & "Associations have been restored.", 4096, "Confirmation"

Set WSHShell = Nothing