1

我正在尝试通过带有 bitlocker 的 powershell 加密外部驱动器。

我在这里发布的脚本将是更大设置的一部分,其中所有连接到 pc 的磁盘将被自动格式化,然后在它们上启用 bitlocker。我正在尝试设置用于解锁卷的密码导出恢复密钥,以防最坏的情况通过...

编码:

$Pass = 'xxxxx.' | ConvertTo-SecureString -AsPlainText -Force
Enable-BitLocker -MountPoint "E:" -EncryptionMethod Aes256  -UsedSpaceOnly -PasswordProtector -Password $Pass 
Add-BitLockerKeyProtector -MountPoint "E:" -RecoveryKeyPath "D:\keys\" -RecoveryKeyProtector

do 
{
$Volume = Get-BitLockerVolume -MountPoint E:
Write-Progress -Activity "Encrypting volume $($Volume.MountPoint)" -Status "Encryption Progress:" -PercentComplete $Volume.EncryptionPercentage
Start-Sleep -Seconds 1
}
until ($Volume.VolumeStatus -eq 'FullyEncrypted')

Write-Progress -Activity "Encrypting volume $($Volume.MountPoint)" -Status "Encryption Progress:" -Completed

我收到一个错误:无法使用指定的命名参数解析参数集。

位锁定时是否可以同时使用密码和恢复密钥操作?

提前致谢

4

1 回答 1

1

呼叫时不能同时使用密码和恢复密钥Enable-BitLocker

来自TechNet:“启用加密时,您只能指定其中一种方法或组合,但可以使用 Add-BitLockerKeyProtector cmdlet 添加其他保护程序。”

所以Add-BitLockerKeyProtector启用后使用。

于 2018-02-12T11:37:19.683 回答