Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Data encryption is a crucial aspect of securing sensitive information on your Windows systems. Windows offers built-in tools such as BitLocker and Encrypting File System (EFS) to help you encrypt data effectively. This article will guide you through the process of using these tools to ensure your data remains protected.
BitLocker is a full disk encryption feature that helps protect data by providing encryption for entire volumes. Here's how you can enable BitLocker on a Windows machine:
Open Control Panel:
Win + X
and select Control Panel
.Navigate to BitLocker Drive Encryption:
System and Security
> BitLocker Drive Encryption
.Turn On BitLocker:
Turn on BitLocker
.Choose How to Unlock Your Drive:
Save Your Recovery Key:
Choose What to Encrypt:
Choose Encryption Mode:
New encryption mode (best for fixed drives on this device)
or Compatible mode (best for drives that can be moved from this device)
.Start Encryption:
Start Encrypting
and wait for the process to complete.EFS is used to encrypt individual files and folders, providing a flexible alternative to full disk encryption. Here’s how to use EFS:
Right-Click the File or Folder:
Properties
.Advanced Attributes:
General
tab, click Advanced
.Encrypt Contents to Secure Data:
Encrypt contents to secure data
and click OK
.Apply Changes:
OK
.Backup Your Encryption Key:
You can also enable BitLocker using the Command Prompt:
manage-bde -on C: -RecoveryPassword
This command enables BitLocker on the C: drive and generates a recovery password.
To encrypt a folder using EFS via Command Prompt, use the cipher
command:
cipher /e "C:\Users\YourUsername\Documents\SensitiveFolder"
This command encrypts the SensitiveFolder
located in your Documents directory.