there are two registries, 32 bit & 64 bit.
you appear to be accessing the 32 bit version on a 64bit o/s, thus the "\WOW6432Node\". the 32 bit registry values are loaded into the 64 bit registry under this node.
explicit access:
RegistryKey localKey32 = RegistryKey.OpenBaseKey(Microsoft.Win32.RegistryHive.LocalMachine, RegistryView.Registry32);
RegistryKey localKey64 = RegistryKey.OpenBaseKey(Microsoft.Win32.RegistryHive.LocalMachine, RegistryView.Registry64);