目前我们有一个查询AD的SQL Server视图,并返回有关所有组的信息。
SELECT ADsPath, cn, mail, displayname
FROM OPENQUERY(ADSI, 'SELECT ADsPath, cn,mail,displayname
FROM ''LDAP://DC=mycompany,DC=co,dc=uk''
WHERE objectCategory=''group'' ') AS Rowset_1
某些组ADsPath值包含 - 字符 例如 LDAP:// CN = EXCHANGE - CARGO,CN = Users,DC = mycompany,DC = co,DC = uk
我现在正在使用C#和DirectoryServices替换此SQL Server视图,如下所示:
public List<AdGroup> GetGroups()
{
var groupMembers = new List<AdGroup>();
using (var ds = new DirectorySearcher(_ldap))
{
ds.Filter = String.Format("(&(objectCategory=group))");
ds.PageSize = 5000;
ds.PropertiesToLoad.Add("ADsPath");
ds.PropertiesToLoad.Add("cn");
ds.PropertiesToLoad.Add("mail");
ds.PropertiesToLoad.Add("displayName");
using (var results = ds.FindAll())
{
foreach (SearchResult sr in results)
{
string adsPath = string.Empty;
if (sr.Properties.Contains("ADsPath"))
adsPath = sr.Properties["ADsPath"][0].ToString();
string cn = string.Empty;
if (sr.Properties.Contains("cn"))
cn = sr.Properties["cn"][0].ToString();
string mail = string.Empty;
if (sr.Properties.Contains("mail"))
mail = sr.Properties["mail"][0].ToString();
string displayName = string.Empty;
if (sr.Properties.Contains("displayName"))
displayName = sr.Properties["displayName"][0].ToString();
DirectoryEntry userAccount = new DirectoryEntry(adsPath);
string objectGUID = userAccount.Guid.ToString();
groupMembers.Add(new AdGroup(adsPath, objectGUID, cn, mail, displayName));
}
}
return groupMembers;
}
}
问题是DirectoryServices将 - 字符返回为
我需要做什么才能使DirectoryServices返回 - 字符为 -
而不是“
感谢您的帮助。
答案 0 :(得分:0)
我正在将检索到的AD信息写入文本文件,以便检查结果。 保存文本文件中的信息将所有文本转换为ASCII格式,并导致显示奇怪的字符。