Is there a way to get a registry value from a server IP in c#?
I know to get for a local machine
Registry.LocalMachine.OpenSubKey(@"Software\Test"))
Instead of local machine, i need to find out for a server IP, in other words i need to access registry entry of test folder under software residing in a server.
Yours thoughts are appreciated.
If you're trying to open a key from a remote machine, check out this MSDN article. It basically involves the following:
RegistryPermissionAttributeandSecurityPermissionAttributefor security purposes.RegistryKey.OpenRemoteBaseKeyto connect to a remote key.HTH