VB.NET - 如何使用 Active Directory 将 SID 转换为组名称
使用 VB.NET,如何将 sid 转换为 Active Directory 组名?
示例:我需要获取“group_test”而不是“S-1-5-32-544”
我使用的代码是:
Public ReadOnly Property Groups As IdentityReferenceCollection
Get
Dim irc As IdentityReferenceCollection
Dim ir As IdentityReference
irc = WindowsIdentity.GetCurrent().Groups
Dim strGroupName As String
For Each ir In irc
Dim mktGroup As IdentityReference = ir.Translate(GetType(NTAccount))
MsgBox(mktGroup.Value)
Debug.WriteLine(mktGroup.Value)
strGroupName = mktGroup.Value.ToString
Next
Return irc
End Get
End Property
或者类似的东西?
currentUser = WindowsIdentity.GetCurrent()
For Each refGroup As IdentityReference In currentUser.Groups
Dim acc As NTAccount = TryCast(refGroup.Translate(GetType(NTAccount)), NTAccount)
If AdminGroupName = acc.Value Then
ret = "999"
End If
If UsersGroupName = acc.Value Then
ret = "1"
End If
你将如何使其适应这段代码? (如果用户属于 xx 组,则在下拉列表中显示 xx 组)
For Each UserGroup In WindowsIdentity.GetCurrent().Groups
If mktGroup.Value = "BIG" Then
Dim Company = ac1.Cast(Of MarketingCompany).Where(Function(ac) ac.MarketingCompanyShort = "BIG").FirstOrDefault
If Company IsNot Nothing Then
marketingCo.Items.Add(String.Format("{0} | {1}", Company.MarketingCompanyShort, Company.MarketingCompanyName))
End If
End If
Next
Using VB.NET, How do you Convert the sid to Group Name with Active Directory?
example: I need to get "group_test" and not "S-1-5-32-544"
The code I'm using is:
Public ReadOnly Property Groups As IdentityReferenceCollection
Get
Dim irc As IdentityReferenceCollection
Dim ir As IdentityReference
irc = WindowsIdentity.GetCurrent().Groups
Dim strGroupName As String
For Each ir In irc
Dim mktGroup As IdentityReference = ir.Translate(GetType(NTAccount))
MsgBox(mktGroup.Value)
Debug.WriteLine(mktGroup.Value)
strGroupName = mktGroup.Value.ToString
Next
Return irc
End Get
End Property
or something like this?
currentUser = WindowsIdentity.GetCurrent()
For Each refGroup As IdentityReference In currentUser.Groups
Dim acc As NTAccount = TryCast(refGroup.Translate(GetType(NTAccount)), NTAccount)
If AdminGroupName = acc.Value Then
ret = "999"
End If
If UsersGroupName = acc.Value Then
ret = "1"
End If
how would u adapt it to this code? (if user is in xx group, show xx group on drop down list)
For Each UserGroup In WindowsIdentity.GetCurrent().Groups
If mktGroup.Value = "BIG" Then
Dim Company = ac1.Cast(Of MarketingCompany).Where(Function(ac) ac.MarketingCompanyShort = "BIG").FirstOrDefault
If Company IsNot Nothing Then
marketingCo.Items.Add(String.Format("{0} | {1}", Company.MarketingCompanyShort, Company.MarketingCompanyName))
End If
End If
Next
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是用 C# 编写的简单方法,我认为它并不难适应:
这里是 VB .NET,感谢 反射器
---- 已编辑 -----
所以这就是你想要的,但它与 @BiggsSTRC 之前给出的相同
Here is a simple way writen in C#, I think it's not to hard to adapt :
Here it is in VB .NET thanks to REFLECTOR
---- EDITED -----
So here is what you wants, but it's the same as that was previously given by @BiggsTRC
C# 代码:
您必须添加程序集 System.DirectoryServices.AccountManagement.dll。
如果您在连接 AD 时遇到任何问题,可以尝试在 PrimaryContext 构造函数中添加 AD 服务器名称。
Code in C#:
You must add assembly System.DirectoryServices.AccountManagement.dll.
If you have any troubles with connection to AD, you can try adding AD server name in PrincipalContext constructor.
以下是有关如何将 SID 转换为名称的链接: http://vbdotnet.canbal.com/view.php?sessionid=JEf85K%2B%2BeBj9Pz%2BWz9hJJicW%2FYEPtADXfcpYCovZ7js%3D
基本上,你会得到一个 DirectoryEntry 对象,然后你可以使用它得到名字。但是,如果您正在寻找我认为更简单的方法来执行此操作,只需获取当前用户并在 AD 中查找其组成员身份即可。以下是如何执行此操作的示例(您将需要更大的文章才能实际完成您的任务,但此代码是您问题的具体答案): http://www.codeproject.com/KB/system/everythingInAD.aspx#39
抱歉,该代码是用 C# 编写的。但是,您应该能够使用转换器将其转换为 VB.NET,不会出现任何问题。
在 C# 中从 ASP.NET 获取已登录用户的用户组成员身份
在 VB.NET 中使用 Developer Fusion 的转换器工具:
Here is a link for how to convert a SID to a name: http://vbdotnet.canbal.com/view.php?sessionid=JEf85K%2B%2BeBj9Pz%2BWz9hJJicW%2FYEPtADXfcpYCovZ7js%3D
Basically, you get a DirectoryEntry object back which you can then use to get the name. However, if you are looking for what I believe to be an easier method to do this, just take the current user and do a lookup in AD for their group memberships. Here is an example of how to do that (you will need the larger article to actually accomplish your task but this code is the specific answer to your question): http://www.codeproject.com/KB/system/everythingInAD.aspx#39
Sorry about the fact that the code is in C#. However, you should be able to just use a converter to convert it to VB.NET without a problem.
Get User Group Memberships of the Logged in User from ASP.NET in C#
Get User Group Memberships of the Logged in User from ASP.NET in VB.NET using Developer Fusion's Converter Tool: