如何以编程方式阻止Vista(和Windows 7)中的“程序兼容性助手”出现?

时间:2009-10-19 10:32:47

标签: flash winapi com windows-vista compatibility

我开发了一个可能使用adobe flash的C ++程序,虽然它不是必需的 我使用CoCreateInstance创建flash对象,如果失败,我知道没有安装flash,所以我不使用它。
但是,在Vista(我也认为是Windows 7)中,当没有安装flash时,在离开应用程序后,“程序兼容性助手”弹出一条消息,指出“此程序需要缺少Windows组件”指定闪存。 OCX。

有没有办法阻止此消息出现?我不想强迫任何用户安装闪存(特别是因为它是IE ActiveX,而FireFox用户可能没有安装它),我的应用程序可以在没有闪存的情况下正常运行。
另外,这个消息在每次运行后出现时都非常烦人 我当然不是要在用户的计算机上禁用PCA,而是在所有计算机上以编程方式禁用此特定外观。

有什么想法吗? 感谢

[编辑:

我跟随Shay的领导(谢谢),并且更多地挖掘了我自己。我将以下XML添加到应用程序的清单中:

<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
  <security>
    <requestedPrivileges>
      <requestedExecutionLevel level="asInvoker" uiAccess="false">
      </requestedExecutionLevel>
   </requestedPrivileges>
  </security>
</trustInfo>

(另见:msdn.microsoft.com/en-us/library/bb756929.aspx
这解决了Vista 64上的问题。

为解决Windows 7上的同样问题,我添加了以下内容:

<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  <application>
    <!--The ID below indicates application support for Windows Vista -->
    <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
    <!--The ID below indicates application support for Windows 7 -->
    <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
  </application>
</compatibility>

(另见:blogs.msdn.com/yvesdolc/archive/2009/09/22/the-new-compatibility-section-in-the-application-manifest.aspx

解决了Windows 7。

但出于某种原因,它仍然发生在Vista 32 ......

我还尝试编辑导致问题的特定DLL的清单,但它没有任何效果。只有可执行文件的清单本身才会影响问题。

所以... Vista 32?

1 个答案:

答案 0 :(得分:2)

来自here的摘录(谈论设置但与您的案例相关)

  

如何选择退出程序兼容性助手   设置吗

     

为了阻止该计划   兼容性助手来自   出现,你必须包括一个   嵌入式清单,指定一个   请求执行级别   设置执行。如果你包装   在自解压缩中设置可执行文件   包,你还必须包括一个   嵌入式清单   也是自解压包。一旦您   这样做,Windows Vista将对待您的   设置为Windows Vista感知,它   将不再显示PCA对话框   当设置在失败后退出或   消除。