应用程序配置不正确解决办法

VS2008 安装文件 "由于应用程序配置不正确,应用程序未能启动"
2009-01-21 19:16

用vc2008写程序,拷贝到其它机器上运行时,提示“由于应用程序配置不正确,应用程序未能启动。重新安装应用程序可能会纠正这个问题。”。

实际上,重装是解决不了问题的,解决的一种方法是查看*exe.intermediate.manifest文件,比如文件的内容是:

<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level='asInvoker' uiAccess='false' />
      </requestedPrivileges>
    </security>
</trustInfo>
<dependency>
    <dependentAssembly>
      <assemblyIdentity type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
    </dependentAssembly>
</dependency>
</assembly>

需要注意这个文件中的关键词:Microsoft.VC90.CRT

寻找到 你装VS的盘符/Program Files/Microsoft Visual Studio 9.0/VC/redist/x86文件夹下面。

找到这些名称的子文件夹,拷贝它们下面所有的文件到希望发布的EXE文件下面,一起打包。这些文件也就是msvcm90.dllmsvcp90.dll和msvcr90.dll

此错误发生的原因是在目标机器上需要这些文件的支持。

你可能感兴趣的:(Security,exe,encoding,X86)