(imported topic written by nberger91)
Anyone created a task or property that retrieves the recovery keys ? Obviously my preffered method is to store the keys in AD DS, however theres a subset of laptops which arent on the domain, so im looking to fill in the gap.
Similar to the netstat -an port scan task (http://forum.bigfix.com/viewtopic.php?id=3187) , I was thinking of piping the results to text file then parsing using action script: waithidden cmd.exe /C manage-bde -protectors -get C: > “{pathname of parent folder of client}\bitlocker.log”
(which i’ll then delete)
Im seeing inconsistent results, and have issues parsing the output file in a readable format -
if ((name of operating system = “Win7” OR name of operating system = “WinVista”) AND (not exists file “bitlocker.log” of parent folder of regapp “besclient.exe”)) then “N/A” else (concatenation of lines of file “bitlocker.log” of parent folder of regapp “besclient.exe”)
Any better ideas to achieve this ?