zoukankan      html  css  js  c++  java
  • [Windows] 解决 COM Surrogate 错误提示

    运行环境:Windows 8.1 (64bits)

    异常描述:打开 "Windows 照片查看器",试图放大或缩小窗体,弹出 "COM Surrogate” 错误。

    解决方法:首先,COM Surrogate是什么?

    The COM Surrogate is a fancy name for Sacrificial process for a COM object that is run outside of the process that requested it. Explorer uses the COM Surrogate when extracting thumbnails, for example. If you go to a folder with thumbnails enabled, Explorer will fire off a COM Surrogate and use it to compute the thumbnails for the documents in the folder. It does this because Explorer has learned not to trust thumbnail extractors; they have a poor track record for stability. Explorer has decided to absorb the performance penalty in exchange for the improved reliability resulting in moving these dodgy bits of code out of the main Explorer process. When the thumbnail extractor crashes, the crash destroys the COM Surrogate process instead of Explorer.

    造成该问题的原因可能有多种,因此需要尝试多种解决途径。

    1. 途径一:重装VGA驱动。

      由于是使用同一个安装盘重做的系统,之前未出现该问题,因此可能是驱动程序安装有问题,重装了显卡驱动,问题解决。

    2. 途径二:添加dllhost.exe。

      点击“设备 - 电脑信息 - 高级系统设置 - 高级 - 性能 - 设置 - 数据执行保护”, 勾选“为除下列选定程序之外的所有程序和服务启用 DEP(U):”,点击“添加”,添加“C:WindowsSystem32dllhost.exe”,然后点击“打开”。由于我的是64位系统,得到了“你不能在64位可执行文件上设置 DEP 属性”。解决失败。

  • 相关阅读:
    WCF简介-01
    专访Bruce Douglass,谈嵌入式经验
    svn查看工程版本库的url地址
    Hello Kiki (中国剩余定理模版)
    中国剩余定理 (CRT)
    Prime Cuts(POJ-1595)
    素数区间筛法
    出现或者反转后出现在每个字符串中的最长子串
    每个字符串至少出现两次且不重复的最长子串
    不小于k个字符串的最长子串
  • 原文地址:https://www.cnblogs.com/ifantastic/p/3813514.html
Copyright © 2011-2022 走看看