|
|
| |

How can I return from within a T-SQL the list of Windows NT/2000 groups?
Answer:
You can use the xp_enumgroups undocumented extended stored procedure
to return the list of Windows NT/2000 groups and their descriptions.
This extended stored procedure does not require any parameters.
This is the example to run:
EXEC master..xp_enumgroups
See this article to get more information about the useful undocumented
extended stored procedures:
Useful undocumented extended stored procedures
|
|
|