gpt4 book ai didi

c# - 在没有管理员的情况下从 c# 以编程方式检测 BitLocker

转载 作者:太空狗 更新时间:2023-10-29 20:15:58 26 4
gpt4 key购买 nike

从各种线程中,我拼凑了如何像这样以编程方式检查 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,但程序似乎无法完成此操作。有谁知道这样做的方法吗?

最佳答案

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

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

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

Windows 属性系统是一个低级 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");

关于c# - 在没有管理员的情况下从 c# 以编程方式检测 BitLocker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41308245/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com