如何使用ldap在服务器中创建组

编程入门 行业动态 更新时间:2024-10-25 01:37:38
本文介绍了如何使用ldap在服务器中创建组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如何使用idap连接在服务器中创建组.请给我打电话解决方案

how to create group in server using idap connection. please tel me the solution

推荐答案

不要重新发布.尝试从答案中选择您先前的问题 [ ^ ]. 我已经建议使用 Don''t repost. Try something from answers to your previous question[^]. I already suggested to use public void Create(string ouPath, string name) { if (!DirectoryEntry.Exists("LDAP://CN=" + name + "," + ouPath)) { try { DirectoryEntry entry = new DirectoryEntry("LDAP://" + ouPath); DirectoryEntry group = entry.Children.Add("CN=" + name, "group"); group.Properties["sAmAccountName"].Value = name; group.CommitChanges(); } catch (Exception e) { Console.WriteLine(e.Message.ToString()); } } else { Console.WriteLine(path + " already exists"); } }

更多推荐

如何使用ldap在服务器中创建组

本文发布于:2023-11-17 02:58:18,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1608556.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何使用   器中   ldap

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!