Visual C++ Redistributables without using VCRedist_x86.exe

后端 未结 4 413
我在风中等你
我在风中等你 2020-12-05 01:33

I\'m developing in an environment that is severely constrained, but the developers also have tight control over.

VCRedist_x86.exe - A 4Mb redistributable - is no f

4条回答
  •  广开言路
    2020-12-05 01:58

    We use this: Howto: Deploy VC2008 apps without installing vcredist_x86.exe

    Essentially

    • Don't embed a manifest in your exe files.
    • Copy the C++ DLLs and their manifests to your app's directory.
    • Remove the "publicKeyToken" from all manifests (yours and Microsoft's).
    • If necessary, change the version info in your app's manifest files to match the Microsoft manifest files (or vice versa)

提交回复
热议问题