How to run robocopy without copying extended attribute information?

Hi,

I have a bat script that copies certain information from a computer to a USB hard drive using Robocopy. The FAT hard drive is formatted and therefore does not support directories with extended attributes, which results in a robocop 282 error as described here .

How do I tell robocopy to copy all EXCEPT attribute information for extensible attributes?

I still need help, but some useful info from googling-ive made so far

EDIT: Wow, the file system is not FAT, I was wrong. Its RAW.

+3
source share
2 answers

I found that I got error 282 when copying directories using robocopy. So I used xcopy with / T / E to create a directory structure. Then I was able to use robocpy to copy all files without errors.

+1
source

Converting a FAT USB hard drive to NTFS using the conversion command (converting in this direction will not delete data): http://technet.microsoft.com/en-us/library/bb456984.aspx

eg:

convert e: /fs:ntfs 
0
source

All Articles