Is there a way to export multiple (different) reg keys to one single .reg file?
Like:
HKEY_CURRENT_USER\Software\a
"ValueA"="x"
HKEY_CURRENT_USER\Software\b
"ValueB"="y"
HKEY_CURRENT_USER\Software\c
"ValueC"="Z"
to .\destination.reg
with:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\a]
"ValueA"="x"
[HKEY_CURRENT_USER\Software\b]
"ValueB"="y"
[HKEY_CURRENT_USER\Software\c]
"ValueC"="Z"