6 lines
245 B
PowerShell
6 lines
245 B
PowerShell
# Remediation Script: Remediate_BitLocker.ps1
|
|
|
|
# Enable BitLocker on the system drive
|
|
Enable-BitLocker -MountPoint "C:" -EncryptionMethod XtsAes256 -UsedSpaceOnly -TpmProtector
|
|
|
|
Write-Output "BitLocker has been enabled on the system drive." |