cancel
Showing results for 
Search instead for 
Did you mean: 

Need to get list of multiple clients versions

Dollypee
Moderator
Moderator
   VIP    Certified

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

1 ACCEPTED SOLUTION

Accepted Solutions

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

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

View solution in original post

3 REPLIES 3

D_Flood
Level 6

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)...

 

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

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

Dollypee
Moderator
Moderator
   VIP    Certified

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