0x80070011SystemLow
Error 0x80070011 — Not Same Device (ERROR_NOT_SAME_DEVICE) | Windows System Error Fix
Windows 11Windows 10Windows 8.1
What Does 0x80070011 Mean?
The system cannot move the file to a different disk drive. A rename operation was attempted across different volumes.
Real-World Causes
- 1Attempting to move a file across drives using a rename API instead of copy+delete
- 2Application using MoveFile without the MOVEFILE_COPY_ALLOWED flag
- 3Attempting junction or symbolic link operations across volumes incorrectly
Symptoms
- ⚠File move operation fails between different drives
- ⚠Application reports it cannot rename a file
- ⚠Drag-and-drop between drives fails in certain applications
Ad Space – header
DIY Fix
Beginner-friendly steps you can try at home
- 1Copy the file to the destination drive first, then delete the original
- 2Use Ctrl+C and Ctrl+V instead of Ctrl+X when moving between drives
- 3Use robocopy for reliable cross-drive file moves: 'robocopy source dest /move'
Advanced Fix
For experienced users and IT professionals
- 1Applications should use MoveFileEx with MOVEFILE_COPY_ALLOWED flag for cross-volume moves
- 2Use robocopy with /MIR for large directory moves across volumes
Ad Space – after-fix
Frequently Asked Questions
Why is moving files between drives different from moving within a drive?
Moving within the same drive just updates the directory entry (instant). Moving across drives requires copying all data then deleting the original, which takes time proportional to file size. Some operations only support the fast within-drive rename.
Related Error Codes
About the Author
Windows Troubleshooting Team
Verified against official Microsoft documentation and real-world diagnostic data. Error behavior confirmed across Windows 10, Windows 11, and Windows Server.