Search
Recommended Products
Related Links


 

 

Informative Articles

Advice about the latest and accurate help concerning computer components.
When you're after superior information about computer components, it will be intricate unscrambling quality advice from misguided computer components submissions and help so it is important to know how to judge the information you are presented...

Refurbished laptop computer review
What does refurbished mean? There's a MASSIVE range in the quality of refurbished gear available for sale. Some dealers at the lower end of the scale do not really refurbish computers at all - obviously broken parts may be replaced but...

Specialized Solutions Unveils New CompTIA Security+ Training
Specialized Solutions Unveils New CompTIA Security+ Training Tarpon Springs, FL - Specialized Solutions, Inc., premier developer of self-study and certification training products, introduces its new CompTIA Server+ Certification Training and Test...

We Know Why You Haven’t Decided Yet To Purchase A Security Product
With the growth of information technologies, people own a lot of professional or personal information, which has both a financial and emotional value. As people get vulnerable to numerous security threats, they become more and more aware of the...

Your Computer May Be Infected. Here's how to check..
A recent research revealed that 80% of the computers today is infected with these dangerous spyware and most of the users are not aware of it. (Your computer could be infected by now too.) The most dangerous fact is, even though the anti-virus...

 
Google
How to REALLY backup the Windows Registry

Reprintable Article: Permission is granted for the
following article to forward, reprint, distribute, use for
ezine, newsletter, website, offer as free bonus or part of
a product for sale as long as no changes are made and the
byline, copyright, and resource box is included.
----------------------------------------------------------
How to REALLY backup the Windows Registry

By Stephen Bucaro

In Windows 3.x configuration information was stored in
human readable text files like win.ini, system.ini,
config.sys, and autoexec.bat. But that method of storing
configuration was inadequate to store configuration for
the enormous amount of bloat Microsoft put into Windows 95
and higher.

In Windows 95 and higher, configuration information is
stored in the "registry". The word "registry" rarely
appears without being accompanied by the word "warning",
and a vague description of how your computer will go up in
smoke if you even think about messing with the registry.

The registry is bloated and overcomplicated, but since it
is the central repository for almost all of Windows
configuration information, you will probably have to deal
with it sooner or later. In fact, if you ever require the
assistance of a support technician, the first thing they
will instruct you to do is open registry editor.

It is perfectly safe for you to work with the registry,
provided that you back it up first (and you know how to
restore it). Windows automatically creates a backup of the
registry every time you start your computer. But when you
are making configuration changes, you usually have to
reboot your computer several times, possibly writing bad
data to the backup.

To make your own backup of the registry, start your system
with your startup floppy disk. (If you can’t find your
startup disk, use the Add/Remove utility in Control Panel
to make a new one. Place a copy of the file attrib.exe
from the c:windowscommand folder on the disk.)

After you start your system with your startup disk, use
DOS to change to the C:WINDOWS directory (type c: then
cd windows). Then carefully type in


the following DOS
commands.

attrib -s -h -r system.dat
attrib -s -h -r user.dat
copy system.dat c:
copy user.dat c:
attrib +s +h +r system.dat
attrib +s +h +r user.dat

Note: if your system is Windows Me, also back up
classes.dat

Then remove the startup disk and restart your system.

Why did I put you through such a laborious method just to
make a copy of two files? Could you just use Window’s
Explorer to copy the files? Could you use the Registry
Editor (Regedit) to back up the registry (or Windows Me
System Restore)?

Yes, you could. But what if your system crashed so that it
can’t even start in Safe Mode? Then you can’t use any of
those Windows programs to restore the registry. I put you
through the DOS method to make sure:

1. The boot sequence in your BIOS is setup to boot from
the A: drive.
2. You have the minimum proficiency with DOS to restore
the registry if required.
3. To make sure that you have a copy of attrib.exe on your
startup disk.

To restore the registry, start your system with your
startup disk. Use DOS to change to the c:windows
directory. Then type in the following commands.

attrib -s -h -r system.dat
attrib -s -h -r user.dat
del system.dat
del user.dat
cd
copy system.dat c:windows
copy user.dat c:windows
cd windows
attrib +s +h +r system.dat
attrib +s +h +r user.dat

Then remove the startup disk and restart your system.

My advice is to frequently use Windows Explorer to make
copies of the registry files. Make copies of the registry
files before you install any hardware or software or make
any changes to the registry. Make sure you are prepared
to use your startup disk and DOS to restore the registry.
----------------------------------------------------------
Resource Box:
Copyright(C)2002 Bucaro TecHelp. To learn how to maintain
your computer and use it more effectively to design a Web
site and make money on the Web visit
http://bucarotechelp.com
To subscribe to Bucaro TecHelp Newsletter Send a blank
email to bucarotechelp-subscribe@topica.com

About the Author

None