U can generate a list of all clients with the nsradmin command
Then find the necassary Information by using another script. (e.g. VB or Basic)
(WIN NT)
1. Generate a list wich contains the commands for the nsradmin.
----- input. txt --------
print type:nsr client
-------------------------
2. use the commandline to Pipe the Output
nsradmin -s "Server" input.txt >> Output.txt
3. Now generate a Script to sort the Outputfile.
SUB MAIN
OPEN Output.txt FOR INPUT AS #1
DO WHILE NOT EOF(1)
LINE INPUT #2, rec$
IF INSTR(rec$,"name:"

then
eol=INSTR(rec$,";"

- 31
clientname=MINDrec$,31,eol)
END IF
IF INSTR(rec$,"client OS type:" THEN
eol=INSTR(rec$,";"

- 31
filename=MID(rec$,31,eol) & ".txt"
END IF
OPEN filename FOR APPEND as #2
PRINT #2, clientname
CLOSE #2
LOOP
Close #1
END SUB
this script works i think

no copyright