2

I am trying to determine if BitLocker is updated. All I can find on BitLocker is if the service is running as in:

Get-Service -name "BDESVC*"

Usually the gwmi -class Win32_SoftwareFeature will return all applications versions but BitLocker isn't there. Does BitLocker need updating? Is it stored somewhere else?

I am using Win7 64bit PowerShell v2

4

3 回答 3

3

经过一番漫长的搜索,我找到了manage-bde. 此命令非常适用于命令行和 PowerShell。不过,我仍然遇到仅提取版本号的问题。

于 2015-12-17T01:25:43.757 回答
1

如果现在这对某些人有所帮助,您可以使用以下命令来提取所需的信息以达到您的目的。

命令

manage-bde -status C: | FINDSTR "\<version"

结果

BitLocker Drive Encryption: Configuration Tool version 10.0.15063

请不要忘记“\<”,因为它用于过滤掉版本,否则包含“转换”一词的其他数据也会被填充。

于 2017-08-11T14:40:02.767 回答
1

是的,这是唯一可用于检查版本的选项,因为应用程序不是独立的。在 Max OS X 上也是如此。该版本不明显或不可用。

于 2015-12-21T16:36:20.947 回答