<legend id='pg30S'><style id='pg30S'><dir id='pg30S'><q id='pg30S'></q></dir></style></legend>

    <i id='pg30S'><tr id='pg30S'><dt id='pg30S'><q id='pg30S'><span id='pg30S'><b id='pg30S'><form id='pg30S'><ins id='pg30S'></ins><ul id='pg30S'></ul><sub id='pg30S'></sub></form><legend id='pg30S'></legend><bdo id='pg30S'><pre id='pg30S'><center id='pg30S'></center></pre></bdo></b><th id='pg30S'></th></span></q></dt></tr></i><div id='pg30S'><tfoot id='pg30S'></tfoot><dl id='pg30S'><fieldset id='pg30S'></fieldset></dl></div>

    <tfoot id='pg30S'></tfoot>

    • <bdo id='pg30S'></bdo><ul id='pg30S'></ul>

    <small id='pg30S'></small><noframes id='pg30S'>

    1. 如果用户帐户处于活动状态,如何签入 C#

      How to check in C# if user account is active(如果用户帐户处于活动状态,如何签入 C#)

    2. <tfoot id='ev4ls'></tfoot>

    3. <i id='ev4ls'><tr id='ev4ls'><dt id='ev4ls'><q id='ev4ls'><span id='ev4ls'><b id='ev4ls'><form id='ev4ls'><ins id='ev4ls'></ins><ul id='ev4ls'></ul><sub id='ev4ls'></sub></form><legend id='ev4ls'></legend><bdo id='ev4ls'><pre id='ev4ls'><center id='ev4ls'></center></pre></bdo></b><th id='ev4ls'></th></span></q></dt></tr></i><div id='ev4ls'><tfoot id='ev4ls'></tfoot><dl id='ev4ls'><fieldset id='ev4ls'></fieldset></dl></div>
        <bdo id='ev4ls'></bdo><ul id='ev4ls'></ul>
        1. <legend id='ev4ls'><style id='ev4ls'><dir id='ev4ls'><q id='ev4ls'></q></dir></style></legend>
                  <tbody id='ev4ls'></tbody>

                <small id='ev4ls'></small><noframes id='ev4ls'>

                本文介绍了如果用户帐户处于活动状态,如何签入 C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何从 C# 中检查本地用户帐户(即本地管理员帐户)是否处于活动状态?

                How can I check from C# if a local user account (namely the local Administrator account) is active?

                我真正想要的是用 C# 替换net user Administrator"命令的Account Active"=Yes"(或No")输出.

                What I actually want is a C# replacement for the "Account Active" = "Yes" (or "No") output from the "net user Administrator" command.

                恐怕这个问题看起来与 这个 一个,但我不知道该传入什么用于根 DirectoryEntry 对象的参数.尝试了不同的东西,如ldap://"+ Environment.MachineName、ldap://127.0.0.1"、WinNT://"+ Environment.MachineName,但都没有奏效.在所有三种情况下,searcher.FindAll() 调用都会引发异常.

                I'm afraid this question looks like a duplicate to this one, but I don't know what to pass in for the parameter for the root DirectoryEntry object. Tried different things like "ldap://" + Environment.MachineName, "ldap://127.0.0.1", "WinNT://" + Environment.MachineName, but none of them worked. I get an exception thrown by the searcher.FindAll() call in all three cases.

                推荐答案

                class Program
                {
                    static void Main(string[] args)
                    {
                
                        // Create the context for the principal object. 
                        PrincipalContext ctx = new PrincipalContext(ContextType.Machine);
                
                        UserPrincipal u = UserPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, "Administrator");
                        Console.WriteLine(String.Format("Administrator is enable: {0}", u.Enabled));
                
                    }
                }
                

                这篇关于如果用户帐户处于活动状态,如何签入 C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Adding and removing users from Active Directory groups in .NET(在 .NET 中的 Active Directory 组中添加和删除用户)
                set equality in linq(在 linq 中设置相等)
                HashSet conversion to List(HashSet 转换为 List)
                How to set timeout for webBrowser navigate event(如何为 webBrowser 导航事件设置超时)
                Test whether two IEnumerablelt;Tgt; have the same values with the same frequencies(测试两个IEnumerablelt;Tgt;具有相同频率的相同值)
                How do you determine if two HashSets are equal (by value, not by reference)?(您如何确定两个 HashSet 是否相等(按值,而不是按引用)?)

                • <i id='H2hGX'><tr id='H2hGX'><dt id='H2hGX'><q id='H2hGX'><span id='H2hGX'><b id='H2hGX'><form id='H2hGX'><ins id='H2hGX'></ins><ul id='H2hGX'></ul><sub id='H2hGX'></sub></form><legend id='H2hGX'></legend><bdo id='H2hGX'><pre id='H2hGX'><center id='H2hGX'></center></pre></bdo></b><th id='H2hGX'></th></span></q></dt></tr></i><div id='H2hGX'><tfoot id='H2hGX'></tfoot><dl id='H2hGX'><fieldset id='H2hGX'></fieldset></dl></div>

                    <tbody id='H2hGX'></tbody>
                  • <small id='H2hGX'></small><noframes id='H2hGX'>

                    <legend id='H2hGX'><style id='H2hGX'><dir id='H2hGX'><q id='H2hGX'></q></dir></style></legend>

                        <bdo id='H2hGX'></bdo><ul id='H2hGX'></ul>
                      • <tfoot id='H2hGX'></tfoot>