Click here to Skip to main content
6,594,432 members and growing! (14,831 online)
Email Password   helpLost your password?
Desktop Development » Files and Folders » Utilities     Beginner License: The Code Project Open License (CPOL)

Software's List Installed on Windows Machine

By surendrakishor

This program gets the list of softwares installed on Windows running machine
C# (C# 2.0, C# 3.0), VB (VB 8.0), Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET 2.0, .NET 3.0, .NET 3.5), Visual Studio (VS2005, VS2008), Architect, Dev
Version:2 (See All)
Posted:30 Sep 2008
Views:11,472
Bookmarked:21 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
13 votes for this article.
Popularity: 2.88 Rating: 2.58 out of 5
2 votes, 15.4%
1
5 votes, 38.5%
2
1 vote, 7.7%
3
3 votes, 23.1%
4
2 votes, 15.4%
5

Introduction

Many of us don't know what softwares are installed and strive to check them programatically. Here's a simple way to get that list. This is very useful when you want to create an installer for your projects, which helps you in checking the right version of minimal software requirements for your projects on clients' machine. 

Background

There's no complicated code in this. If you have basic knowledge of Windows Registry, that's enough. But be sure you make a backup of your registry before doing anything with it as that is a good and safe way of programming. 

Using the Code

I have taken a simple Console Application in C#, created an object for registry accessing the right path, i.e. SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall.

This registry path has all the list of softwares installed on your machine. Following is the code to achieve it in C#.

In C#

class Program
    {
        static void Main(string[] args)
        {
          // Do back up of ur registry before running it.
          //Registry path which has information of all the softwares installed on machine
            string uninstallKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
            using (RegistryKey rk = Registry.LocalMachine.OpenSubKey(uninstallKey))
            {
                foreach (string skName in rk.GetSubKeyNames())
                {
                    using (RegistryKey sk = rk.OpenSubKey(skName))
                    {
                        // we have many attributes other than these which are useful.
                        Console.WriteLine(sk.GetValue("DisplayName") + 
				"  " + sk.GetValue("DisplayVersion"));
                    }
                    
                }
            }
            Console.ReadLine(); // To make the o/p readable.
        }        
    }	

In VB.NET

Imports System 
Imports System.Collections.Generic 
Imports System.Text 
Imports Microsoft.Win32 

Namespace SEList 
    Class Program 
        Private Shared Sub Main(args As String()) 
           ' Do back up of ur registry before running it. 
           'Registry path which has information of all the softwares installed on machine 
       Dim uninstallKey As String = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" 
            Using rk As RegistryKey = Registry.LocalMachine.OpenSubKey(uninstallKey) 
                For Each skName As String In rk.GetSubKeyNames() 
                    Using sk As RegistryKey = rk.OpenSubKey(skName) 
                        ' we have many attributes other than these which are useful. 
     Console.WriteLine(sk.GetValue("DisplayName") + " " + sk.GetValue("DisplayVersion")) 
                   
        End Using 
         Next 
        End Using 
        Console.ReadLine() ' To make the o/p readable. 
        End Sub 
    End Class 
End Namespace	 

output.jpg

Points of Interest

This code snippet is handy for developers working on creating installers for projects, which gives them flexibility to check the correct version of software installed on client machine to avoid confusion later. It's a good way of creating the installers. This is useful for all kinds of applications developed in Microsoft .NET environment.

History

  • 30th September 2008: Initial post

This is my first article on CodeProject. Hope to post more useful code snippets in future. Leave me your suggestions and comments as these are the things which boost us and help us in giving more relevant and error free code snippets.

License

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

About the Author

surendrakishor


Member

Occupation: Web Developer
Location: India India

Other popular Files and Folders articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 6 of 6 (Total in Forum: 6) (Refresh)FirstPrevNext
GeneralThanks PinmemberRavinderSingroha3:02 15 May '09  
GeneralIs using the uninstall registry the perfect solution? Pinmemberlwiji-tn3:08 4 Mar '09  
GeneralGet more information from the registry... PinmemberPaw Jershauge11:28 30 Sep '08  
QuestionRe: Get more information from the registry... Pinmembermasterkid9:26 4 Oct '08  
AnswerRe: Get more information from the registry... PinmemberPaw Jershauge22:12 5 Oct '08  
General[Message Removed] Pinmemberped2ped4:31 30 Sep '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 30 Sep 2008
Editor: Deeksha Shenoy
Copyright 2008 by surendrakishor
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project