我正在嘗試從Active Directory獲取用戶GUID。我的代碼:如何使用WinNT協議從Active Directory獲取用戶GUID?
DirectoryEntry entry = new DirectoryEntry("WinNT://DOMAIN/UserName");
Console.WriteLine("The GUID of the ADS object:" + entry.Guid);
Console.WriteLine("The Native GUID of the ADS object:" + entry.NativeGuid);
就永遠代碼返回d83f1060-1e71-11cf-b1f3-02608c9e7553,無論用戶和域。
是否有可能使用WinNT協議獲取用戶GUID?
我同意NT只是抓住用戶名是好的,但你應該使用LDAP這樣的東西。 – PeteT 2009-05-06 07:59:37