Wilson WindowWare Tech Support

WinBatch WinBatch+Compiler WebBatch
Home | Tech Database | Tech BBS | White Papers | Purchase


How to Get a Group Member from Netware 3.x

Keywords:       netware group member

This WinBatch utility calls a Visual Basic program, GROUPSIN.EXE, to extract the user's Group Membership list from a Netware 3.1x server, or a 4.x server in Bindery emulation mode.

This requires VBRUN300.DLL to be in the path. Groupsin.exe posts the result to the clipboard in a space delimited list. This has been tested with VLM's version 1.2a, and requires current Netware DLL's, eg: NWCALLS.DLL.

To Download a zip file with all of E.R.'s examples

;GetGroup.wbt

        sounds(0)
        list=""

        RunWait("s:\desktop\software\vbcode\groupsin.exe","")
        groupsin=itemsort(clipget()," ")
        groupnum=itemcount(groupsin," ")
        for groupitem=1 to groupnum
                groupname%groupitem%=itemextract(groupitem,groupsin," ")
                list=strcat(list,@crlf,groupname%groupitem%)
        next

        Message("List of Groups",list)

Both files can be downloaded.
GetGroup Sample Zip File


Article ID:   W13604
Filename:   How to Get a Group Member from Netware 3x.txt