|
Please help w/ batch file!!! Thanks!
I need a batch file to backup some folders and files on the root C:\ drive of a Windows XP Professinal. I have an old batch file that worked well on a Windows ME system, but it doesn't work on the XP Pro machine. I need to backup the files from the C: drive to the CD-RW drive.
Here is the old batch file. Please help as to what I would need to change. Thank You!!!
--------------------------------------------------------
cd\
c:
XCOPY C:\MBACHI\*.* D:\MBACHI\*.*
XCOPY C:\MBACHI\DEFAULT_DC\*.* D:\MBACHI\DEFAULT_DC\*.*
XCOPY C:\MBACHI\DEFAULT_MD\*.* D:\MBACHI\DEFAULT_MD\*.*
XCOPY C:\MBACHI\IMAGES\*.* D:\MBACHI\IMAGES\*.*
XCOPY C:\MBACHI\MBAWIN\*.* D:\MBACHI\MBAWIN\*.*
XCOPY C:\MBANOTE\*.* D:\MBANOTE\*.*
XCOPY C:\MBACHI\WP_DC\*.* D:\MBACHI\WP_DC\*.*
XCOPY C:\MBACHI\WP_MD\*.* D:\MBACHI\WP_MD\*.*
XCOPY C:\WP\*.* D:\WP\*.*
XCOPY C:\ARCHIVE\*.* D:\ARCHIVE\*.*
XCOPY C:\A\*.* D:\A\*.*
XCOPY C:\B\*.* D:\B\*.*
XCOPY C:\C\*.* D:\C\*.*
XCOPY C:\D\*.* D:\D\*.*
XCOPY C:\E\*.* D:\E\*.*
XCOPY C:\F\*.* D:\F\*.*
XCOPY C:\G\*.* D:\G\*.*
XCOPY C:\H\*.* D:\H\*.*
XCOPY C:\I\*.* D:\I\*.*
XCOPY C:\J\*.* D:\J\*.*
XCOPY C:\K\*.* D:\K\*.*
XCOPY C:\L\*.* D:\L\*.*
XCOPY C:\M\*.* D:\M\*.*
XCOPY C:\N\*.* D:\N\*.*
XCOPY C:\O\*.* D:\O\*.*
XCOPY C:\P\*.* D:\P\*.*
XCOPY C:\Q\*.* D:\Q\*.*
XCOPY C:\R\*.* D:\R\*.*
XCOPY C:\S\*.* D:\S\*.*
XCOPY C:\T\*.* D:\T\*.*
XCOPY C:\U\*.* D:\U\*.*
XCOPY C:\V\*.* D:\V\*.*
XCOPY C:\W\*.* D:\W\*.*
XCOPY C:\X\*.* D:\X\*.*
XCOPY C:\Y\*.* D:\Y\*.*
XCOPY C:\Z\*.* D:\Z\*.*
---------------------------------------------------------
|