DTE2::RegistryRoot Property

 

Gets a string with the path to the root of the Visual Studio registry settings.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

property String^ RegistryRoot {
	String^ get();
}

Property Value

Type: System::String^

The path to the root of the Visual Studio registry settings.

Typically the registry root is Software\Microsoft\Visual Studio\<version>\ with either HKLM or HKCU before Software.

Sub RegistryRootExample()
  MsgBox(DTE2.RegistryRoot)
End Sub
Return to top
Show: