How to find the users in a group login
Hi,
By running the below query we can find out that who are the users in a that group.
use master
go
EXEC xp_logininfo
@acctname='AOINTL\USCareUsers',
@option='members'
By running the below query we can find out that who are the users in a that group.
use master
go
EXEC xp_logininfo
@acctname='AOINTL\USCareUsers',
@option='members'
Comments