maweko,
we are scanning the registry for the value Software\Policies\Microsoft\FVE\ 'RequireActiveDirectoryBackup' and then using this for a report:
Select Top 1000000 tblComputers.ComputerUnique As Computer, tblComputers.Username As [Last User], tblComputersystem.Model, tblRegistry.Regkey, tblRegistry.Valuename, tblRegistry.Value As Enabled, tblComputers.Lastseen, tblComputers.Computername From tblComputers Inner Join tblRegistry On tblComputers.Computername = tblRegistry.Computername Inner Join tblComputersystem On tblComputers.Computername = tblComputersystem.Computername Where tblRegistry.Valuename = 'RequireActiveDirectoryBackup'
I'd like to have a more accurate way to tell, but it should get you close.