surendran
surendran

Reputation: 476

the application was unable to start correctly 0xc00007b

I have a win32 application. Trying to run in windows 7 64-bit OS in VisualStudio 2008. Have installed x64 Environment. So when i'm trying to run my project i'm getting this error "the application was unable to start correctly 0xc00007b". I have no link errors too. Anyone any suggestions please.

Upvotes: 3

Views: 21782

Answers (2)

Vizor
Vizor

Reputation: 415

It can be processorArchitecture mismatch in manifest in assemblyIdentity or in dependencyAssembly.

Upvotes: 1

Truc
Truc

Reputation: 66

i got the same issue as you. I had a application Win32. When i converted this application Win32 to X64 with Visual Studio 2010, the application x64 is compiled successfully. But when i ran it, it generated the error message: "The application was unable to start correctly (0xc00000b7). Click ok to close the application".

It took few days to fix it by changing many setting of Configuration properties->linker. Especially, i changed the setting of Linker.Manifestfile.Generate Manifest = No (/MANIFEST:NO) It worked to my application. Good luck!

Upvotes: 5

Related Questions