README.md

December 4, 2022 ยท View on GitHub

Import Export Registry Keys

Description

Import And Export Registry Keys

More Info

Submitted On
ByVincent Zack
LevelIntermediate
User Rating4.0 (12 globes from 3 users)
CompatibilityVB 4.0 (32-bit), VB 5.0, VB 6.0
CategoryRegistry
WorldVisual Basic
Archive File

Source Code

Function ExportNode(sKeyPath As String, sOutFile As String)
'
'Example:
'ExportNode "HKEY_LOCAL_MACHINE\software\microsoft","c:\windows\desktop\out.reg"
'
'/E (Export) switch
Shell "regedit /E " & sOutFile & " " & sKeyPath
End Function
Function ImportNode(sInFile As String)
'
'Example:
'ImportNode "c:\windows\desktop\reg.reg"
'
'/I (Import) /S (Silent) switchs
Shell "regedit /I /S " & sInFile
End Function