Fix 0XC000019F: Short Names Not Enabled on Volume
This error pops up when apps or old systems try to use 8.3 short filenames on a volume where they're disabled. Common on NTFS drives, especially with newer Windows versions.
1. The Volume Has 8.3 Names Disabled (Most Common)
This is the big one. Windows 10 and 11 ship with 8.3 short filenames disabled on system drives by default. Some older apps—especially legacy accounting software, backup tools, or custom database apps—still need those short names to work. I had a client last month whose entire print queue died because their PDF workflow app couldn't read a file path longer than 8 characters. The error was 0XC000019F.
First, check if your volume has 8.3 names turned off. Open Command Prompt as Administrator and run:
fsutil 8dot3name query C:
Replace C: with your actual drive letter. If it returns something like The volume state is: 2 (Per volume setting - disabled) or 1 (Disabled for all volumes), that's your problem.
Fix: Enable 8.3 Names with fsutil
To re-enable 8.3 names for that specific volume, run:
fsutil 8dot3name set C: 0
Then reboot. This sets the volume to let Windows generate short names as needed. If you need this for the whole system (not recommended for SSD performance), you can set it via Group Policy or registry, but fsutil is faster and safer.
One quick note: on SSDs, disabling 8.3 names reduces write overhead. But if an app fails with this error, you need them on. It's a trade-off.
2. System-Wide Short Name Disabled in Registry
Sometimes the issue isn't per-volume—it's a global registry setting. This shows up when you check fsutil 8dot3name query and see 1 (Disabled for all volumes). This usually happens after an optimization tool or a manual registry tweak.
Open Registry Editor (regedit) and navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
Look for NtfsDisable8dot3NameCreation. If it's set to 1 or 2, that's disabling short names globally. Change it to 0 to enable them system-wide. Reboot after.
Had a client whose server backup kept failing with 0XC000019F after they ran a "cleanup" script from a forum. This registry key was set to 1. Changed it to 0, rebooted, backup ran fine.
Note: Setting this to 0 enables 8.3 names on all NTFS volumes, which can slow down directories with thousands of files. Only do this if you really need it.
3. Corrupted NTFS Volume or File System Metadata
Less common but real: if the volume's file system metadata is damaged, Windows might choke on short name creation even if 8.3 names are enabled. This often follows a crash, improper shutdown, or disk errors. I saw this on a client's Windows Server 2016 after a power outage—their file server threw 0XC000019F when trying to open any file in a specific folder.
Run a disk check with repair:
chkdsk C: /f
You'll need to schedule it and reboot. Let it complete. After that, check if the volume has 8.3 names enabled (step 1). If chkdsk finds corruption, it might fix the metadata, and short names start working again.
If chkdsk doesn't help, try sfc /scannow from an admin command prompt to check system files. Rarely, but I've seen a missing system file cause this.
Quick-Reference Summary Table
| Cause | Check | Fix |
|---|---|---|
| Volume has 8.3 names disabled | fsutil 8dot3name query C: |
fsutil 8dot3name set C: 0 + reboot |
| Global registry disables short names | NtfsDisable8dot3NameCreation in registry |
Set to 0, reboot |
| Corrupted NTFS volume metadata | chkdsk C: /f (schedule + reboot) |
Let chkdsk repair, then recheck 8.3 names |
Was this solution helpful?