Veritas-bu

Re: [Veritas-bu] Bpplist Policy Script

2009-09-28 13:15:01
Subject: Re: [Veritas-bu] Bpplist Policy Script
From: "Jimenez, Daniel" <Daniel.Jimenez AT owb DOT com>
To: "Martin, Jonathan" <JMARTI05 AT intersil DOT com>, "veritas-bu AT mailman.eng.auburn DOT edu" <veritas-bu AT mailman.eng.auburn DOT edu>
Date: Mon, 28 Sep 2009 10:11:33 -0700

Jonathan

 

I am getting the right information but in pop up windows, is there something I need to do in order to stop these pop ups from coming up?

 

Daniel Jimenez

Data Protection Team

 

From: Martin, Jonathan [mailto:JMARTI05 AT intersil DOT com]
Sent: Monday, September 28, 2009 8:07 AM
To: Jimenez, Daniel; veritas-bu AT mailman.eng.auburn DOT edu
Subject: RE: [Veritas-bu] Bpplist Policy Script

 

My understanding of awk syntax has never been very good but here's a windows script that will give you similar output (I think).  Save as a .vbs and run from the command line.  You might need to change the location of your bppllist.exe command.

 

set objWshShell = CreateObject("WScript.Shell")
set objExec = objWshShell.Exec("D:\Program Files\VERITAS\NetBackup\bin\admincmd\bppllist.exe -allpolicies")
do while not objExec.StdOut.AtEndOfStream
output = Split(objExec.StdOut.ReadLine(), " ")
If output(0) = "CLASS" Then Wscript.Echo vbNewLine & "Policy: " & output(1)  End If
If output(0) = "RES" Then Wscript.Echo "Policy Storage Unit: " & output(1) End If
If output(0) = "SCHED" Then Wscript.Echo "Schedule: " & output(1) End If
If output(0) = "SCHEDRES" Then Wscript.Echo "Storage Unit: " & output(1) End If
loop

-Jonathan

 


From: veritas-bu-bounces AT mailman.eng.auburn DOT edu [mailto:veritas-bu-bounces AT mailman.eng.auburn DOT edu] On Behalf Of Jimenez, Daniel
Sent: Friday, September 25, 2009 8:03 PM
To: veritas-bu AT mailman.eng.auburn DOT edu
Subject: [Veritas-bu] Bpplist Policy Script

I found the script below that pulls the policy and storage device from Netbackup but it is for Unix and was wondering if anyone knows how to translate this to Windows?

 

bppllist -allpolicies | awk `{

if ($1=="CLASS") {c=$2;stu="";printf("\n%24s: ",c)}

if ($1=="RES" || $1=="SCHEDRES" ){

  F=2

  while($F!~/NULL/ && F<=NF) {if($F!=stu){stu=$F;printf("%12s

",$F)};F++}

  }

}END{printf("\n")}`

 

_______________________________________________
Veritas-bu maillist  -  Veritas-bu AT mailman.eng.auburn DOT edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
<Prev in Thread] Current Thread [Next in Thread>