答案1
答案2
同样的问题发生在我身上,这就是帮助我解决它的方法:
- 跑步注册表编辑器
- 去
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows
- 寻找图标服务库REG_SZ,就我而言,该键不存在。
- 创建/更新
IconCodecService.dll
- 重复相同操作
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Windows
就是这样,无需任何其他操作即可出现大图标。
答案3
在一些论坛上找到了这个解决方案,它对我有用:1.打开记事本(或任何编辑器)。2.输入以下内容:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]
"IconServiceLib"="IconCodecService.dll"
"DdeSendTimeout"=dword:00000000
"DesktopHeapLogging"=dword:00000001
"GDIProcessHandleQuota"=dword:00002710
"ShutdownWarningDialogTimeout"=dword:ffffffff
"USERNestedWindowLimit"=dword:00000032
"USERPostMessageLimit"=dword:00002710
"USERProcessHandleQuota"=dword:00002710
@="mnmsrvc"
"DeviceNotSelectedTimeout"="15"
"Spooler"="yes"
"TransmissionRetryTimeout"="90"
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Windows]
"IconServiceLib"="IconCodecService.dll"
"DdeSendTimeout"=dword:00000000
"DesktopHeapLogging"=dword:00000001
"GDIProcessHandleQuota"=dword:00002710
"ShutdownWarningDialogTimeout"=dword:ffffffff
"USERNestedWindowLimit"=dword:00000032
"USERPostMessageLimit"=dword:00002710
"USERProcessHandleQuota"=dword:00002710
@="mnmsrvc"
"DeviceNotSelectedTimeout"="15"
"Spooler"="yes"
"TransmissionRetryTimeout"="90"
- 将文件另存为 .reg
- 双击文件导入注册表
答案4
在一些论坛上找到了这个解决方案,它对我有用:1.打开记事本(或任何编辑器)。2.输入以下内容:
Windows 注册表编辑器版本 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows] “IconServiceLib”=“IconCodecService.dll” “DdeSendTimeout”=dword:00000000 “DesktopHeapLogging”=dword:00000001 “GDIProcessHandleQuota”=dword:00002710 “ShutdownWarningDialogTimeout”=dword:ffffffff “USERNestedWindowLimit”=dword:00000032 “USERPostMessageLimit”=dword:00002710 “USERProcessHandleQuota”=dword:00002710 @=“mnmsrvc” “DeviceNotSelectedTimeout”=“15” “Spooler”=“yes” “TransmissionRetryTimeout”=“90”
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Windows] "IconServiceLib"="IconCodecService.dll" "DdeSendTimeout"=dword:00000000 "DesktopHeapLogging"=dword:00000001 "GDIProcessHandleQuota"=dword:00002710 "ShutdownWarningDialogTimeout"=dword:ffffffff "USERNestedWindowLimit"=dword:00000032 "USERPostMessageLimit"=dword:00002710 "USERProcessHandleQuota"=dword:00002710 @="mnmsrvc" "DeviceNotSelectedTimeout"="15" "Spooler"="yes" "TransmissionRetryTimeout"="90" 将文件另存为.reg 双击文件进行导入进入注册表