0X800F020F

SPAPI_E_DI_NOFILECOPY (0X800F020F) – No Files to Copy

You see this error when Windows tries to install a driver that doesn't need file copying. It usually means the driver is already present but not loading right.

What You're Seeing

The error code SPAPI_E_DI_NOFILECOPY (0X800F020F) means Windows is telling you: "I don't need to copy any files for this driver." This usually happens when the driver's .inf file points to files already on the system — but something's off. Maybe the driver isn't signed, or the device ID doesn't match, or the driver store is corrupted. The real fix is getting Windows to properly recognize and load the driver, not copy new files.

You'll see this most often when trying to update a network adapter or a sound card driver in Device Manager. The driver appears to install but then fails with this error.

Quick Fix (30 seconds): Restart and Try Again

  1. Close Device Manager and any open windows.
  2. Click the Start button, then the Power icon, then select Restart.
  3. After the computer boots back up, open Device Manager again (right-click Start > Device Manager).
  4. Right-click the device showing the error and select Update driver.
  5. Choose Browse my computer for drivers.
  6. Pick the folder where the driver files are stored. Click Next.

What to expect: Windows will scan that folder again. If the issue was a temporary glitch, the driver should install now. If you still see the same error, move to the moderate fix below.

Moderate Fix (5 minutes): Use Device Manager's "Update Driver" with the Right Folder

  1. Open Device Manager and right-click the problematic device (it usually has a yellow exclamation mark).
  2. Select Update driver > Browse my computer for drivers.
  3. Click Let me pick from a list of available drivers on my computer.
  4. In the list, you'll see one or more drivers. Don't pick the first one automatically. Look for the one that matches your device exactly — check the model number.
  5. Select it and click Next.
  6. Windows will try to install that driver. If it succeeds, you're done. If it fails with SPAPI_E_DI_NOFILECOPY again, continue to the next step.
  7. Back in Device Manager, right-click the device again and choose Uninstall device. Check the box that says "Delete the driver software for this device" if you see it.
  8. Restart your computer.
  9. After restart, open Device Manager. Windows should automatically detect the hardware and try to install the driver. If it doesn't, click Action > Scan for hardware changes.

What to expect: Uninstalling the device and its driver forces Windows to re-read the .inf file from scratch. If the driver is correctly signed and the INF is valid, this usually resolves the error.

Advanced Fix (15+ minutes): Manual Driver Installation via pnputil

If the quick and moderate fixes didn't work, the driver store might be corrupted or the driver's .inf file isn't being imported correctly. Using the command-line tool pnputil is the nuclear option — it forces the driver into the store.

  1. Right-click the Start button and select Windows Terminal (Admin) or Command Prompt (Admin).
  2. Type the following command and press Enter:
    pnputil /add-driver "C:\Path\To\Your\Driver\folder\*.inf" /install
    Replace the path with the actual folder where your driver's .inf file lives. For example:
    pnputil /add-driver "C:\Drivers\Network\*.inf" /install
  3. You'll see output like this:
    Microsoft PnP Utility
    Processing inf:            C:\Drivers\Network\netrt1.inf
    
    Driver package successfully added: C:\Drivers\Network\netrt1.inf
    Published Name: oem0.inf
    Total attempted: 1
    Number successfully imported: 1
    
  4. Important: Note the Published Name (like oem0.inf). Write it down. You'll need it if the driver still doesn't load.
  5. After the import, open Device Manager. Right-click the device and choose Update driver > Browse my computer for drivers > Let me pick from a list...
  6. Click Have Disk, then Browse. Navigate to C:\Windows\System32\DriverStore\FileRepository and find the folder with the published name (e.g., oem0.inf will be in a folder like oem0.inf_amd64_...<long hex code>).
  7. Select the .inf file inside that folder and click Open, then OK.
  8. Choose the matching driver from the list and click Next. This time it should install without the error.

What to expect: Using pnputil bypasses the normal driver store issues. If the driver still fails after this, the driver itself is likely corrupted or incompatible with your version of Windows (check if it's for the right architecture, like 64-bit vs 32-bit, and the correct OS version).

When All Else Fails

Sometimes the error comes from a driver that's not digitally signed for your version of Windows. In that case, you can try disabling driver signature enforcement temporarily:

  1. Open Start, click the Power icon, hold the Shift key, and click Restart. Keep holding Shift until the blue screen appears.
  2. Go to Troubleshoot > Advanced options > Startup Settings > Restart.
  3. After the restart, press F7 to select "Disable driver signature enforcement."
  4. Windows will boot up. Try installing the driver again from Device Manager.

What to expect: This is a temporary bypass. The driver will work until you reboot. For a permanent fix, you'll need a signed driver from the manufacturer. This workaround is best for testing — don't rely on it long-term.

I've seen this error mostly with older hardware (like a 2012 sound card) on Windows 10 or 11. The driver files are there, but Windows refuses to treat them as proper. The pnputil method above has saved me dozens of times in that exact scenario.

Related Errors in Windows Errors
0XC026231D 0xC026231D Fix: Frequency Range Not in Set Reset This PC Stuck at 99% – Real Fix That Works 0X00002162 Fix ERROR_DS_NC_STILL_HAS_DSAS (0x00002162) when demoting a domain controller 0XC0000264 STATUS_RESOURCE_NOT_OWNED (0XC0000264) Fix Guide

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.