Backup and Recovery


The Backup utility in Windows XP Professional helps you protect your data in the event your hard disk fails or files are accidentally erased due to hardware or storage media failure. By using Backup you can create a duplicate copy of all of the data on your hard disk and then archive it on another storage device, such as a hard disk or a tape.

If the original data on your hard disk is accidentally erased or overwritten, or becomes inaccessible because of a hard–disk malfunction, you can easily restore it from the disk or archived copy by using the Restore or Automated System Recovery Wizards. To start Backup or to access Restore and Automated System Recovery:  Click Start, click All Programs, click Accessories, click System Tools, and then click Backup.

Windows XP Backup, Restore, and Automated System Recovery all function when Windows XP Professional is functioning. If your computer does not start properly, you may need to use Recovery Console. Recovery Console provides a command line during Startup from which you can make system changes when Windows XP Professional doesn’t start.  To learn more about Backup, Restore, and Automated System Recovery, see Help and Support Center.
     Recovery Console
You can use Recovery Console to perform many tasks without starting Windows XP, including: starting and stopping services, reading and writing information on a local disk drive, and formatting drives. However, you must install Recovery Console while your computer is still functioning. The Recovery Console feature should be used only by advanced users. Before using Recovery Console, it is recommended that you back up your information on a tape drive, because your local hard disks might be reformatted—thus erased—as part of the recovery. You can also run Recovery Console from the Windows XP CD.

     To install Recovery Console as a Startup Option
Log on to Windows XP Professional as an administrator or as a user with administrator rights.
If your computer is connected to a network, network policy settings may prevent you from completing this procedure. Contact your network administrator for assistance. Insert the Windows XP Professional CD into your CD ROM drive. If you’re prompted to upgrade to Windows XP, click No.

From the command prompt—or from the Run command in the Start menu–type the path to the appropriate Winnt32.exe file (on your Windows XP Professional CD), followed by a space and /cmdcons to reference this switch. For example:
e:\1386\winnt32.exe /cmdcons.  Follow the instructions that appear.

     To run Recovery Console on a computer if Windows XP Professional does not start

Restart your computer, and then choose Windows Recovery Console from the list of operating systems. Follow the instructions that appear. Recovery Console displays a command prompt. Make the required changes to your system.

Back up your information regularly—using the Backup utility in Windows XP—to keep your archived data up–to–date.
It is also a good idea to backup important data and files before making any system changes, such as adding new hardware, updating drivers or firmware, and editing the registry. For more information about how to back up your data, see Help and Support Center. To see the commands available in Recovery Console, type “help” at the command prompt. To restart your computer, type “exit” to close the Recovery Console command prompt.
Backup Restore - From Win95, 98, Me
Cannot Restore Backups That You Create in Windows 95, Windows 98, or Windows Me with the Windows XP Ntbackup Tool.  To resolve this behavior, restore the data from the tape or file by using Msbackup on a computer that is running Windows 95, Windows 98, or Windows Me.
Suggested workaround:

Obtain the Win9x MSBACKUP program and run it in compatibility mode on the WinXP computer. If you do not have the program you can download a copy from Microsoft:  ftp://ftp.microsoft.com/softlib/mslfiles/msback.exe  (558K)

The MSBACK.EXE file is a self-extracting file containing the MSBACKUP.EXE program and supporting files.
Place this file on a floppy disk, open a DOS window, and execute the file. The MSBACKUP.EXE program and supporting files will be extracted to the same floppy.

You must then run the install program. Create a temporary directory on the hard drive and then command A>INSTALL C:\TEMP (or whatever directory name you made on the hard drive). MSBACKUP will then run and attempt to set itself up.
It is during this process that some users tend to find WinXP not allowing the program to proceed.
Backup VB Script
Move the folder/contents to another partition. Create a shortcut to it and place it on your desktop. Anything added will go to the new destination. It is merely a shortcut to the folder.

An added measure: Copy the four lines below into notepad and save as backup.vbs. Change NameofFolder to the correct name and create two backup folders according to the example below. In the done = change NameofFolder as well.

Set fso = CreateObject("Scripting.FileSystemObject")

fso.CopyFolder "C:\NameofFolder\*.*", "C:\NameofFolder_backup"
fso.CopyFolder "C:\NameofFolder\*.*", "E:\NameofFolder_backup"

done = MsgBox("Done", vbOKonly, "Backup NameofFolder")
Batch Files - .bat

Comments