Hello.
When trying to import a registry file via command line (regedit x.reg) which writes some keys to HKEY_LOCAL_MACHINE, the importing fails silently. The same is successful when I import via GUI.
I do not have this issue with reg files that write to HKEY_CURRENT_USER
I would appreciate help with this.
.reg file import fails silently from command line when trying to write to HKEY_LOCALMACHINE
Re: .reg file import fails silently from command line when trying to write to HKEY_LOCALMACHINE
Maybe if you write to HKEY_LOCAL_MACHINE/Software they might be written to subkey Wow6432Node. Could you check if they are written to that place?
Then maybe 'wine64 regedit x.reg' might help (instead of 'wine regedit x.reg')
Then maybe 'wine64 regedit x.reg' might help (instead of 'wine regedit x.reg')
Re: .reg file import fails silently from command line when trying to write to HKEY_LOCALMACHINE
That did it. Thank you do much for the help.