我正在使用以下 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 吗?