Link to home
Start Free TrialLog in
Avatar of meperera
meperera

asked on

VB6 how to load other user registry hives and write the content of a .reg file

Hi Experts,

Is anyone able to help me with programetically loading the regsitry hives for each user on the computer (one at a time) and write the contents of an existing .reg file to each of the user's registry ?

Thanks in advance
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

if you wish to change the registry entry for all users on a single machine, simply modify the LOCAL_MACHINE registry hive.
can you post an example of .reg file you wish to write to the registry?
Avatar of meperera
meperera

ASKER

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Options]
"PROGRAMDIR"="C:\\Program Files\\Microsoft Office\\Office12\\"
"FirstRun"=dword:00000000
"OptionsDlgSizePos"=hex:48,03,00,00,ad,02,00,00,5c,00,00,00,1b,00,00,00,00,00,\
  00,00
"SQLSecurityCheck"=dword:00000000


[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Security]
"Security Levels"=dword:00000000
"AccessVBOM"=dword:00000001
"VBAWarnings"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Security\Trusted Locations]

[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Security\Trusted Locations\Location0]
"Path"=hex(2):25,00,41,00,50,00,50,00,44,00,41,00,54,00,41,00,25,00,5c,00,4d,\
  00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,74,00,5c,00,54,00,65,00,6d,00,\
  70,00,6c,00,61,00,74,00,65,00,73,00,00,00
"Description"="0"

[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Security\Trusted Locations\Location1]
"AllowSubFolders"=dword:00000001
"Path"="C:\\Program Files\\Microsoft Office\\Templates\\"
"Description"="1"

[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Security\Trusted Locations\Location2]
"Path"=hex(2):25,00,41,00,50,00,50,00,44,00,41,00,54,00,41,00,25,00,5c,00,4d,\
  00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,74,00,5c,00,57,00,6f,00,72,00,\
  64,00,5c,00,53,00,74,00,61,00,72,00,74,00,75,00,70,00,00,00
"Description"="2"

can u check if the registry path in this file are also existed in the LOCAL_MACHINE?
Thanks sedgwick,

I did. Unfortunately they don't exist in the LOCAL_MACHINE key. I have so far managed to load each user's registry hive through my program. What I'm having difficulties with is to run the reg file so it would get inserted in to the loaded hive.

Many thanks again
how did u load each user's registry hive ?
With the following code
Private Const TOKEN_ADJUST_PRIVLEGES = &H20
Private Const TOKEN_QUERY = &H8
Private Const SE_PRIVILEGE_ENABLED = &H2
Private Const HKEY_USERS = &H80000003
Private Const SE_RESTORE_NAME = "SeRestorePrivilege"
Private Const SE_BACKUP_NAME = "SeBackupPrivilege"

Private Declare Function GetCurrentProcess Lib "kernel32" () As Long

Private Declare Function OpenProcessToken Lib "advapi32.dll" _
        (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, _
        TokenHandle As Long) As Long

Private Declare Function LookupPrivilegeValue Lib "advapi32.dll" Alias _
        "LookupPrivilegeValueA" (ByVal lpSystemName As String, _
        ByVal lpName As String, lpLuid As LUID) As Long

Private Declare Function AdjustTokenPrivileges Lib "advapi32.dll" _
        (ByVal TokenHandle As Long, ByVal DisableAllPrivileges As Long, _
        NewState As TOKEN_PRIVILEGES, ByVal BufferLength As Long, _
        ByVal PreviousState As Long, ByVal ReturnLength As Long) As Long

Private Declare Function RegLoadKey Lib "advapi32.dll" Alias "RegLoadKeyA" _
        (ByVal hKey As Long, ByVal lpSubKey As String, ByVal lpFile As String) _
        As Long

Private Declare Function RegUnLoadKey Lib "advapi32.dll" Alias "RegUnLoadKeyA" _
        (ByVal hKey As Long, ByVal lpSubKey As String) As Long

Private RetVal As Long
Private strKeyName As String
Private MyToken As Long
Private TP As TOKEN_PRIVILEGES
Private RestoreLuid As LUID
Private BackupLuid As LUID
Public regusrs As String



Public Function OffLineReg(Usr As String, regv As Integer, ByVal prof As String)
    strKeyName = "OasisKey"



    RetVal = OpenProcessToken(GetCurrentProcess, TOKEN_ADJUST_PRIVLEGES _
            Or TOKEN_QUERY, MyToken)


    RetVal = LookupPrivilegeValue(vbNullString, SE_RESTORE_NAME, _
            RestoreLuid)


    RetVal = LookupPrivilegeValue(vbNullString, SE_BACKUP_NAME, BackupLuid)


    TP.PrivilegeCount = 2
    TP.Privileges(0).pLuid = RestoreLuid
    TP.Privileges(0).Attributes = SE_PRIVILEGE_ENABLED
    TP.Privileges(1).pLuid = BackupLuid
    TP.Privileges(1).Attributes = SE_PRIVILEGE_ENABLED

    RetVal = AdjustTokenPrivileges(MyToken, vbFalse, TP, Len(TP), 0&, 0&)



    RetVal = RegLoadKey(HKEY_USERS, strKeyName, Usr)
    If RetVal = 0 Then regusrs = regusrs & vbNewLine & prof
    Select Case regv
        Case 1
            FileCopy "WORDXPG.reg", "C:\WORDXPG.reg"
            Call ShellAndWait("regedit /s C:\WORDXPG.reg ", 4)
            Kill "C:\WORDXPG.reg"
        Case 2
            FileCopy "WORD2003G.reg", "C:\WORD2003G.reg"
            Call ShellAndWait("regedit /s C:\WORD2003G.reg ", 4)
            Kill "C:\WORD2003G.reg"
        Case 3
            FileCopy "WORD2007G.reg", "C:\WORD2007G.reg"
            Call ShellAndWait("regedit /s C:\WORD2007G.reg ", 4)
            Kill "C:\WORD2007G.reg"
        Case 4
            FileCopy "WORD2010G.reg", "C:\WORD2010G.reg"
            Call ShellAndWait("regedit /s C:\WORD2010G.reg ", 4)
            Kill "C:\WORD2010G.reg"
        Case Else

    End Select

    RetVal = RegUnLoadKey(HKEY_USERS, strKeyName)



End Function

Open in new window

in the reg file you've posted earlier (ID:33508573) there are 6 registry entries.
are they correspondent to the 6 users of the machine?
ASKER CERTIFIED SOLUTION
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you so much. That gave me the basic idea. I went on and loaded each hive and wrote to the registry through coding instead of trying to run the .reg file.

That did the trick. Really appreciate your assistance.