Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get info on client backup schedules

Status
Not open for further replies.

Marksmen

Technical User
Joined
Feb 4, 2003
Messages
36
Location
US
I would like to find a utility or script or something that will allow me to extract from Legato group and schedule information for a client.
 
nsradmin is the right tool.

The following lines should help you to achieve the result you wish.


C:\nsr\bin>nsradmin
NetWorker administration program.
Use the "help" command for help.
nsradmin> show Name
nsradmin> show Group
nsradmin> show Schedule
nsradmin> print type: NSR client
group: Default;
name: avuspdc.avus.de;
schedule: Default;
nsradmin> print type: NSR group
name: Default;
schedule: ;
nsradmin>
C:\nsr\bin>


You may of course also prepare an input file ...


C:\nsr\bin>copy con: 1.txt
show Name
show Group
show Schedule
print type: NSR client
print type: NSR group
^Z
1 Datei(en) kopiert.

C:\nsr\bin>


... which you specify when calling nsradmin.



C:\nsr\bin>nsradmin -i 1.txt
group: Default;
name: test.test.de;
schedule: Default;
name: Default;
schedule: ;

C:\nsr\bin>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top