Link to home
Start Free TrialLog in
Avatar of tituba2
tituba2

asked on

DOS Syntax Question

Have to recover documents off a user's hard drive - NTFS partition - Windows 2000.

Used utility on sysinternals and am able to get to hard drive.

Since I haven't used DOS is what seems like a hundred years - I'm rusty on the syntax.  Is there a DOS command to copy a file folder and all of it's contents?  Or - do I have to go folder by folder?

Thanks!!
Avatar of jhance
jhance

XCOPY is what you are looking for.  Try something like:

XCOPY C:\SOURCEFOLDER D:\DESTFOLDER /E /T
Avatar of tituba2

ASKER

Will this syntax span disks?
No it will not. Xcopy has no such logic.
If you need to span desitination disks use a backup program of some sort (NT BACKUP will do this) or something like WinZIP (my favorite).
Avatar of tituba2

ASKER

Can't use winzip - cannot get into Windows environment.  Just trying to salvage what is on this user's desktop.  

The NTFS utility is seeing the NTFS partition as drive E

When I use the following syntax
xcopy e:\winnt\profiles\user\desktop\stuff a:/s

I get the error:
CDR101:  Not reading drive D

Any ideas?  This user has a zillion files she saved in a good fifty folders on her desktop.
ASKER CERTIFIED SOLUTION
Avatar of j2
j2
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
what utility did you use? you may be able to run chkdsk and make the machine bootable again. or, as j2 says, us ntrecover or remote recovery to copy the files to a host machine.
Avatar of tituba2

ASKER

Reinstalled second copy of NT and am able to get to system to bring files back to my network.  Ended up being the cleanest solution.  Thanks!  Xcopy just didn't want to work.