Windows XP creating a bat file

Status
Not open for further replies.
I am running windows XP Home OEM and lookign to setup a bat file so that it will copy all of say C:\Documents and Settings\myprofile and send it to another hdd or a network shared drive, how do i do this
 
Open notepad and type:
@echo off
xcopy /E /C /I /F /H /R /O /Y "c:\documents and settings\myprofile" \\my\destination

Then save the file with a .bat or .cmd extension
 
That would work IF Windows allows you access to copy those files. It is very possible this may not work because certain files in your profile settings may be "locked".
 
Status
Not open for further replies.
Back