Wednesday, 5 April 2017

Bitlocker Powershell cheat sheet


Bitlocker command to encrypt secondary drive on a server:

Enable-BitLocker -MountPoint "E:" -UsedSpaceOnly -RecoveryPasswordProtector

To force a backup to AD:

manage-bde -protectors -get c:



manage-bde -protectors -adbackup e: -id {ID from the numerical password}

To Disable Bitlocker
disable-bitlocker -MountPoint E:
or, to do all drives:
$BLV = Get-BitLockerVolume Disable-BitLocker -MountPoint $BLV



No comments:

Post a Comment

SentinelOne Log Collector for Fortigate with Windows

I found all the official documentation to be confusing at best, or straight up misleading and wrong at worst for this issue. Below are the s...