When I check manually, I see below registry key in the reristry.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{44FA2BAA-3C54-41D2-9F24-D0EE0131C695}_is1
But when I query all subkeys in my VB.NET program, I don't see {44FA2BAA-3C54-41D2-9F24-D0EE0131C695}_is1. My application gives totally different Subkeys. Am I missing something? Here is the source code.
Dim regKey As RegistryKey
regKey = My.Computer.Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall")
For Each subKeyName As String In regKey.GetSubKeyNames()
If subKeyName.Contains("44FA2BAA") Then
' CONTROL NEVER COMES HERE
End If
Next