Sethalos Posted June 17, 2010 Share Posted June 17, 2010 Hello Neowinians, I have a problem I'm wondering if one of you hardware guru's can help with. I have a 250 gig external hard-drive that contains all of my music, pictures, and movies. I recently bought a 1 TB external drive and would like to put all of the contents of the 250 onto it. When I try to copy anything over, even one folder or one song, etc....I receive the following error: Invalid MS-DOS Function . Now, I can play the music, look at the photos, and watch the videos from my 250 just fine....they just won't copy over without me getting that error. Anyone have this problem or know the fix? I've checked out MS$ site with no luck, and google didn't help. Thanks, Seth Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/ Share on other sites More sharing options...
Phenom II Posted June 17, 2010 Share Posted June 17, 2010 Tried formatting the new drive to NTFS ? Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592769034 Share on other sites More sharing options...
+kjx Subscriber² Posted June 17, 2010 Subscriber² Share Posted June 17, 2010 Run chkdsk /f on it. Create a new text file on the 250GB and then try copying that over. Do you get the error? What file system is the 250GB formatted with? Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592769434 Share on other sites More sharing options...
Sethalos Posted June 17, 2010 Author Share Posted June 17, 2010 On 17/06/2010 at 05:40, Koshy John said: Run chkdsk /f on it. Create a new text file on the 250GB and then try copying that over. Do you get the error? What file system is the 250GB formatted with? Greetings, Thanks for your responses. 1) The file system is NTFS. 2) I created the text file, and no it won't copy, same issue. 3) I ran the chkdsk /f and nada. It's really strange, because the disk works fine...and I can copy to it, but everytime I try and copy from it I get that error. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771380 Share on other sites More sharing options...
+kjx Subscriber² Posted June 17, 2010 Subscriber² Share Posted June 17, 2010 Run chkdsk /r on the drive, because it sounds like the drive has bad sectors. It will take a long time to complete (several hours), but it will most likely fix your problem. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771436 Share on other sites More sharing options...
Matthew S. Posted June 17, 2010 Share Posted June 17, 2010 See if you can copy on you main drive with the same test, might actually be an issue with your install... Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771444 Share on other sites More sharing options...
Phenom II Posted June 17, 2010 Share Posted June 17, 2010 You say it is an external drive, in an external caddy via USB ? Have you tried a new USB lead / Caddy ? Can you create a new folder or file on the new drive via right click > new text file / folder ? Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771458 Share on other sites More sharing options...
Eric Veteran Posted June 17, 2010 Veteran Share Posted June 17, 2010 What motherboard/chipset do you have? It could be a USB driver issue. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771478 Share on other sites More sharing options...
Sethalos Posted June 17, 2010 Author Share Posted June 17, 2010 On 17/06/2010 at 15:44, GreyWolf said: What motherboard/chipset do you have? It could be a USB driver issue. Thanks Again. 1) Won't copy to the main HD either. 2) It's an HP Laptop, relatively new, not sure the mobo/chipset. 3) Ok, Ran CHKDSK /r and it completed with no bad sectors 4) It is an external HD within a Caddy connected by a USB cable...I switched out the cable and tried with a new. During my search around the websphere, I've found some others with a similiar problem only they had issues copying from a cd (data) to their hard drive. No solutions but all were using Win 7, so I'm wondering maybe if this could be an OS issue. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771602 Share on other sites More sharing options...
+kjx Subscriber² Posted June 17, 2010 Subscriber² Share Posted June 17, 2010 Try the HDD with another machine to see if the problem persists. If it does, we can isolate the problem to the HDD. Try copying a single file using the command prompt and tell us what error you get: copy /v X:\random.txt C:\Users\Your Name\random.txt (change appropriately) Also try: xcopy /c /j X:\random.txt C:\Users\Your Name\random.txt (change appropriately) Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592771674 Share on other sites More sharing options...
Sethalos Posted June 18, 2010 Author Share Posted June 18, 2010 On 17/06/2010 at 16:22, Koshy John said: Try the HDD with another machine to see if the problem persists. If it does, we can isolate the problem to the HDD. Try copying a single file using the command prompt and tell us what error you get: copy /v X:\random.txt C:\Users\Your Name\random.txt (change appropriately) Also try: xcopy /c /j X:\random.txt C:\Users\Your Name\random.txt (change appropriately) Hello, Ok, I tried copying with both commands, and both commands were successful. I created the random.txt file, and was able to copy via the commands. No idea how I would use the commands to copy the entire drive over, so if you know the proper syntax I'd like to give that a try. The problem drive is F:\ and I want to copy it to G:\ NOTE: Ok, so I found the Xcopy command and used the following: xcopy F:\*.* /a/e/k I received the error: The target volume does not support symbolic links So I looked up what a symbolic link was (basically a file linking from a different location)...so I verified that all the files are where they say they are. No clue. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592774772 Share on other sites More sharing options...
+kjx Subscriber² Posted June 18, 2010 Subscriber² Share Posted June 18, 2010 Format G: as NTFS. FAT32 volumes do not support symbolic links. Use the following command to copy stuff over: xcopy F:\* G:\* /E /F /Y /B /J (note: it will overwrite existing files in the destination with the same name; but that won't be an issue if G: is freshly formatted to NTFS) Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592775614 Share on other sites More sharing options...
Sethalos Posted June 18, 2010 Author Share Posted June 18, 2010 On 18/06/2010 at 09:54, Koshy John said: Format G: as NTFS. FAT32 volumes do not support symbolic links. Use the following command to copy stuff over: xcopy F:\* G:\* /E /F /Y /B /J (note: it will overwrite existing files in the destination with the same name; but that won't be an issue if G: is freshly formatted to NTFS) Yep, I read that, the G: drive is actually formatted as NTFS, as well as my main HD, and neither will be copied to from the F: Also, I think I've narrowed it down to the F: drive as the issue, I tried it on another computer and no go. Craziest problem I've ever encountered, lol. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592776570 Share on other sites More sharing options...
+kjx Subscriber² Posted June 18, 2010 Subscriber² Share Posted June 18, 2010 On 18/06/2010 at 13:57, Sethalos said: Yep, I read that, the G: drive is actually formatted as NTFS, as well as my main HD, and neither will be copied to from the F: Also, I think I've narrowed it down to the F: drive as the issue, I tried it on another computer and no go. Craziest problem I've ever encountered, lol. xcopy F:\* G:\* /E /F /Y /B /J /C The new switch I added will let xcopy continue copying even if errors occur. Hopefully that'll get your files across. If it does, verify that you have gotten what you need and just reformat F:. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592779134 Share on other sites More sharing options...
+John Teacake MVC Posted June 19, 2010 MVC Share Posted June 19, 2010 Your Windows 7 Copy is infected with MSDOS. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592781570 Share on other sites More sharing options...
Hum Posted June 19, 2010 Share Posted June 19, 2010 Try updating the computer's BIOS. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592781684 Share on other sites More sharing options...
Sethalos Posted June 19, 2010 Author Share Posted June 19, 2010 On 19/06/2010 at 11:00, Sawyer12 said: Your Windows 7 Copy is infected with MSDOS. This is why I prefer Linux....keeps me free of that nasty MSDOS virus. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592782940 Share on other sites More sharing options...
Malisk Posted June 19, 2010 Share Posted June 19, 2010 My question is only: How on Earth is MS-DOS involved here? :s Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592782952 Share on other sites More sharing options...
Sethalos Posted June 19, 2010 Author Share Posted June 19, 2010 On 19/06/2010 at 16:34, Northgrove said: My question is only: How on Earth is MS-DOS involved here? :s That is the error that I'm receiving when I try to copy files from a USB external drive to another. See first post. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592783822 Share on other sites More sharing options...
redvamp128 Posted June 19, 2010 Share Posted June 19, 2010 I would run a scandisk on the drive.. not the new TB drive but where the music and pictures are. I also found this KB that may apply -- not sure. http://support.microsoft.com/kb/976972 I would also try a live linux like Puppy Linux or Ubuntu and see if it can move the files -- to rule out a hardware issue. Link to comment https://www.neowin.net/forum/topic/911426-windows-7-copying-error-invalid-ms-dos-function/#findComment-592783854 Share on other sites More sharing options...
Recommended Posts