To ensure that "Enable BitLocker" task encrypts the drive at the proper encryption method and cipher strength, add a "Run Command Line" task to the Task Sequence that sets the BitLocker encryption method and cipher strength correctly via a registry entry:
- In the ConfigMgr 2007 Admin console, navigate to the "Computer Management" --> "Operating System Deployment" --> "Task Sequences" node.
- Right click on the affected Task Sequence and choose "Edit".
- Click on the task immediately BEFORE the "Enable BitLocker" task.
- Click on "Add" --> "General" --> "Run Command Line". This should add a "Run Command Line" task immediately before the "Enable BitLocker" task.
- In the newly created "Run Command Line" task:
In the "Name:" text box, enter:
Set BitLocker Encryption Method and Cipher Strength
In the "Command line:" text box, enter in one of the following registry commands depending on the encryption method and cipher strength desired:
AES 256-bit with Diffuser
reg add HKLM\SOFTWARE\Policies\Microsoft\FVE /v EncryptionMethod /t REG_DWORD /d 2 /f
AES 128-bit
reg add HKLM\SOFTWARE\Policies\Microsoft\FVE /v EncryptionMethod /t REG_DWORD /d 3 /f
AES 256-bit
reg add HKLM\SOFTWARE\Policies\Microsoft\FVE /v EncryptionMethod /t REG_DWORD /d 4 /f
- Click on the "OK" or "Apply" button to save the Task Sequence.
After the "Enable BitLocker" step has run and BitLocker has been enabled, the encryption method and cipher strength applied can be checked by running the following command at an elevated command prompt after the Task Sequence has completed:
Manage-bde –status <Drive_Letter>
where <Drive_Letter> is the drive letter of the disk where BitLocker was enabled (without the brackets <>). For example, to check the encryption method and cipher strength on the C: drive, run the command:
Manage-bde –status c:
The above command can also be used to check the current progress of the drive encryption and/or if the encryption has been completed on the drive.