我正在尝试从远程主机获取BitLocker信息。我曾经使用PowerShell(Get-BitLockerVolume)进行此操作,它将提供许多有用的信息。当我尝试使用C#时,我没有得到太多的信息。从Microsoft's网站和further research看,我找不到任何可以帮助我的东西。
有人知道如何在C#中获得与Get-BitLockerVolume相同的输出吗?
顺便说一下,这就是我在C#中进行的测试:
CimSession session = CimSession.Create(computerHostName);
IEnumerable<CimInstance> GI1 = session.QueryInstances(@"root\cimv2\Security\MicrosoftVolumeEncryption", "WQL", "SELECT * FROM Win32_EncryptableVolume");
foreach(CimInstance i in GI1)
{
Console.WriteLine("MountPoint: {0}, Protection: {1}",
i.CimInstanceProperties["DriveLetter"].Value,
i.CimInstanceProperties["ProtectionStatus"].Value);
}
答案 0 :(得分:0)
正如Jeroen回忆的那样,您将能够在WMI实例上获得该信息调用方法。对于文档,Win32_EncryptableVolume
仅公开以下属性:
class Win32_EncryptableVolume
{
string DeviceID;
string PersistentVolumeID;
string DriveLetter;
uint32 ProtectionStatus;
};
要使用WMI和方法访问轻松获得所需的信息,可以使用ORMi库:
例如,您可以这样定义您的课程:
public class Win32_EncryptableVolume : WMIInstance
{
public string DeviceID {get; set;}
public string PersistentVolumeID {get; set;}
public string DriveLetter {get; set;}
public int ProtectionStatus {get; set;}
[WMIIgnore]
public int Version {get; set;}
public int GetVersion()
{
return WMIMethod.ExecuteMethod<int>(this)
}
}
然后您可以执行以下操作:
WmiHelper _helper = new WmiHelper("root\\Cimv2"); //Define the correct scope
List<Win32_EncryptableVolume> volumes = _helper.Query<Win32_EncryptableVolume>().ToList();
foreach(Win32_EncryptableVolume v in volumes)
{
v.Version = v.GetVersion();
}