Click here to Skip to main content
15,897,968 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
my first question in codeproject...

how to check pc install runtime library, such as msvcr80.dll, crt, atl and so on. if pc doesn't install runtime, in order to protect program running normally, i will install for them. but how
to check? thank you all:)
Posted

1 solution

Hi,
If you develop you application (VC++) using VS2005, you need to install VCRedist runtime in the client machine. In your program , you can check the VCRedist is installed or not using its product id, which is {7299052b-02a4-4627-81f2-1818da5d550d}. This might differ other run time.

So, check the product id for the dependency, and if it is not installed you can install them.

Best Regards
Muthuraja
 
Share this answer
 
Comments
H.Brydon 27-Jan-13 16:49pm    
I didn't check your details for accuracy but +5 for the message - looks good.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900