Running .reg files with wine
Solution 1:
I managed to reimport exports done with wine's $> regedit
:
wine start regedit.exe /home/myname/path/foo.reg
Note: foo.reg
coming from wine's regedit looks a little different than usual_:
REGEDIT4
[HKEY_CURRENT_USER\Software\SomeApplication\Layout]
"WindowState"="1"
"FormWidth"="800"
"FormHeight"="600"
"FormTop"="50"
"FormLeft"="50"
In constrast the (non-working) native form:
Windows Registry Editor Version 5.00
[HKEY_USERS\S-1-5-21-123456789-1000\Software\SomeApplication\Layout]
"WindowState"="1"
The first version works reliably. But I am not sure, how to transform the latter to the former... (replacing line 1 is trivial, but according to what rules getting to those „simplified“ keys...)
Solution 2:
I managed to find the problem. It might have had something to do with the original solutions I posted. After I had done those I clicked on the .reg file and said "Open With Wine Registry Editor"
Solution 3:
For some reason I was not able to see, when right click on .reg
file, "Open with wine Registry Editor"...maybe because of wine version. buy the way I found another way to run .reg
files.
You need to open regedit
from Playonlinux configuration options.
- Open Playonlinux
- Open "Configure"
- Select the program from the list you need to apply the
.reg
file - Select Wine "window"
- Registry Editor
- Import
.reg
file
It worked for me but still I can not understand why I can not see "Open with wine registry editor" when right click on the .reg
file.