I have a win forms application the sets some value to registry.
There is a windows service too to run on the same machine with localsystem account. But when it tries to read the value from registry that the winforms application had set, it gives problem.
RegistryKey
RK = objRegistry.OpenSubKey(@"Software\12_0X");is the code that I've used and getting error(RK is null)
But if I try the code:
RegistryKey
RK = objRegistry.OpenSubKey(@"Software");
it returns value..
I checked the path it is correct.. Itried the same code from winforms, it works perfectly...
Please help me in this matter...
brittogladez