Site icon WP Htaccess Editor

How to Fix ZIP Extraction Error 0x80010135 in Windows 10 and 11 (Long File Path Issue)

Have you ever tried extracting a ZIP file on your Windows 10 or 11 computer only to be met with the dreaded error message “Error 0x80010135: Path too long”? This frustrating issue often occurs when a file or folder name inside the ZIP archive exceeds the Windows maximum path limit, preventing the ZIP extraction utility from completing the operation successfully. But don’t worry — this issue has several proven workarounds that can help you safely extract your files without losing a byte of data.

Understanding Error 0x80010135: The Long Path Name Problem

The error code 0x80010135 typically happens when the extracted file or folder exceeds the Windows legacy character limit for file paths. By default, Windows Explorer supports file paths up to 260 characters. This includes all folders, subfolders, and the file name itself. When this limit is exceeded, the built-in File Explorer extraction tool fails to handle the file appropriately, triggering the error.

While Windows 10 (from version 1607) and Windows 11 include a setting to remove this limitation, it isn’t always enabled by default — especially for older systems or systems where policies are managed centrally (like in enterprise environments).

Common Signs You’re Facing Error 0x80010135

Now that you understand what causes error 0x80010135, let’s walk through several easy methods to fix it.

1. Enable Long Path Support via Group Policy Editor

One of the most reliable ways to address this issue is by enabling long path support directly in Windows.

  1. Press Windows Key + R to open the Run dialog box.
  2. Type gpedit.msc and press Enter to open the Group Policy Editor.
  3. Navigate to:
    Computer Configuration → Administrative Templates → System → Filesystem
  4. Double-click on Enable Win32 long paths.
  5. Select Enabled and click OK.

Restart your computer for the changes to take effect. This method allows applications that support long paths to bypass the 260-character limit.

2. Extract Files to a Root Folder

If the file path is too long, one of the simplest solutions is to temporarily move the ZIP file to a root directory and extract it there.

  1. Move the ZIP file to C:\ or another drive’s root folder.
  2. Right-click the ZIP file and select Extract All… or use a third-party extractor.

This method shortens the path length during the extraction process, avoiding the Windows limit.

3. Use Third-Party File Extraction Tools

Built-in Windows tools often suffer from legacy constraints, but alternative extraction utilities often handle long paths more gracefully. Some popular tools include:

To use 7-Zip, for example:

  1. Download and install 7-Zip.
  2. Right-click your ZIP file and choose 7-Zip → Extract to “folder_name”.

These tools often bypass the character limit issue because they use more modern APIs or bypass some of the built-in Windows checks.

4. Use Command Prompt with Robocopy or xcopy

Sometimes, you can extract the files using command-line utilities that don’t enforce the same strict limitations as Windows Explorer. Tools like robocopy or xcopy can copy long file paths by using specific flags.

  1. Open Command Prompt as Administrator.
  2. Use a command like:
    xcopy "C:\path\to\source" "C:\dest\path" /E /I

This method is useful when you’re trying to move or copy partially extracted content from a long path directory.

5. Modify the Windows Registry (Advanced Users)

Another way to enable long path support is through the Windows Registry Editor.

  1. Press Windows Key + R, type regedit, and hit Enter.
  2. Navigate to:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
  3. Find the key named LongPathsEnabled.
  4. Double-click and set its value to 1.

As always, be cautious when editing the registry. Backup your system or create a restore point beforehand to avoid any unintended changes.

6. Shorten Folder Names or Structure Inside the ZIP

If you have control over the ZIP archive (for example, if you created it or can recreate it), you can simplify its internal structure:

This won’t always be possible, especially when dealing with third-party ZIP archives, but it’s an effective proactive measure when creating archives yourself.

7. Use PowerShell to Unzip

PowerShell provides cmdlets that can handle ZIP extraction more flexibly than the File Explorer method.

  1. Open PowerShell as Administrator.
  2. Run the following command:
    Expand-Archive -Path "C:\Path\To\File.zip" -DestinationPath "C:\ShortPath"

Make sure the destination path is as short as possible to avoid conflicts.

Pro Tips to Avoid This Error in the Future

Long paths are especially common in development environments, large project structures, and multi-user file sharing setups. Adopting smart folder organization practices can help you sidestep this error altogether.

Conclusion

Error 0x80010135 may seem like a roadblock, but with the right strategies, it’s a manageable problem. Whether you choose to adjust Group Policy settings, adopt advanced extraction tools, or simply restructure your folders, you’re no longer at the mercy of outdated system constraints. Embrace these techniques and give yourself one less thing to worry about when handling ZIP files on Windows.

By understanding the core cause and applying even one of the above fixes, you’ll be able to extract your archives smoothly and prevent future headaches.

Exit mobile version