1

Is there command in netware that will allow me to display all groups that user belongs to in login script?

jjczopek
  • 125
  • 1
  • 7

1 Answers1

0

It's been a long time since I used Netware, but I think the variable %GROUP_MEMBERSHIP should give you what you're looking for. So adding something like

WRITE "You're a member of the following groups..." 
WRITE "%GROUP_MEMBERSHIP" 

should give you a listing of the groups that the user is a member of.

Mike1980
  • 1,018
  • 7
  • 15