Encrypting File System (EFS) allows users to encrypt files and folders on NTFS volumes, which can complicate data recovery and backup processes in enterprise environments. Disabling EFS encryption for all Active Directory users through Group Policy ensures consistent data management and reduces the risk of inaccessible files due to lost encryption keys.
Disable EFS Using Group Policy Management Console
Step 1: Open the Group Policy Management Console on a domain controller or a system with administrative tools installed. Press Win + R
, type gpmc.msc
, and press Enter
to launch the console.

Step 2: In the left panel, expand your forest and domain, then navigate to the Organizational Unit (OU) or domain where you want to apply the policy. Right-click the target OU or domain and select Create a GPO in this domain, and Link it here…
. Name the new Group Policy Object (GPO) such as “Disable EFS”.

Step 3: Right-click the new GPO and choose Edit
to open the Group Policy Management Editor. In the editor, navigate to Computer Configuration > Windows Settings > Security Settings > Public Key Policies > Encrypting File System
.

Step 4: Double-click Encrypting File System
in the right pane. In the properties window, select Do not allow
under the “Allow users to encrypt files using Encrypting File System (EFS)” setting. Click OK
to save your changes.

Step 5: Close the Group Policy Management Editor. The new GPO is now linked to your chosen domain or OU. The policy will apply to all computers within the scope at the next Group Policy refresh, which occurs automatically or can be triggered by running gpupdate /force
from the command line on client systems.
Step 6: Verify that the policy is working by attempting to encrypt a file on a client computer within the targeted OU or domain. Right-click a file, select Properties
, go to the General
tab, click Advanced
, and confirm that the option to encrypt is unavailable or grayed out.
Disable EFS Using Local Group Policy Editor (For Individual Systems)
Step 1: Open the Local Group Policy Editor by pressing Win + R
, typing gpedit.msc
, and pressing Enter
.

Step 2: Navigate to Computer Configuration > Windows Settings > Security Settings > Public Key Policies > Encrypting File System
.

Step 3: Double-click Encrypting File System
and set it to Do not allow
. Click OK
to apply the change.

Step 4: Close the Local Group Policy Editor. The change will take effect after a policy refresh or system restart.
Disable EFS Using Registry Editor (Advanced)
Step 1: Press Win + R
, type regedit
, and press Enter
to open the Registry Editor. If prompted by User Account Control, click Yes
.

Step 2: Navigate to the following registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\EFS
Step 3: In the right pane, right-click and select New > DWORD (32-bit) Value
. Name the new value EfsConfiguration
.

Step 4: Double-click EfsConfiguration
and set its value data to 1
. Click OK
.

Step 5: Restart the computer for the registry change to take effect. This method is best used for individual systems or as a scripted change for small groups of computers.
Disabling EFS via Group Policy offers centralized control and reduces risk of data loss from encrypted files. Regularly review Group Policy settings to ensure compliance and security across your organization.
Member discussion