Home     Blog

How to Backup Windows XP Drivers

The term driver refers to files that permit hardware and software programs to interface with the Windows Operating System (OS). All hardware components require a driver file in order to work properly with the Windows XP OS unless they are compatible with one of the generic driver files included with the OS. These files are normally stored on the computer’s hard drive. However, a prudent computer owner will make a backup copy of the drivers on the Windows XP OS, to make recovery from malware infection or other catastrophic computer failure a bit easier to accomplish. The two primary ways to backup Windows XP Drivers are by using Windows System Restore or using a third party tool or batch script.

How to Backup Windows XP Drivers with System Restore

Step 1 – Select “Start” and then highlight the “All Programs” menu tab.

Step 2 – Select the “Accessories” and “System Tools” menu options.

Step 3 – Choose the “System Restore” menu choice and then the “Create a restore point” menu option. How to Backup Windows XP Drivers

Step 4 – Click “Next” and Windows will create a restore point that will save the Windows XP drivers and other OS settings as they are currently configured on the computer.

Step 5 – Restart the computer to complete successfully backing up its Windows XP drivers.

Back Up Windows XP Drivers Manually

Hat tip to Lincoln Spector of PCWorld, who originally published the batch file on which this script is based on September 23, 2008.

A number of veteran Windows users do not trust any Microsoft produced tool such as Windows Restore. Such users can use the following manual method to back up their Windows XP Drivers. This, along with Windows XP System Restore, give two back up copies of the computer’s Windows XP drivers.

Step 1 – Open Windows Notepad by selecting the program icon from the Windows Accessories sub-menu on the Start menu.

Step 2 – Copy and paste the following text into the blank text document:

pause

%homedrive%

cd “%homepath%\my documents”

md xpDriverBackUp

cd xpDriverBackUp

xcopy %windir%\help /y

xcopy %windir%\inf /r /y

xcopy %windir%\system /r /y

xcopy %windir%\system32 /r /y

xcopy %windir%\system32\drivers /r /y

cd ..

attrib -h driverback

pause

Step 3 – Save the file with a logical file name such as “WindowsDrivers.bat” and ensure that the file extension is saved as “.bat”

Step 4 – Double click the new batch file, which will then save the Windows driver files to the directory specified in Step 2.

Step 5 – Save the backup driver folder to a memory stick or CD to store the driver files in a location other than the computer.

 

VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
Follow javanx3d on

Leave a Reply

Related Posts

  • Device Drivers

    Device drivers are simple software code that allows a higher level program on your computer such as an operating system to control a device. Today there are many peripherals for home computers and laptops such as printers, scanners, keyboards, etc. All of these devices require the operating system and sometimes other software programs that run [...]...


  • How to Backup iTunes

    Since the release of iTunes in 2001, a significant number of computer users have used the proprietary application as their primary means of managing multimedia files on their computer. Unfortunately, there is no inherent redundancy built into the iTunes program to help guard against computer hard drive failure, significant malware infection, etc. As a result, [...]...


  • Incremental Backup

    An incremental backup is a backup of every file on a file system which has changed since the last backup. The alternatives to an incremental backup are differential backup and full backup. An incremental backup is the fastest backup and requires the least storage space on the backup media. However, incremental backups also require the [...]...


  • How to Undelete in Windows

    We have all made mistakes using our computer where we have mistakenly deleted an item, changed an item or renamed it. While these slips of the mouse or mind can be critical at times, there are a few ways you can restore and undelete your changes in Windows. The three ways to do so is [...]...


  • How to Uninstall Windows

    The Microsoft Windows Operating System (OS) is one of the most widely deployed operating systems in the world. Microsoft upgrades the OS every two to four years in order to bring the latest functionality, features, and security upgrades to the end-user. Unfortunately, each new version of Windows does not prove to be compatible or supported [...]...