Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
BitLocker is a full-disk encryption feature included with Microsoft Windows versions starting from Windows Vista and Windows Server 2008. It is designed to protect data by providing encryption for entire volumes. Enabling BitLocker on your Windows machine can help secure your data against unauthorized access. This article will guide you through the process of enabling BitLocker using both the graphical user interface (GUI) and the command line interface (CLI) via PowerShell.
Open the Control Panel:
Win + R
, type control
, and press Enter.Navigate to BitLocker Drive Encryption:
System and Security
and then click on BitLocker Drive Encryption
.Turn on BitLocker:
Turn on BitLocker
.Choose How to Unlock Your Drive:
Backup Your Recovery Key:
Choose How Much of Your Drive to Encrypt:
Choose the Encryption Mode:
New encryption mode
. For drives that will be moved to older versions of Windows, choose Compatible mode
.Start Encryption:
Start Encrypting
to begin the process.For those who prefer using the command line, PowerShell provides a way to enable BitLocker.
Open PowerShell as Administrator:
Win + X
and select Windows PowerShell (Admin)
.Enable BitLocker:
Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -PasswordProtector
This command will prompt you to enter a password for the drive.
Backup Recovery Key:
Backup-BitLockerKeyProtector -MountPoint "C:" -KeyProtectorId (Get-BitLockerVolume -MountPoint "C:").KeyProtector[0].KeyProtectorId -RecoveryPasswordProtector
Start Encryption:
Resume-BitLocker -MountPoint "C:"