Copying files to NTFS mounted drives

265 Views Asked by At

I am currently testing over 30 devices at a time and as such I am having to mount the devices as NTFS folders. I can manually carry out my tests but I have been looking for a way to speed up this process and wrote the following short bat files to carry out this procedure.

for /d %%a in ("C:\MP3\*") do start xcopy /e "C:\Users\Michael\Desktop\MP3" "%%a"

Unfortunately when I run the batch file although it copies the files, it unmounts the drives and just turns them in to standard folders?

Why would this be happening?

0

There are 0 best solutions below