Forum Discussion

Dollypee's avatar
Dollypee
Moderator
10 years ago
Solved

Need to get list of multiple clients versions

Team - can any one help with a either script or in opscenter faster way to generate 400+ clients versions.

I got this link https://support.symantec.com/en_US/article.TECH128723.html  but hoping for a more strealined/tabular report

My opscenter is analytic & master is currently windows environment.

Thank you

  • Hi Dolly

     

    select
    domain_client.name as "Client",
    domain_client.isactive as "Active?",
    domain_client.ispolicyclient as "Listed in Policy",
    domain_client.versionlabel as "Version"
    from domain_client

  • What about the Client Dashboard report in OpsCenter?  If you email it as a CSV then you can filter out all the inactive clients (and machines that OpsCenter sees but aren't clients)...

     

  • Hi Dolly

     

    select
    domain_client.name as "Client",
    domain_client.isactive as "Active?",
    domain_client.ispolicyclient as "Listed in Policy",
    domain_client.versionlabel as "Version"
    from domain_client

  • Riaan, your the man. That works perfectly. Thank you too D.flood