WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Groups

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

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
File Created: 2017:08:29:11:51:04
Last Updated: 2017:08:29:11:51:04