_DTE::RegistryRoot Property

 

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

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

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

Property Value

Type: System::String^

A string representing 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(DTE.RegistryRoot)
End Sub
Return to top
Show: