This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
computing:security:windows_bitlocker [2021/04/29 11:45] gcooper |
computing:security:windows_bitlocker [2021/05/13 14:38] (current) gcooper |
||
---|---|---|---|
Line 9: | Line 9: | ||
Bitlocker has been available since Windows Vista but only in Professional and Enterprise versions. | Bitlocker has been available since Windows Vista but only in Professional and Enterprise versions. | ||
- | Show Bitlocker | + | ===== Control Panel ===== |
+ | |||
+ | {{ : | ||
+ | |||
+ | ===== CLI ===== | ||
+ | |||
+ | ==== Show Bitlocker | ||
< | < | ||
+ | manage-bde -status | ||
manage-bde -protectors -get e: | manage-bde -protectors -get e: | ||
- | |||
Get-BitLockerVolume | Get-BitLockerVolume | ||
+ | Get-BitlockerVolume -MountPoint " | ||
</ | </ | ||
- | {{ :computing:security:bitlocker_control_panel.png? | + | ==== Enable Bitlocker ==== |
+ | |||
+ | :!: These commands will allow you to specify a startup key on most any drive, not just USB drives. | ||
+ | |||
+ | :!: The '' | ||
+ | |||
+ | Add protectors and encrypt drive C: | ||
+ | |||
+ | < | ||
+ | manage-bde -protectors -add C: -recoverypassword -password -startupkey E: | ||
+ | manage-bde -status | ||
+ | manage-bde -on C: -usedspaceonly | ||
+ | </ | ||
+ | |||
+ | ==== Manage | ||
+ | |||
+ | Delete a protector: | ||
+ | |||
+ | < | ||
+ | manage-bde -protectors -delete c: -id {Protector-ID} | ||
+ | </ | ||
===== Bitlocker without TPM (Trusted Platform Module) ===== | ===== Bitlocker without TPM (Trusted Platform Module) ===== | ||
Line 23: | Line 50: | ||
When enabling Bitlocker it will check to see if your computer has TPM. If not, it will throw a message that you can use Bitlocker without it but need to change a Local Group Policy. | When enabling Bitlocker it will check to see if your computer has TPM. If not, it will throw a message that you can use Bitlocker without it but need to change a Local Group Policy. | ||
- | - In the Windows 10 Search box type gpedit.msc and press Enter to start the Local Group Policy Editor. | + | - In the Windows 10 Search box type '' |
- | - Go to Computer Configuration -> Administrative Templates -> Windows Components -> BitLocker Drive Encryption -> Operating System Drives. | + | - Go to **Computer Configuration -> Administrative Templates -> Windows Components -> BitLocker Drive Encryption -> Operating System Drives**. |
- | - In the right-hand pane double-click Require additional authentication at startup. | + | - In the right-hand pane double-click |
- | - Check the Enabled radio button and make sure that the box Allow BitLocker without a compatible TPM (requires a password or a startup key on a USB flash drive) box is checked. Then click OK. | + | - Check the **Enabled** radio button and make sure that the box **Allow BitLocker without a compatible TPM (requires a password or a startup key on a USB flash drive)** box is checked. Then click OK. |
===== Enable Bitlocker ===== | ===== Enable Bitlocker ===== | ||
Line 63: | Line 90: | ||
====== Active Directory ====== | ====== Active Directory ====== | ||
+ | |||
+ | <note tip>Use '' | ||
{{ : | {{ : | ||
- | **Docs**: https:// | + | **Group Policy Settings**: https:// |
https:// | https:// | ||
Line 77: | Line 106: | ||
https:// | https:// | ||
+ | |||
+ | https:// | ||
+ | |||
+ | < | ||
+ | Import-module ActiveDirectory | ||
+ | Get-ADObject -SearchBase ((GET-ADRootDSE).SchemaNamingContext) -Filter {Name -like ' | ||
+ | Get-ADComputer ' | ||
+ | </ |