传递参数时出错 Windows 10 manage-bde

传递参数时出错 Windows 10 manage-bde

我正在尝试阻止 BitLocker 在每次启动时运行恢复过程,并按照给出的建议这里(我没有和问题相同的电脑):

# Get TPM ID to use in next command:
  Manage-Bde -Protectors -Get C:

# I don't understand why it isn't getting the argument:
  Manage-Bde -Protectors -Delete C: -ID {XXXXX}

    ERROR: Parameter "-ID" requires an argument.

  Manage-Bde -Protectors -Add C: -TPM

为什么它没有收到参数,这是每次启动时停止 BitLocker 恢复的正确方法吗?

答案1

Powershell 要求将 ID 括在引号中:

Manage-Bde -Protectors -Delete C: -ID '{XXXXX}'

相关内容