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

VM Prep for conversion to PVE from VMWare

To make my life easier I have been working at automating the conversion process from VMWare virtual machines to Proxmox VE 9. The hardest pa...