Jump to content


anyweb

How can I Enable BitLocker on Hyper-v Gen 2 virtual machines during OSD using System Center 2012 R2 Configuration Manager ?

Recommended Posts

Introduction

Enabling BitLocker during New Computer scenarios has been a task organizations have been using for years now, indeed you've had the ability to automate it fully using FrontEnd's such as this one. As Virtual technology (such as Microsoft Hyper-V Generation 2) has improved in leaps and bounds, so has the need to protect those assets.

 

Of course you can BitLocker the Hyper-v host but wouldn't be nice to also BitLocker the virtual machines running on that host and do so using a task sequence in System Center 2012 R2 Configuration Manager. Up until now that's been a manual experience but with the steps below, it's semi-automated. I say semi because some user input is required in order to bypass the lack of TPM in a virtual machine.

 

Tip: Rather than create all these steps you can download the entire task sequence and scripts required in the CM12 UEFI BitLocker HTA which was updated with these changes, June 25th, 2015.

 

Step 1. Download the scripts.

I've created a few PowerShell scripts which you can use to achieve this task.

 

CM12 UEFI BitLocker HTA Scripts.zip

 

Extract the scripts to a folder on your ConfigMgr server.

 

the scripts.png

 

Step 2. Create a Package for the scripts

On the ConfigMgr server, create a new package called CM12 UEFI BitLocker HTA Scripts (or if you are already using the CM12 UEFI BitLocker HTA merge these files with the existing package and update it to your distribution points). Once the package is created, distribute it to the distribution points.

 

update dps.png

 

Step 3. Add steps to a deploy task sequence

In your deploy task sequence, add a new group by clicking on the Add drop down and select New Group.

 

Give the group a new name called Configure and Enable BitLocker - NewComputer, click on the Options tab and select that the step runs if Task Sequence Variable DeploymentType = NewComputer as shown below.

 

Deploymenttype equals new computer.png

 

Create another New Group called Set Encryption Algorithm

 

Next add a Use Toolkit Package step and directly after that create a new Run Command Line step to copy the scripts downloaded above to by doing as follows

 

Name: Copy Custom Scripts

Command Line: xcopy ".\*.*" "%scriptroot%\" /D /E /C /I /Q /H /R /Y /S

Package: CM12 UEFI BitLocker HTA Scripts

 

as shown here

 

copy custom scripts.png

 

Next create a Run Command Line step listed below

 

Name: Set AES-128

Command Line: reg.exe add "HKLM\Software\Policies\Microsoft\FVE" /v "EncryptionMethod" /t REG_DWORD /d 1 /f

 

Set the corresponding options on those steps should be like so

  • BitLockerValue = 128

AES 128.png

 

Next create a Run Command Line step listed below

 

Name: Set AES-256

Command Line: reg.exe add "HKLM\Software\Policies\Microsoft\FVE" /v "EncryptionMethod" /t REG_DWORD /d 2 /f

 

Set the corresponding options on those steps should be like so

  • BitLockerValue = 256

set aes 256.png

 

Next, create a new Run Command Line step outside of that group called Add reg keys to allow for no TPM and paste the following code into it, this code allows the Hyper-v Virtual Machine (Generation 2) to become bitlockered without a TPM and without having received Group Policy to do so.

cmd /c REG.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE" /v UseAdvancedStartup /t REG_DWORD /d 00000001 /f & cmd /c REG.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE" /v EnableBDEWithNoTPM /t REG_DWORD /d 00000001 /f & cmd /c REG.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE" /v UseTPM /t REG_DWORD /d 00000002 /f & cmd /c REG.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE" /v UseTPMPIN /t REG_DWORD /d 00000002 /f & cmd /c REG.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE" /v UseTPMKEY /t REG_DWORD /d 00000002 /f & cmd /c REG.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE" /v UseTPMKeyPIN /t REG_DWORD /d 00000002 /f


as shown below

 

Add reg keys to allow for no TPM.png

 

Next, create a new Run Command Line to popup a message box to inform the user about the coming BitLocker cmd prompt, name the step Popup to inform user about BitLocker Password. In the step, paste in the following line, note that this line depends on you copying the custom scripts previously from the

cscript.exe "%scriptroot%\BitLocker\BitLocker_Password_prompt.wsf"

The line above basically pops up a message and waits until the user clicks ok to continue.

 

popup to inform user.png

 

Next we Enable BitLocker using ServiceUI and PowerShell, via a Run Command Line step as specified below:

 

Name: Enable BitLocker

Command Line: %deployroot%\tools\x64\ServiceUI.exe -process:TSProgressUI.exe %SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy bypass -File "%scriptroot%\PowerShell\EnableBitLocker.ps1"

 

enable bitlocker.png

 

On the options tab, select Continue on Error as there is no checking in the script to verify the passwords entered, (maybe coming in a later version...)

 

Next we add a Restart Computer step as the computer needs to 'set' Encryption in motion and it needs to prompt for the password you entered above, the restart computer step should restart to the Currently installed default Operating System

 

restart computer.png

 

After restarting the computer, we need to add a Use Toolkit Package step, directly followed by a Copy Custom Scripts step as we did in the start of these modifications:

 

copy custom scripts again.png

 

and finally we add the Wait For Encryption to complete step which is another PowerShell script which first hides the task sequence progress and then waits for encryption to complete operations. This step is a Run Command Line step as specified here:

 

Name: Wait for Encryption to complete

Command Line: %deployroot%\tools\x64\ServiceUI.exe -process:TSProgressUI.exe %SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy bypass -File "%scriptroot%\PowerShell\WaitForEncryption.ps1"

wait for encryption to complete.png

 

That's it, save the changes and start testing the task sequence.

 

Step 4. Deploy a new virtual machine

On a Hyper-v Generation 2 virtual machine, PXE boot and start the CM12 UEFI BitLocker HTA task sequence, after it installs the operating system it will stop with a prompt shown below:

 

bitlocker password prompt.png

 

After carefully reading the prompt, click OK and the next phase begins..the task sequence progress window will appear briefly then disappear, an Adminstrative PowerShell cmd prompt will appear and it will prompt you to enter a BitLocker Password as shown below

 

type the password to use to protect the volume.png

 

enter the BitLocker password and press enter, you'll be asked to confirm the password

 

Note: While entering the password, no characters will appear in the cmd prompt, so enter it carefully !

 

confirm password.png

 

after some moments, the following will appear confirming your entries and informing you that the Password protector has been set, shortly after (5 seconds later) it will restart automatcially

 

about to restart.png

 

and now, you enter the BitLocker password in your Hyper-v Virtual machine, this is necessary as there is no TPM to store the password.

 

enter bitlocker password.png

 

after entering the password correctly the vm will continue with the task sequence and start encrypting the drive ! in addition, the second PowerShell script will kick into action and wait for the task sequence to finish encrypting the drive

 

encrypting in progress.png

 

and after completing that successfully, the task sequence finishes and you can login to review the BitLocker state.

 

bitlockered.png

 

Note: Security comes with a price tag, and in this case, that is incovenience due to a lack of a TPM. As the computer is now BitLockered, it will prompt for a password on every reboot unless your suspend BitLocker before the reboot, therefore if you want to deploy anything to your virtual machine that needs a reboot, either be prepared to manually enter the BitLocker password, or suspend Bitlocker using the following command:

manage-bde -protectors -disable c:

cheers

niall

Share this post


Link to post
Share on other sites

hi Alejandro, first of all what version of hyperv host are you running ? if it's recent then you can use the new Virtual TPM functionality and won't need my guide here,

 

Share this post


Link to post
Share on other sites

there are plenty of guides here to help you with that, just search for bitlocker, they might be in the SCCM 2012 guides as well....

 

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.