User Tools

Site Tools


computing:security:windows_bitlocker

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
computing:security:windows_bitlocker [2021/05/13 12:29]
gcooper
computing:security:windows_bitlocker [2021/05/13 14:38] (current)
gcooper
Line 8: Line 8:
  
 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.
 +
 +===== Control Panel =====
 +
 +{{ :computing:security:bitlocker_control_panel.png?direct&650 |Bitlocker Control Panel Applet}}
  
 ===== CLI ===== ===== CLI =====
Line 19: Line 23:
 Get-BitlockerVolume -MountPoint "E:" Get-BitlockerVolume -MountPoint "E:"
 </file> </file>
- 
-{{ :computing:security:bitlocker_control_panel.png?direct&650 |Bitlocker Control Panel Applet}} 
  
 ==== Enable Bitlocker ==== ==== Enable Bitlocker ====
Line 31: Line 33:
  
 <file> <file>
-manage-bde -protectors -add C: -recoverypassword -startupkey E: +manage-bde -protectors -add C: -recoverypassword -password -startupkey E: 
-manage-bde -protectors -add C: -password +manage-bde -status 
-manage-bde -UsedSpaceOnly -usedspaceonly -on C:+manage-bde -on C: -usedspaceonly
 </file> </file>
  
Line 88: Line 90:
  
 ====== Active Directory ====== ====== Active Directory ======
 +
 +<note tip>Use ''adsiedit.msc'' to delete keys from AD if they are no longer needed.</note>
  
 {{ :computing:security:bitlocker_ad_1.png?direct&600|Bitlocker Info Stored in AD}} {{ :computing:security:bitlocker_ad_1.png?direct&600|Bitlocker Info Stored in AD}}
Line 104: Line 108:
  
 https://www.experts-exchange.com/articles/33289/How-to-create-a-file-based-bitlocker-protector-for-recovery-and-support-purposes.html https://www.experts-exchange.com/articles/33289/How-to-create-a-file-based-bitlocker-protector-for-recovery-and-support-purposes.html
 +
 +<file>
 +Import-module ActiveDirectory
 +Get-ADObject -SearchBase ((GET-ADRootDSE).SchemaNamingContext) -Filter {Name -like 'ms-FVE-*'}
 +Get-ADComputer 'some-computer-name'| Get-ADObject -properties * | Select-Object distinguishedname, msFVE-REcoveryPassword, whencreated
 +</file>
computing/security/windows_bitlocker.1620930571.txt.gz · Last modified: 2021/05/13 12:29 by gcooper