Question

I have BitLocker enabled on my machine and I want to use the wbemtest.exe utility to view properties about the Bitlocker data.

According to the properties section at MSDN, some of the data that I want to retrieve are DeviceID, DriveLetter, PersistentVolumeID, and ProtectionStatus.

However, when I execute the query

SELECT * from Win32_EncryptableVolume

using wbemtest.exe, only one object gets returned, and that is BitLocker DeviceID. I also want this query to return the DriveLetter and the other properties. What do I do to retrieve these? The data should be there, because my C# app using System.Management is able to get data on the other properties without any trouble (by assigning the return value of a ManagementClass GetInstances() method to a a ManagementObjectCollection.)

Was it helpful?

Solution

It turns out that I am able to view the data I need quite simply by using the WMI Code Creator utility.

I found this information on windows-noob

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top