我正在尝试通过带有 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
我收到一个错误:无法使用指定的命名参数解析参数集。
位锁定时是否可以同时使用密码和恢复密钥操作?
提前致谢