Accessing a registry entry for a server IP
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 serve开发者_高级运维r 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:
- Setting
RegistryPermissionAttribute
andSecurityPermissionAttribute
for security purposes. - Using
RegistryKey.OpenRemoteBaseKey
to connect to a remote key.
HTH
精彩评论