Private Declare Auto Function RegLoadKey Lib "advapi32.dll" ( _
ByVal hKey As IntPtr, _
ByVal lpSubKey As String, _
ByVal lpFile As String _
) As Integer
User-Defined Types:
None.
Alternative Managed API:
Do you know one? Please contribute it!
Notes:
When run from a remote PC (via RegConnectRegistry), the path to the hive file is local to that PC.
LONG RegLoadKey(
HKEY hKey,
LPCTSTR lpSubKey,
LPCTSTR lpFile
);
Tips & Tricks:
Please add some!
Sample Code:
Public Shared Sub LoadKey(ByVal key As RegistryKey, ByVal MountPoint As String, ByVal HivePath As String)
Dim ret As Integer
ret = RegLoadKey(key.hKey, MountPoint, HivePath)
If ret <> 0 Then
Throw New Win32Exception(ret)
End If
End Sub
Saves the specified key and all of its subkeys and values to a new file, in the standard format.
11/13/2012 6:29:49 AM - kevin [dot] burek [at] microsoft [dot] com-65.215.1.13
Reads the registry information in a specified file and copies it over the specified key. This registry information may be in the form of a key and multiple levels of subkeys.
11/13/2012 6:00:56 AM - kevin [dot] burek [at] microsoft [dot] com-65.215.1.13
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).