ERROR_VOLUME_NOT_SUPPORT_EFS - 6014 (0x177E)

The disk partition does not support file encryption.

Updated: Feb 21, 2026

Technical Background

The ERROR_VOLUME_NOT_SUPPORT_EFS error code, with the numeric value 6014 (0x177E), indicates that a file system volume does not support the Encrypting File System (EFS) feature in Windows. This error is specific to operations that require EFS functionality.

Error Details

Technical Meaning

EFS encrypts files and folders on NTFS volumes, providing data protection through user-specific encryption keys managed by the operating system. When an attempt is made to perform an operation requiring EFS support on a volume that does not have this capability enabled or supported, this error is returned.

Common Causes

  • The target volume is formatted with a file system other than NTFS (e.g., FAT32, exFAT).
  • The volume has been formatted but the EFS feature is not enabled on the volume.
  • The operation being performed does not support or require EFS functionality and thus should not be returning this error.

Real-World Context

This error typically occurs when a user attempts to encrypt files or folders, or when an application tries to access encrypted data. It can also appear during system operations that rely on EFS for security purposes.

Is This Error Critical?

The criticality of this error depends on the operation being performed. If encryption is required for the operation, then the error is critical as it prevents the intended functionality from executing successfully. However, if the operation does not inherently require EFS, the error can be ignored or handled appropriately.

How to Diagnose

Reviewing Operation Context

Ensure that the operation being performed genuinely requires EFS support. Check the file system type and verify whether EFS is enabled on the volume.

Validating Parameters

Verify that all parameters passed to the API or command are correct, especially those related to file paths and encryption settings.

Confirming Object Types

Ensure that the object types (files, directories) being operated upon are compatible with EFS. Only NTFS volumes support EFS.

How to Resolve

Correct Parameter Usage

If the operation genuinely requires EFS, ensure that all necessary parameters are correctly set and that the volume is formatted as NTFS with EFS enabled.

Adjust Operation Context

If the operation does not require EFS, adjust the context or use a different method that does not rely on this feature. For example, if copying files, consider using standard file operations instead of those requiring encryption.

Restore Data

In cases where data corruption might be an issue, ensure that all necessary backups are in place and can be restored if needed.

Developer Notes

When developing applications or scripts that interact with the Windows file system, it is essential to check whether EFS support is available before attempting operations that require it. This can be done by querying the volume's file system type and checking for EFS support using appropriate APIs.

Related Errors

FAQ

Q: Why am I getting this error when trying to encrypt files?

A: Ensure that the volume is formatted as NTFS and EFS is enabled. If not, format the volume with NTFS and enable EFS.

Q: Can I use this error code in my application?

A: Yes, you can use it to inform users or handle operations that require EFS support appropriately.

Summary

The ERROR_VOLUME_NOT_SUPPORT_EFS (6014) indicates a lack of EFS support on the target volume. This is specific to NTFS volumes and critical for operations requiring encryption. By understanding its context and implications, developers can ensure proper handling and avoid issues in their applications.