echo off echo This Utility was developed for TechSupersite.com by techsupersite.com echo It was developed to help low level computer users to backup thier software echo drivers. The driver files will be saved in a created folder located in echo "my Documents" called driverbackup. echo For more info visit http://www.techsupersite.com/driverbackup.html pause %homedrive% cd "%homepath%\my documents" md driverbackup cd driverbackup 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 driverbackup echo Congratulations. Your drivers are backed up. Now do yourself a favor and burn echo the contents of the driverbackup folder to disk. pause cls