How to get a list of Domain Admin users from a windows 2003 DC
Try this:
dsget group <group DN> -members -expand > Group_Members.txt
The created document now contains the DN of each member of the group. You can then use this to get more details for each user
dsget user <user DN>