Click here to Skip to main content
15,860,943 members
Articles / Programming Languages / Visual Basic

Working with Windows Registry using VB.NET

Rate me:
Please Sign up or sign in to vote.
4.66/5 (76 votes)
28 Mar 2003CPOL5 min read 631.1K   10.5K   134   39
This article talks about working with Windows registry using VB.NET.

Introduction

Developers have always found the windows registry to be a suitable place for storing application specific information and configuration settings. Traditionally, the registry has been used for storing configuration information like database connection strings, profiles etc. The popularity of the registry can be attributed to the fact that registry access is faster than file access and also because it is a very secure system-wide data repository. Moreover, configuration files like INI files had their own limitations.

In this article I shall discuss some basics of Windows registry and then explain how basic registry operations can be done in VB.NET

Basics of Windows Registry

The registry is organized as a hierarchical structure. It has basically five predefined keys under which all data is added or accessed. These keys cannot be renamed or deleted. Given below is a table containing a brief description about them.

Subtree

Definition

HKEY_CURRENT_USER

This contains configuration information of a user who is currently logged on to the system.That is, user profile data is stored here

HKEY_USERS

Contains all user profiles on the computer. HKEY_CURRENT_USER is actually an alias for a key in the HKEY_USERS sub tree.

HKEY_LOCAL_MACHINE

Contains configuration information particular to the computer, irrespective of which user is logged on.

HKEY_CLASSES_ROOT

Contains data that associates file types with programs, and configuration data for COM objects.

HKEY_CURRENT_CONFIG

Contains information about the hardware profile used by the local computer at system startup.

Each key has many subkeys and may have a value. Given below is a snapshot of the registry as seen through the registry editor (Regedit.exe), which comes along with windows.

Registry Structure

Fig 1: Registry Structure

In the snapshot shown above, each node under My Computer is a key. For example , HKEY_CURRENT_CONFIG is a key which has two subkeys: Software and System. Fonts is a subkey under software and has values. Each Value contains a name and its associated data. Each value needs to be associated with a particular data type. Given below is a table containing the important data types

Data types

Used for

REG_SZ

A fixed-length text string. Boolean (True or False) values and other short text values usually have this data type.

REG_EXPAND_SZ

A variable-length text string that can include variables that are resolved when an application or service uses the data.

REG_DWORD

Data represented by a number that is 4 bytes (32 bits) long.

REG_MULTI_SZ

Multiple text strings formatted as an array of null-terminated strings, and terminated by two null characters.

Referring back to figure 1, there is a value called LogPixels which has data of type REG_DWORD and value 96.

Working with Microsoft.Win32 Namespace

The operations on the registry in .NET can be done using two classes of the Microsoft.Win32 Namespace: Registry class and the RegistryKey class.The Registry class provides base registry keys as shared public (read-only) methods: 

ClassesRoot

This field reads the Windows registry base key HKEY_CLASSES_ROOT.

CurrentConfig

Reads the Windows registry base key HKEY_CURRENT_CONFIG.

CurrentUser

Reads the Windows registry base key HKEY_CURRENT_USER

LocalMachine

This field reads the Windows registry base key HKEY_LOCAL_MACHINE.

Users

This field reads the Windows registry base key HKEY_USERS.

Each of the public methods shown above provides an object of the RegistryKey class whose methods can be used to access subkeys under the corresponding keys. The important members of the RegistryKey class are enlisted below

Public Properties

Name

Retrieves the name of the key.

SubKeyCount

Retrieves the count of subkeys at the base level, for the current key.

ValueCount

Retrieves the count of values in the key.

Public Methods

Close

Closes the key and flushes it to disk if the contents have been modified.

CreateSubKey

Creates a new subkey or opens an existing subkey.

DeleteSubKey

Deletes the specified subkey.

DeleteSubKeyTree

Deletes a subkey and any child subkeys recursively.

DeleteValue

Deletes the specified value from this key.

Flush

Writes all the attributes of the specified open registry key into the registry.

GetSubKeyNames

Retrieves an array of strings that contains all the subkey names.

GetValue

Retrieves the specified value.

GetValueNames

Retrieves an array of strings that contains all the value names associated with this key.

OpenSubKey

Retrieves a specified subkey, with the write access as specified.

SetValue

Sets the specified value.

VB.NET and Registry

I shall now come to the practical aspect and see how the registry can be manipulated using VB.NET code. I have considered three basic operations: Creating a subkey, adding values and deleting a subkey

Creating a Subkey

Dim regKey As RegistryKey
regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE", True)
regKey.CreateSubKey("MyApp")
regKey.Close()

In the code snippet shown above, I have created a subkey under HKLM\Software called MyApp. Note that I passed True as the second parameter to the OpenSubKey method. This boolean value is to indicate whether the key is writable or not. For instance, you can set it to false if you are just reading data from the registry.

Reading and Writing Values

Dim regKey As RegistryKey
Dim ver As Decimal
regKey = Registry.LocalMachine.OpenSubKey("Software\MyApp", True)
regKey.SetValue("AppName", "MyRegApp")
ver = regKey.GetValue("Version", 0.0)
If ver <  1.1 Then
regKey.SetValue("Version", 1.1)
End If
regKey.Close()

In the code snippet shown above, I am creating two values AppName and Version. I am also setting the values to MyRegApp and 1.1 respectively. Note: If you recollect that in the previous sections I had mentioned about data types for registry values like REG_SZ. But nowhere in the above code we mentioned about the data type. This is because .NET runtime interprets the type itself based on what is passed as value and we do not need to pass it explicitly.

Deleting a Subkey

Dim regKey As RegistryKey
regKey = Registry.LocalMachine.OpenSubKey("Software", True)
regKey.DeleteSubKey("MyApp", True)
regKey.Close()

In the code snippet shown above, I am deleting the subkey MyApp and all its values. Note that in the call to DeleteSubkey, I have passed a second Boolean argument of True. This means that an exception is thrown when the key to be deleted is not found

Important

  • To read and write to the registry you need security permissions. If you do not have sufficient permissions, then you will get a SecurityException when you try to access or create keys.
  • The registry is a very sensitive part of the Windows Operating system. So, it is imperative that you take a backup of the registry before attempting to play around with it. A corrupt registry could render the operating system non functional.

Conclusion

This article hopefully has made it easier for beginners to understand the registry and to do simple operations with it. A lot more operations are possible with the Registry and RegistryKey classes but for the sake of simplicity, I have omitted all those here.

License

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


Written By
Web Developer
India India
I am a software developer and have worked on Microsoft technologies for about five years now. I have always been fascinated by Microsoft technologies and with the advent of .NET , this fascination has reached new heights. I take a lot of interest reading technical articles and equally enjoy writing them. I really like to be called a .NET junkie and will surely try to live up to this name Smile | :)

I am .NET MVP and have also completed MCAD, MCSD(VS 6), MCDBA (SQL Server 2000), MCSA (Win 2K) and MCTS (Distributed Apps) certfications.

Comments and Discussions

 
GeneralMessage Closed Pin
8-Oct-21 4:42
Bruce Munck 20218-Oct-21 4:42 
GeneralProblem with the sample Pin
Corobori18-Apr-04 14:00
Corobori18-Apr-04 14:00 
Generalhelpful for beginners Pin
noby_datasoft15-Apr-04 16:50
noby_datasoft15-Apr-04 16:50 
GeneralRegistry functions with Compact Framework Pin
UncleMike98726-Sep-03 0:22
UncleMike98726-Sep-03 0:22 
GeneralRe: Registry functions with Compact Framework Pin
UncleMike98726-Sep-03 1:19
UncleMike98726-Sep-03 1:19 
GeneralSecurity Permisions Pin
RicardoLP1-Apr-03 23:54
RicardoLP1-Apr-03 23:54 
GeneralRe: Security Permisions Pin
Manoj G6-Apr-03 0:27
Manoj G6-Apr-03 0:27 
GeneralRe: Security Permisions Pin
HAVM00728-Oct-04 3:13
sussHAVM00728-Oct-04 3:13 
How can I impersonate an admin login to access the registry?Smile | :)
GeneralRe: Security Permisions Pin
The_Mega_ZZTer23-Sep-05 16:43
The_Mega_ZZTer23-Sep-05 16:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.