Forum Discussion
- randallcorn5 years agoActive Contributor
OK
So my machines are on a domain. I don't have the users password so I cannot log in as them. I do have domain admin credentials. Do you have an example of how I can make a registry entry if I have this type of access?
Thanks,
Randall
- KLumley4 years agoNew Member
This is less then ideal but it will work:
-Open the LogMeIn Dashboard for the machine you're working with
-Under Computer Management select Command Prompt
-Run the following: reg load HKEY_USERS\ImportKyle "C:\Users\Kyle\ntuser.dat"
The imported user hive will be visible at HKEY_USERS\ImportKyle
From here you can manipulate the hive as usual
- Get-ChildItem -Path Registry::HKEY_USERS\ImportKyle
- Get-ItemProperty -Path Registry::HKEY_USERS\ImportKyle\Software\Microsoft\Office\Outlook
- New-Item -Path Registry::HKEY_USERS\ImportKyle\Software\Microsoft\Windows\CurrentVersion\Test
*The user will need to be logged out for this to work, only one process can lock the ntuser.dat file at a time.*