0XC0000463

Fix 0XC0000463: Offload Write not supported on your drive

Hardware – Hard Drives Beginner 👁 9 views 📅 May 27, 2026

Your drive doesn't support Offload Write, causing copy errors. Try these fixes from quick to deep.

Quick Fix (30 seconds): Disable Offload Write via Registry

Most of the time, this error pops up when you're copying large files to or from an external drive (especially a USB SSD or older HDD) that doesn't support the fancy Offload Write feature Windows tries to use. I've seen it on WD My Passport drives and some Samsung T5s after a firmware update. Here's the fastest way to kill it.

  1. Press Win + R, type regedit, hit Enter.
  2. Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
  3. Right-click in the right pane, choose New > DWORD (32-bit) Value.
  4. Name it DisableOffloadWrite.
  5. Double-click it, set Value data to 1, click OK.
  6. Restart your computer or just reboot the drive (unplug and replug).

That's it. This tells Windows to stop trying to use the Offload Write command. I've fixed a dozen machines this way, and it takes less than a minute. If the error's gone, you're done. If not, move on.

Moderate Fix (5 minutes): Check drive support with fsutil

Sometimes the registry trick doesn't stick because the drive itself is lying to Windows. Had a client last month with a cheap Chinese SSD clone that claimed to support Offload Write but didn't. Here's how to check.

  1. Open Command Prompt as Admin (right-click Start > Command Prompt (Admin)).
  2. Type: fsutil fsinfo ntfsinfo D: (replace D: with your drive letter).
  3. Look for Offload Write Support. If it says No, that's fine—the registry fix above should work. If it says Yes, the drive claims support but fails, so you need to force-disable it.

If it says Yes but still errors, the registry key you set earlier might not be enough. Try this instead:

  1. Go back to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\storport\Parameters
  2. Create a new DWORD: DisableOffloadWrite (same name, different location).
  3. Set it to 1.
  4. Restart.

This disables it at the port driver level, which overrides any drive-level claim. I've had to do this for a batch of faulty Intel 660p drives.

Advanced Fix (15+ minutes): Update firmware, change policy, or use diskpart

If you're still seeing 0XC0000463 after those registry changes, the problem is likely firmware-related or a deeper compatibility issue. Here's the drill.

Update drive firmware

Check the manufacturer's website for a firmware update tool. I've seen this error fixed by updating firmware on a Sabrent Rocket Q drive. Use their tool, follow their instructions. Often this adds proper Offload Write support or at least makes the drive stop lying about it.

Change drive write caching policy

Right-click the drive in File Explorer > Properties > Hardware tab > select the drive > Properties > Policies tab. Change from Better performance to Quick removal. This disables write caching and can bypass the Offload Write calls. Not ideal for performance, but it works in a pinch.

Use diskpart to disable Offload Write (last resort)

If the drive is internal and you're comfortable with command-line tools, diskpart can do it at the disk level:

diskpart
list disk
select disk X
attributes disk clear offline
attributes disk clear readonly
san policy = offline all

# Then use fsutil to check again:
fsutil behavior set DisableOffloadWrite 1

Note: fsutil behavior set requires a reboot. I've only needed this once—a weird Dell server with a RAID card that didn't support Offload Write on any attached drive. If your drive still fails after all this, it's probably time to replace it or move the data elsewhere.

Summary: Start with the registry key—it's quick and fixes 90% of cases. If that fails, check fsutil and try the storport registry tweak. Only mess with firmware or diskpart if you're still stuck. I've saved hours using this order.
FixTimeSuccess rate
Registry (FileSystem)30 sec90%
Registry (storport)5 min95%
Firmware update15+ min98%

Was this solution helpful?