支持Windows Server 2016 Active Directory吗?

时间:2018-10-11 10:13:18

标签: c# authentication active-directory principalcontext

我有一个Winform客户端,该客户端使用Windows Active Directory来获取当前的Windows帐户名。

有没有办法知道该解决方案是否可以与新的Windows Server 2016 Active Directory一起使用而不进行设置?

客户代码

            public string GetCurrentActiveDirectoryAccountName()
            {
                var windowsName = WindowsIdentity.GetCurrent().Name;
                var index = windowsName.LastIndexOf("\\");
                if (index > 0)
                    windowsName = windowsName.Substring(index + 1);

                return windowsName;
            }

        public void AuthenticateActiveDirectoryAccount(string username, string password)
        {
            //Hidden code to setup variables 

            if (ADUserName.Length > 0)
                context = new PrincipalContext(ContextType.Domain, ADServer, ADUserName, ADUserPassword);
            else
                context = new PrincipalContext(ContextType.Domain, ADServer);

            using (context)
            {
                if (!context.ValidateCredentials(account, password))
                    //Hidden code to throw exception
            }
        }

        public string CheckActiveDirectoryAccount(string account)
        {
            ///Hidden code to setup variables

            if (ADUserName.Length > 0)
                context = new PrincipalContext(ContextType.Domain, ADServer, null, ADUserName, ADUserPassword);
            else
                context = new PrincipalContext(ContextType.Domain, ADServer);

            using (context)
            {
                if ((user = UserPrincipal.FindByIdentity(context, account)) == null)
                {
                    if (account.Contains("\\"))
                    {
                        userPrincipalNameList = user.UserPrincipalName.Split('\\').ToList();

                        if (userPrincipalNameList.Count > 0)
                            user = UserPrincipal.FindByIdentity(context, userPrincipalNameList[0]);
                    }
                }

                if (user != null)
                {
                    using (user)
                    {
                        userAccount = user.SamAccountName;
                        return userAccount.ToLower();
                    }
                }
            }
            return string.Empty;
        }

2 个答案:

答案 0 :(得分:0)

从历史上看,Microsoft非常向后兼容。这就是为什么您仍然可以在Windows 10中运行DOS程序的原因。

使用广告,他们通常不会删除功能。他们只添加它们。请参阅本文,以了解AD for Server 2016的新增功能:https://docs.microsoft.com/en-us/windows-server/identity/whats-new-active-directory-domain-services

我希望所有这些都能与Server 2016上运行的AD一起使用。

答案 1 :(得分:0)

我不得不像预期的那样使用Microsoft Windows Server 2016设置测试,我的AD集成也能正常工作。