0

我正在使用以下 PowerShell 脚本在 C 驱动器上启用 BitLocker,

$SecureString = ConvertTo-SecureString "ABC123" -AsPlainText -Force Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -Password $SecureString

并获得输出,

命令管道位置 1 的 cmdlet Enable-BitLocker 提供以下参数的值: PasswordProtector:

我试图传递参数 Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 Add-BitLockerKeyProtector -Password $SecureString -RecoveryKeyPath "\fileserver\keys" -RecoveryKeyProtector

但是,它仍然显示错误。

任何人都可以有一个运行脚本来启用 BitLocker 吗?

4

1 回答 1

1

找到我的问题的解决方案,使用密码配置 BitLocker 的脚本,

$SecureString = ConvertTo-SecureString "123456789" -AsPlainText -Force Enable-BitLocker -MountPoint "D:" -EncryptionMethod Aes256 -PasswordProtector -Password $SecureString

于 2019-01-29T12:40:32.213 回答