解决程序兼容助手提示缺少flash.ocx组件问题
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
http://stackoverflow.com/questions/1587962/how-do-i-prevent-programmatically-the-program-compatibility-assistant-in-vista
这里面说在你vs的工程里面添加 mainfest 文件(里面的数据就是xml数据),然后在里面添加如下的xml数据:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> <security> <requestedPrivileges> <requestedExecutionLevel level="asInvoker" uiAccess="false"> </requestedExecutionLevel> </requestedPrivileges> </security> </trustInfo> 这段是为了让上面那个兼容性助手在vista里面不弹出来。 <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> |
刚写的这段是解决win7里面出现这个问题的方法。
把这两段加到你的vs工程的mainfest文件里面。
mainfest文件的创建:可以Set通过porperty->configuration properties->linker->manifest file->Generate manifest To Yes来自动创建manifest来指定系统的和CRT的assembly版本。除了这样产生外部的manifest file,还有embedded manifest信息可以被写到所生成的二进制文件内Set porperty->configuration properties->manifest tool->embed manifest To Yes.
设置之后 build就会在 debug 或者release文件里面出现工程名称的mainfest文件,将其加入到工程里面,添加上刚才的那两段xml数据即可。
然后重新测试一下。
可以参考以下网址:http://stackoverflow.com/questions/1587962/how-do-i-prevent-programmatically-the-program-compatibility-assistant-in-vista
http://tech.sina.com.cn/s/2009-09-22/07561075621.shtml
转自:http://www.5icpp.com/?p=265
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=835