Bitlocker: Difference between revisions

From WikiWiki
Jump to navigation Jump to search
No edit summary   (change visibility)
No edit summary   (change visibility)
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
<syntaxhighlight language="powershell">
<syntaxhighlight language="powershell">
manage-bde -protectors -get c:
manage-bde -protectors -get c:
Description:
    Configures BitLocker Drive Encryption on disk volumes.
</syntaxhighlight>
</syntaxhighlight>


Line 17: Line 19:
<syntaxhighlight language="powershell">
<syntaxhighlight language="powershell">
BdeHdCfg.exe -target default -quiet  
BdeHdCfg.exe -target default -quiet  
Description:
  This command prepares your hard drive for BitLocker Drive Encryption.
  Command line parameters are not case-sensitive.
</syntaxhighlight>
</syntaxhighlight>
Wipe config
manage-bde C: -protectors -add -rp [optionally specify the new 48-digit password or enter nothing to have it randomly generated for you]
manage-bde C: -protectors -delete -id [paste the ID you copied here]
wipe tpm via tpm.msc
https://www.itsupportguides.com/knowledge-base/windows-7/windows-7-change-bitlocker-recovery-key/

Latest revision as of 15:02, 5 February 2019

full disk encryption from Microsoft!


manage-bde

specific bitlocker powershell cmdlets


manage-bde -protectors -get c:
Description:
    Configures BitLocker Drive Encryption on disk volumes.


BdeHdCfg.exe -target default -quiet 
Description:
  This command prepares your hard drive for BitLocker Drive Encryption.

  Command line parameters are not case-sensitive.


Wipe config

manage-bde C: -protectors -add -rp [optionally specify the new 48-digit password or enter nothing to have it randomly generated for you]
manage-bde C: -protectors -delete -id [paste the ID you copied here]
wipe tpm via tpm.msc

https://www.itsupportguides.com/knowledge-base/windows-7/windows-7-change-bitlocker-recovery-key/