Carpooler said in
Can someone help? I want to backup the entire windows registry and
I don't seem to have a backup tab under system tools.
You could run regedit.exe and highlight the root node to then do an
Export. You could also run the following in a DOS shell:
regedit /e <outfile.reg> <regkey>
I found the syntax for regedit at
http://snipurl.com/6drq.
<outfile.reg> is whatever and wherever you want to save the exported
file. Use the .reg extension. The <regkey> is the registry key,
branch, or hive name, like HKEY_USERS or HKEY_LOCAL_MACHINE. I
typically enclose both the outfile and regkey within double quotes just
in case there are spaces. For example, I defined a shortcut to save a
copy of my e-mail accounts for Outlook (because they are defined in the
registry instead of in files):
%windir%\regedit.exe /e
"D:\USER\%username%\Outlook\Backups\MailProfiles.reg"
"HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows
Messaging Subsystem\Profiles"
While Outlook Express has a means of exporting its e-mail accounts to
..iaf file, Outlook has no real backup mechanism to save its e-mail
accounts (which are NOT part of the .pst or any other files you can
backup). You could also use the "Save My Settings Wizard" tool that
gets installed with MS Office XP but that saves settings from all
components of MS Office instead of just the e-mail accounts.
If instead you want to use the NT Backup program to save the registry
files, you'll need to installed if from the installation CD (I think it
is under a ValueAdd subdirectory) if you are using Windows XP Home
(which doesn't install this utility by default). It will perform a
shadow copy of the inuse files (so you can back them up although they
are obvious inuse because you are logged in).