I use GetTokenInformation()/TokenGroups to get groups a currently logged on user is a member of. However, the list of groups returned from the API also includes special groups like "INTERACTIVE", "CONSOLE LOGON", "Pre-Windows 2000 Compatible Access", etc.
What is the best way to filter out the special groups? Ideally I'd like to keep only the groups that you can see on the "Member Of" tab of a given user's properties dialog box.
Thanks.
As suggested in the comments,
NetUserGetLocalGroups
is most likely the function used in the "Local Users and Groups" snap-in.You can also filter the list by whatever criteria you choose:
The Net* functions operate on the Domain and/or local SAM database, the other groups are added to your token by Windows but I don't believe there is a public API to filter your way back to the exact list of groups from SAM.