C# LDAP 搜索期间超出管理限制
我正在尝试进行 LDAP 搜索,但不断收到以下错误: Unhandled Exception: System.Runtime.InteropServices.COMException (0x80072024): T he administr…
Active Directory 登录 - DirectoryEntry 不一致异常
我需要通过检查指定域中是否存在这样的用户名来验证 LDAP 用户。为此,我使用此代码 - DirectoryEntry entry = new DirectoryEntry("LDAP://" + strDo…
用于开发的本地活动目录访问和管理?
在我们正在开发的应用程序中,我们使用 .Net DirectoryEntry 和 DirectorySearcher 类访问 Active Directory 用户和组。在开发过程中管理测试组和用户…
LDAP 无效 DN 语法
string path = "LDAP://192.168.0.20/CN=users,DC=company,DC=ltm,DC=dom" DirectoryEntry dir = new DirectoryEntry(path, admin, pass, Authenticat…
C# - 有没有办法获取默认 FTP 站点的本地路径?
有没有办法以编程方式获取默认 FTP 站点(在 IIS 中)的本地路径? 如 C:\program files\ftproot,如下所示: 我想它会是这样的: DirectoryEntry ftp…
使用 DirectoryEntry 创建文件夹
我正在编写一个 ASP.NET (C#) 应用程序来为我的域创建用户。它还必须在单独的文件服务器上创建文件夹和共享。到目前为止,我已经能够使用 System.IO.D…
使用不在域上的 DirectoryEntry,设置用户密码永不过期
我想将用户密码检查设置为永不过期。当我创建用户时,该检查始终处于未选中状态。 我的代码。 DirectoryEntry user = root.Children.Add(adUserName, …
“new DirectoryEntry(distinguishedName as string)” 当 DN 包含“/”时不起作用
我有以下代码将可识别名称转换为 sAMAccountName: Dim de As New DirectoryEntry("LDAP://" & stringDN) Return CType(de.Properties("samaccount…
从c#读取ldap组成员
我有这段代码可以连接到 Active Directory 并获取所有存在的组,它可以工作并返回结果中的所有组: DirectoryEntry dirEnt = new DirectoryEntry() us…