question

TWJSTARY-7702 avatar image
0 Votes"
TWJSTARY-7702 asked LimitlessTechnology-2700 answered

Bitlocker lock my partition

Hi

Some drivers destroy my windows 11 and there was problem with start up. I try to fix it up in safe mode. But stupid windows want from me 48 key bitlocker. I dont got andy codes on my microsoft accounts. I install new windows 10 on diffrent partition becouse i want to get my files back. And its impossible becouse my partition C: is locked by s**t bitlocker. How to disable this usless trash or crack this.

Thank you

windows-server
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

LimitlessTechnology-2700 avatar image
0 Votes"
LimitlessTechnology-2700 answered

Hello @TWJSTARY-7702 ,

I believe you can do this using command "Disable-BitLocker -MountPoint "C:"" in powershell with admin mode.

Refer this link also,

https://docs.microsoft.com/en-us/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2019-ps

--please don't forget to upvote and Accept as answer if the reply is helpful--

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

LimitlessTechnology-2700 avatar image
0 Votes"
LimitlessTechnology-2700 answered

Hello @TWJSTARY-7702 ,


You can do this using the command "Disable-BitLocker -MountPoint" using PowerShell, see two examples below of how to do this:

Example 1: Disable BitLocker for a volume

Disable-BitLocker -MountPoint "C:"

Example Description: This command disables BitLocker for the specified BitLocker volume. BitLocker starts decrypting data in C: immediately.

Example 2: Disable BitLocker for all volumes

$BLV = Get-BitLockerVolume
Disable-BitLocker -MountPoint $BLV

Description of the example: This example disables BitLocker encryption for all volumes.

The first command uses Get-BitLockerVolume to get all BitLocker volumes for the current computer and stores them in the $BLV variable.

The second command disables BitLocker encryption for all BitLocker volumes stored in the $BLV variable. BitLocker starts decrypting data on volumes.

If the answer was helpful, please don't forget to vote up or accept as an answer, thanks.

Yours sincerely,
Samuel

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.