Iāve had to shut down my server for the day due to severe weather, Iāll try some queries tomorrow to firm this up. But recognize that your approach, of trying to have a separate row for each result, will result in a huge amount of data thatās probably not useful - because we would need separate rows for the cross-product of every value.
Realize that the āUser Namesā property only reflects the currently logged-on users - not every user who can log on, just who is logged on right now.
āClient Administratorsā refers to the BigFix Operator accounts who can administer the computer in BigFix.
āLocal Administratorsā is not a built-in BigFix property; it sounds like a Custom Property set up for your deployment. If it shows up in Web Reports, it can certainly be queried through the API, but I canāt tell you whether it shows Users, Groups, or actually expands the members of domain groups that are nested into the local Administrators group. Any of those could be valid.
The cross-product problem is this - for a single computer, if you have two logged-on users returned in the āUser Namesā property, ten BigFix Operators with management rights, and twenty members of the local Administrators group - then to represent every unique combination in CSV, youād have 2x10x20 rows, or four hundred rows for this single computer.
Itās much more likely that youād need to either concatenate the results in each cell, or output separate spreadsheets for each property.
So, try to get some details on what is actually included in the results for each of these property types, and how you want it to appear in the output, and I can help with a query on it tomorrow if it remains unsolved until then.