Click here to Skip to main content
15,886,026 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All,

I am planning to write a logic in my application where I want to check for some software installed on client windows machine. If it is not installed then this web application will ask end user to download from web site.

Kindly suggest some logic.

-Ravi
Posted
Updated 30-Dec-14 22:20pm
v2
Comments
Richard MacCutchan 30-Dec-14 5:43am    
As fara as I am aware, that information is not available to browsers.
Ravi Kanasagra 30-Dec-14 7:02am    
:(

1 solution

There is no API to get a nice list of installed software, so you have two ways to find it out
1. Check for certain folder/executable that come with the application
2. Read the registry of the machine for uninstall entries to find if software is there: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall. You should check this branch also under 'LocalMachine' and 'CurrentUser'...
 
Share this answer
 

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