0
ドメイングループにホスト名を追加しようとしましたが、例外There is a naming violation
が発生しています。C#ADドメイングループにPCを追加する
私はこの正確なことをカバーするいくつかの受け入れられた回答を見てきました。
try
{
DirectoryEntry de = new DirectoryEntry("LDAP://aa.bbbbb.com/CN=Group,OU=Application,OU=Groups,OU=US,DC=aa,DC=bbbbb,DC=com");
string hostname = "CN=" + SystemInformation.ComputerName;
DirectoryEntry add = de.Children.Add(hostname, "Computer");
add.CommitChanges();
}
catch (Exception ex)
{
MessageBox.Show("Group join failed" + Environment.NewLine + Environment.NewLine + ex.ToString());
}
ご協力いただければ幸いです。