Your status says "encryption in progress", so it's clear that you cannot turn on Bitlocker once more - could that be the simple reason?
BitLocker Error on Windows 10/11 with MS Account
Hi,
I am trying to enable Bitlocker on Windows 10 /11 using command prompt /PowerShell.
Following GPO setting exists on both Windows 10 and Windows 11.
Method 1:
Add-BitLockerKeyProtector -MountPoint C: -PIN ('123123' | ConvertTo-SecureString -AsPlainText -Force) -TpmAndPinProtector
manage-bde.exe -protectors -enable C:
This works fines on offline account but NOT worked if a user is log-in using MS Account (which is default on Windows 11).
Method 2:
$SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force
Enable-BitLocker -MountPoint c: -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector
This example is taken from web (source: https://lazyadmin.nl/it/enable-bitlocker-windows-10/).
But this didn't worked as well, see below error message.
3 answers
Sort by: Most helpful
-
-
Dillon Silzer 57,686 Reputation points
Nov 14, 2022, 4:32 PM Hi @~OSD~
Try a minimum length of 6 digits.
With this policy setting, you can configure a minimum length for a TPM startup PIN. This policy setting is applied when you turn on BitLocker. The startup PIN must have a minimum length of four digits, and it can have a maximum length of 20 digits. By default, the minimum PIN length is 6.
Configure minimum PIN length for startup
-----------------------------------
If this is helpful please accept answer.
-
MTG 1,241 Reputation points
Nov 15, 2022, 9:39 AM Don't just quote the error but please include the command as well.
Please add the output of these batch commands:manage-bde -protectors c: -add -tp
manage-bde -on c: -used -s -em aes256 -rp