How Do I Use Methods from GetConversionStatus in Relevance

(imported topic written by Matt.Johnson)

I am trying to pull more detailed information in to my relevance code to eliminate some devices that don’t need a fixlet ran. To do this I need to have relevance look in to root\cimv2\Security\MicrosoftVolumeEncryption\W32_EncryptableVolume and dig even deeper in to the Methods of GetConversionStatus and poll fields like ConversionStatus and EncryptionPercentage. I am looking to write relevance to the effect of: ConversionStatus=0 is TRUE kind of scenario. An example of that relevance function would be appreciated as well

Thank you.

(imported comment written by Lee Wei)

This thread has examples for querying BitLocker status.

http://www.ibm.com/developerworks/forums/thread.jspa?threadID=409234

Through relevance we cannot invoke methods in a WMI class. So if that is what you have to do, you will have to write a Fixlet with VBScript code to write out the results then read them back as Properties.

Lee Wei