如何利用 Bitlocker cmdlet?

如何利用 Bitlocker cmdlet?

本文提示可以使用以下方法解锁位锁驱动器:

Unlock-BitLocker -MountPoint -Password

但是,我对 Powershell 以及如何使用 Powershell cmdlet 来执行我想要的操作一无所知。

那么,我该如何使用上述方法做以下的事情呢?

Unlock-BitLocker -MountPoint D:\ -Password "password"

目前我所知道的只是启动 Powershell,仅此而已。我不想学习大量的 Powershell 才能做到这一点。我所需要知道的只是如何执行第一个链接中指出的命令。

到目前为止,如果我在 powershell 提示符中输入:

Unlock-BitLocker -MountPoint D:\ -Password "password"

我收到以下错误:

The term 'Unlock-BitLocker' is not recognized as the name of a cmdlet, function, script file, or operable program. Chec
k the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:17
+ Unlock-BitLocker <<<<  -MountPoint D:\ -Password "password"
    + CategoryInfo          : ObjectNotFound: (Unlock-BitLocker:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

这很可能是因为我不知道最初链接的页面上的命令在 powershell 上下文中是如何工作的。

这样我就可以在这里回答我自己的问题:

https://superuser.com/questions/437713/bitlocker-and-scheduled-task-powershell-script-to-unlock-non-system-drive

答案1

如上所述这里(“实际应用”部分)BitLocker 驱动器加密工具是新加入的远程服务器管理工​​具并根据本文在 Windows 7 上不可用(请参阅页面底部的支持矩阵)。

相关内容