0

I formatted my computer (Win7->Win7 fresh install) a few months ago, and before I did so I exported the registry to a file (Along with the usual folders) just in case. Now I need to get at some entries in that file, but I'm at a loss as for how.

Is there some way to read a big .reg file without importing any of it?

Jon
  • 241

2 Answers2

2

REG files are regular text files. You can open small REG files with Notepad, but full registry exports can be hundreds of megabytes in size and Notepad won't be able to handle them. You can use Notepad++ or Sublime Text to view them.

REG file structure is described on Wikipedia.

gronostaj
  • 58,482
1

Since it's plain text, just split the file into parts. Previous question on this:

How to split large file on Windows?

ernie
  • 6,378