Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the information of the software installed on my computer. For example, the software name, the software language, the software version . How can I get them from the Registry ?

share|improve this question

2 Answers

Much of the registry is undocumented and there is a lot of information not stored there. I suspect that most of the information you need (if not all of it) can be obtained using documented APIs and other methods. Take a look at the WMI and setup APIs.

share|improve this answer

This key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

holds the information that shows up in Add/Remove Programs, and is therefore a good source of information re: which applications are installed.

Microsoft offers some scripting that can process this info:

How to enumerate the software products that can be uninstalled on a computer

share|improve this answer
I have tried this key before,and I find some software have the language(or version) item, but some not. Are them saved in somewhere else ?I want to find a more general way. – li. Aug 31 '09 at 3:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.