0xc0150002 error
-
I am building a project using C++ under Visual Studio 2005. I am using 3rd party DLLs also compiled with Visual Studio 2005. When I try to deploy the binary to a system that does not have Visual Studio 2005 installed, I get "0xc0150002" error. I am trying on Windows XP, SP2, .NET Framework 2.0. After searching through various forums, there seems to be a problem with manifest. I have tried all the proposed solutions at: http://www.codeprof.com/dev-archive/218/8-96-2188983.shtm[^] http://www.allegro.cc/forums/thread/594808[^] http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=383171&SiteID=1[^] Can anyone with similar experience suggests a solution? Please help:confused:
ARSALAN MALIK
-
I am building a project using C++ under Visual Studio 2005. I am using 3rd party DLLs also compiled with Visual Studio 2005. When I try to deploy the binary to a system that does not have Visual Studio 2005 installed, I get "0xc0150002" error. I am trying on Windows XP, SP2, .NET Framework 2.0. After searching through various forums, there seems to be a problem with manifest. I have tried all the proposed solutions at: http://www.codeprof.com/dev-archive/218/8-96-2188983.shtm[^] http://www.allegro.cc/forums/thread/594808[^] http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=383171&SiteID=1[^] Can anyone with similar experience suggests a solution? Please help:confused:
ARSALAN MALIK
The manifest may only be part of the problem, if at all. You also have to ensure all required modules/assemblies/etc. are available on the target machine. Deployment (C++)[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
The manifest may only be part of the problem, if at all. You also have to ensure all required modules/assemblies/etc. are available on the target machine. Deployment (C++)[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
If you want a good laugh check this out[^]
led mike
:omg:
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
If you want a good laugh check this out[^]
led mike
:-D :-D :-D
ARSALAN MALIK
-
The manifest may only be part of the problem, if at all. You also have to ensure all required modules/assemblies/etc. are available on the target machine. Deployment (C++)[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
Thanks, but the problem was only solved when I used static linking instead of dynamic linking of multithreaded C library :wtf:
ARSALAN MALIK
-
Thanks, but the problem was only solved when I used static linking instead of dynamic linking of multithreaded C library :wtf:
ARSALAN MALIK
Arsalan Malik wrote:
the problem was only solved when I used static linking
In that case, you either deployed a debug build, or didn't install the CRT libraries properly on the target machine. Mark
Mark Salsbery Microsoft MVP - Visual C++ :java: