Remote registry access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all

I'm relatively new to .NET and I'm having trouble finding some functinality
that allows access to remote registries.

I have found the Registry class which allows local access, and I've already
used the Management class to access remote registries via WMI. But in this
instance it's critical that I am able to write something that does not
require WMI as the hosts can be any version of Windows.

Does .NET have anything I can use? Or is it still too far behind other
languages and I have to go back to API functions?

Cheers
Lain
 
Check the RegistryKey class and the RegistryKey.OpenRemoteBaseKey method.

Willy.
 
Back
Top