プリンシパルを使用して C# で AD コンピューター アカウント DN を取得する方法
public string GetcomputerExtededProperty(string fieldName)
{
try
{
ComputerPrincipal oGroupPrincipal = GetComputer();
return GetProperty((DirectoryEntry)oGroupPrincipal.GetUnderlyingObject(), fieldName);
}
catch
{
return "";
}
}