Fix 0X00000932: NERR_MaxLenExceeded String Too Long
This error hits when a network path or prefix exceeds Windows' 260-character limit. I'll walk you through trimming it down in under 30 seconds.
What's causing 0X00000932?
This one's a classic—you're trying to map a network drive or access a share, and Windows throws NERR_MaxLenExceeded (error 0X00000932). I've seen it most often when someone pastes a deep folder path from a file server, like \\corp-server\shared\projects\2023\Q4\client-name\final-drafts\revisions\v2. The entire string—including the prefix—exceeds Windows' 260-character limit for paths. Annoying, right? Let's kill it fast.
Fix 1: Shorten the path (30 seconds)
This is the no-brainer fix. If you're in a hurry, just reduce the path length. Here's how:
- Map the root share first:
net use Z: \\server\share - Then navigate into folders from there:
Z:\final-drafts\revisions\v2
That instantly drops the full UNC path length below the limit. I do this for quick file transfers—takes 30 seconds. If the error persists after shortening, move to Fix 2.
Fix 2: Enable long path support via Registry (5 minutes)
Windows 10 (version 1607 and later) and Windows 11 support long paths—but they're off by default. Flip this switch:
- Press Win + R, type
regedit, hit Enter. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem - Find LongPathsEnabled. If it's missing, right-click > New > DWORD (32-bit) and name it
LongPathsEnabled. - Set its value to
1. - Restart your PC.
Note: This only works for apps that declare long path support in their manifest. Most modern Windows apps (File Explorer, PowerShell 5.1+) handle it fine. Older software? Not so much. Test it—if the error still shows, you might be using an app that ignores this setting.
Fix 3: Group Policy for long paths (5 minutes, same fix different door)
If you're on a domain-managed machine, Group Policy might override your registry tweak. Check this:
- Press Win + R, type
gpedit.msc, hit Enter. - Go to Computer Configuration > Administrative Templates > System > Filesystem.
- Double-click Enable Win32 long paths.
- Set it to Enabled.
- Click OK, then run
gpupdate /forcein a command prompt.
This forces the setting down even if something else tried to disable it. I've seen this fix stubborn cases where the registry change alone didn't stick.
Fix 4: Map the drive with a shorter prefix (15+ minutes, advanced)
OK, the above didn't work? You're likely dealing with a network share where the prefix itself is huge—like a DFS namespace path. Example: \\domain.com\corp\long\prefix\share\subfolder\file.docx. The prefix \\domain.com\corp\long\prefix\ eats half your 260 characters. Here's the real fix:
- Open an elevated Command Prompt (Run as Administrator).
- Use subst to assign a drive letter to the deep folder:
subst X: \\domain.com\corp\long\prefix\share - Now access the file as
X:\subfolder\file.docx. - To make it permanent, create a batch file that runs at startup (put it in
shell:startup).
This bypasses Windows' path length limit entirely at the kernel level. I've used this for years on file servers with absurdly deep directory structures. Only downside: subst drives aren't available to all users—just the one who ran the command.
Fix 5: Use symbolic links (15+ minutes, for power users)
Harder than subst, but more flexible. Create a symlink on your local drive that points to the deep network path. Here's how:
- Create a local folder:
mkdir C:\link-target - Run:
mklink /D C:\link-target \\server\very\long\path\to\share - Then access
C:\link-target\file.docx.
Symlinks respect the same 260-character limit for the target path, but they let you work with shorter local paths. I only reach for this when the network path is over 248 characters and subst doesn't cut it.
Final checklist
- Did you shorten the path? (Fix 1)
- Did you enable LongPathsEnabled in registry? (Fix 2)
- Did you check Group Policy? (Fix 3)
- Did you try
substor symlinks? (Fix 4 or 5)
If none of these work, you're probably hitting a separate issue like a permissions problem or a dead network share. But for 0X00000932 specifically, one of these five fixes will kill it. I promise.
Was this solution helpful?