When we're importing the registry from *.reg files, the paths with backslashes (e.g. C:\Program Files\My Program) are written as they are in .reg file, with double backslash (C:\\Program Files\\My Program). But this is not correct, as escaping some chars with backslash is just .reg file format feature for storing data, but not for registry itself. As a result, the program sees these \-escaped versions of values and throws errors in many cases.
Please fix this issue
p.s. Also noticed that if binary value data is too long in source reg fie, it cuts on 8th byte. This may corrupt program data and user couldn't know about it not being checked each value manually.
p.p.s. I'm really looking forward to writing registry changes to the local storage feature

Hope it will come soon...