Windows 2012 Server File Encryption

7,056

BitLocker only protects data at rest.

EFS only uses public/private key encryption - certificates. The certificates may be self-signed and created automatically by Windows (sub-optimal), or you can have your AD CA auto-enroll users for EFS certificates (preferred). CA-issued certificates may be required, unless your usage scenario is very simple. Certificates may also be associated with AD accounts/published in AD. Sharing EFS encrypted data between users is a bit convoluted.

There are also separate Data Recovery Agent (DRA) account/certificates that are not required for EFS to work, but are a good idea to have/configure if you need to decrypt the data in the event you lose access to the account that encrypted the files. By default, the builtin Administrator account may be designated as the DRA.

EFS is very complicated to configure and manage correctly. If you only have few spreadsheets, you may want to evaluate if the Excel password protection is an option (should be xlsx, due to the older format password scheme was woefully insecure).


Find some usefull links on microsoft.com as follows,

The Encrypting File System

Best practices for the Encrypting File System

Enabling File Encryption

Share:
7,056

Related videos on Youtube

Acerbity
Author by

Acerbity

Updated on September 18, 2022

Comments

  • Acerbity
    Acerbity over 1 year

    I am looking for a solution to encrypt directories/files on a Windows 2012 server.

    Several Excel files will be stored in a share, and I am looking for a solution to encrypt them independently. From what I can tell, BitLocker is not what I am looking for, but EFS might work for me.

    Is there a way to use EFS using only domain credentials for access, or are certificates necessary?

    • Peter Hahndorf
      Peter Hahndorf about 9 years
      if you are using the xlsx format and allow more than one user access to the files, it becomes a pain because after editing the file is only encrypted for the current user and lost information about any other users.
  • Acerbity
    Acerbity about 9 years
    Unfortunately there is nothing simple about my situation. Thanks for the info, this is on par with what I had found already.