cancel
Showing results for 
Search instead for 
Did you mean: 

NetBackup Administration Console - Automated Reporting ?

smarsh88
Level 3

Hello,

We are currently using the NetBackup Administration Console.

Each day, I am logging into the Console, choosing Reports > All Log Entries and manually running daily reports.

Is there a tool, or script I can use to automate this process?

 

Regards,

Shane

25 REPLIES 25

smarsh88
Level 3

One more quick question. What do I add in to change the date format.

Currently it is mmddyyyy

I would like ddmmyyyy (uk format)

 

Thanks...

Mark_Solutions
Level 6
Partner Accredited Certified

Now you are getting towards VB - abandoned my efforts after you had a result!

Yasuhisa_Ishika
Level 6
Partner Accredited Certified

To change date format, just insert one line.

SET _date=%%i
SET _date=!_date:~2,2!/!_date:~0,2!/!_date:~4!
SET _time=%%j

Attachment is modified script with tab delimiter and UK date format.

smarsh88
Level 3

Hmm, the date is now appearing like:

/1/01/9/2012

??

Yasuhisa_Ishika
Level 6
Partner Accredited Certified
I made a mistake, sorry. Please correct as bellow. SET _date=!_date:~3,2!/!_date:~0,2!/!_date:~6!

smarsh88
Level 3

That works perfectly.

Thank you so much!