如何为C驱动器或任何驱动器启用Bitlocker?

时间:2018-11-26 13:13:47

标签: bitlocker

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

$ SecureString = ConvertTo-SecureString“ ABC123” -AsPlainText -Force Enable-BitLocker -MountPoint“ C:” -EncryptionMethod Aes256-密码$ SecureString

并获得输出,

cmdlet Enable-BitLocker在命令管道位置1 提供以下参数的值: 密码保护器:

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

但仍然显示错误。

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

1 个答案:

答案 0 :(得分:1)

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

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