Home >Operation and Maintenance >Windows Operation and Maintenance >0xc0150002 failed solution
0xc0150002 Solution to failure
When an error occurs while the program is running, right-click "My Computer"
Then click "Manage" → "Event Viewer" → "Windows Log" → "Application" to view the error message
According to the log information, it is judged that there is a problem when loading library files such as DevMngrd.dll. After looking at its manifest file, its dependent library is Microsoft.VC90.DebugCRT. The problem is obvious. This dll is in It was compiled under VS2008, but other people's machines do not have this environment. The application we compiled and generated caused errors due to the lack of the necessary Debug version of the VC runtime library.
It can be judged that there is a problem when loading library files such as HgDeviceFound.dll. After looking at its manifest file, its dependent library is Microsoft.VC90.DebugMFC
Copy the dll file to someone else's machine to the project executable directory on your own machine.
Go to other people’s machines and copy the 4 dll files and a manifest file to the directory on your own machine, and then the problem is solved
Make good use of tools to help locate problems: event viewer, depends walker, etc.
The above is the detailed content of 0xc0150002 failed solution. For more information, please follow other related articles on the PHP Chinese website!