Driver Backup Script

This is a "Quick" draft... Personally I would convert this to Robocopy. But xcopy should do exactly what you need. COPY FOLDERS & FILES and place them where you'd like.

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:

@echo off

pause

%homepath%

cd “%homepath%\my documents”

md xpDriverBackUp

cd xpDriverBackUp

xcopy %windir%\help /y

xcopy %windir%\inf /r /y

Tags