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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Quick way to see what clients are backing up?

Status
Not open for further replies.
Jun 18, 2001
84
US
Is there a quick command that we can run to see what each of our clients are backing up, or what their savesets are?

For example, i want a list that tells me server1 is backing up the c drive, server2 is backing up the c,d,e drives, server3 is backing up all the drives, etc.

i want to avoid having to doublle-click each client and writing down what it's backing up. if i can just run a command and export the results to a file, that would be GREAT!!

thanks!
 
Try the following lines in a batch file (I just tested, and it works for me):

echo off
echo show name;save set >temp.txt
echo print type: NSR client >>temp.txt
echo quit >>temp.txt
nsradmin -i temp.txt >output.txt
pause
 
I guess you may simply run this NW command:

mminfo -q "incomplete" -r "client, name, sumflags"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top