C
Cynthia_1968
Hello world,
I have seen this question: Windows 10 regedit cannot import a reg file. I had the same problem, and the only work around I've found is only using the name of the registry file you'd like to add to the Windows registry.
Create a batchfile, and use the name of the registry file you'd like to add:
@echo off
echo --------------
echo importing your_backup.reg
echo One moment please...
your_backup.reg
pause
exit
----
That's it. The downside is that you cannot use silent mode, like in the good old days, but at least, this will import your registry file.
Please keep in mind that making changes to the windows registry is always at your own risk! I think it's a good idea from Microsoft not to allow silent mode in windows 10 when you're trying to import a registry file
Continue reading...
I have seen this question: Windows 10 regedit cannot import a reg file. I had the same problem, and the only work around I've found is only using the name of the registry file you'd like to add to the Windows registry.
Create a batchfile, and use the name of the registry file you'd like to add:
@echo off
echo --------------
echo importing your_backup.reg
echo One moment please...
your_backup.reg
pause
exit
----
That's it. The downside is that you cannot use silent mode, like in the good old days, but at least, this will import your registry file.
Please keep in mind that making changes to the windows registry is always at your own risk! I think it's a good idea from Microsoft not to allow silent mode in windows 10 when you're trying to import a registry file
Continue reading...