无需管理员即可从c#以编程方式检测BitLocker

时间:2016-12-23 21:53:07

标签: c# bitlocker

我从各种线程拼凑了如何以编程方式检查BitLocker:

private void TestBitLockerMenuItem_Click(object sender, RoutedEventArgs e) {
   var path=new ManagementPath(@"\ROOT\CIMV2\Security\MicrosoftVolumeEncryption")
               { ClassName="Win32_EncryptableVolume" };
   var scope=new ManagementScope(path);
   path.Server=Environment.MachineName;
   var objectSearcher=new ManagementClass(scope, path, new ObjectGetOptions());
   foreach (var item in objectSearcher.GetInstances()) {
      MessageBox.Show(item["DeviceID"].ToString()+" "+item["ProtectionStatus"].ToString());
   }
}

但只有在进程具有管理员权限时才有效。

似乎奇怪的是,任何旧的Windows用户都可以转到资源管理器,右键单击某个驱动器,然后查看它是否已启用BitLocker,但程序似乎无法完成此操作。有谁知道这样做的方法?

1 个答案:

答案 0 :(得分:8)

Windows通过使用Win32 API中的Windows Property System在shell中显示此内容,以检查未记录的shell属性System.Volume.BitLockerProtection。您的程序也可以在没有提升的情况下检查此属性。

如果此属性的值为1,3或5,则在驱动器上启用BitLocker。任何其他值都被视为关闭。

在我搜索此问题的解决方案期间,我在HKEY_CLASSES_ROOT\Drive\shell\manage-bde\AppliesTo中找到了对此shell属性的引用。最终,这一发现引导我找到这个解决方案。

Windows Property System是一个低级API,但您可以使用Windows API Code Pack中提供的包装。

封装

Install-Package WindowsAPICodePack

使用

using Microsoft.WindowsAPICodePack.Shell;
using Microsoft.WindowsAPICodePack.Shell.PropertySystem;

代码

IShellProperty prop = ShellObject.FromParsingName("C:").Properties.GetProperty("System.Volume.BitLockerProtection");
int? bitLockerProtectionStatus = (prop as ShellProperty<int?>).Value;

if (bitLockerProtectionStatus.HasValue && (bitLockerProtectionStatus == 1 || bitLockerProtectionStatus == 3 || bitLockerProtectionStatus == 5))
   Console.WriteLine("ON");
else
   Console.WriteLine("OFF");