cancel
Showing results for 
Search instead for 
Did you mean: 

How to get all clients version report from opscenter

lovee
Level 5

Hi All,

How to get all clients version report from opscenter ?

currently i am using below script to do this. please confirm is it correct.

./bpplclients -allunique | awk '{ print $3 }' >> cl_ver2

for i in `cat cl_ver2` ; do /usr/openv/netbackup/bin/admincmd/bpgetconfig -M $i | grep "VERSIONINFO" | awk '{ print $7 }' ; done >> client_ver

 

 

Thanks,

 

 

2 REPLIES 2

sdo
Moderator
Moderator
Partner    VIP    Certified

That pulls the major version.

But if you want the actual version of NetBackup try using bpgetconfig with the -g switch instead of -M.

e.g.    bpgetconfig -g 127.0.0.1 -A -L | grep "Patch Level"

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

Your query doesn't relate to opscenter, maybe update the title so as not to confuse others.