zoukankan      html  css  js  c++  java
  • NetUserGetInfo NetUserAdd

    [DllImport("Netapi32.dll")]
            extern static int NetUserGetInfo([MarshalAs(UnmanagedType.LPWStr)] string servername, [MarshalAs(UnmanagedType.LPWStr)] string username, int level, out IntPtr bufptr);


            [DllImport("Netapi32.dll")]
            extern static int NetUserAdd([MarshalAs(UnmanagedType.LPWStr)] string servername, int level, ref USER_INFO_1 buf, int parm_err);
            [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
            public struct USER_INFO_1
            {
                public string usri1_name;
                public string usri1_password;
                public int usri1_password_age;
                public int usri1_priv;
                public string usri1_home_dir;
                public string comment;
                public int usri1_flags;
                public string usri1_script_path;
            }

            private void button1_Click(object sender, EventArgs e)
            {
                IntPtr bufPtr;
                USER_INFO_1 User = new USER_INFO_1();
                if (NetUserGetInfo(null, "Administrato", 1, out bufPtr) != 0)
                {
                    // MessageBox.Show("Error Getting User Info","Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
                    return;
                }
                User = (USER_INFO_1)Marshal.PtrToStructure(bufPtr, typeof(USER_INFO_1));

            }

            private void button2_Click(object sender, EventArgs e)
            {
                USER_INFO_1 NewUser = new USER_INFO_1(); // Create an new instance of the USER_INFO_1 struct

                NewUser.usri1_name = "UserTestOne"; // Allocates the username
                NewUser.usri1_password = "password"; // allocates the password
                NewUser.usri1_priv = 1; // Sets the account type to USER_PRIV_USER
                NewUser.usri1_home_dir = null; // We didn’t supply a Home Directory
                NewUser.comment = ""; // Comment on the User
                NewUser.usri1_script_path = null; // We didn’t supply a Logon Script Path

                if (NetUserAdd(null, 1, ref NewUser, 0) != 0) // If the call fails we get a non-zero value
                {
                    //MessageBox.Show("Error Adding User", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }

            }

  • 相关阅读:
    利用自定义 ORM 下使用 flask-login 做登录校验使用笔记
    element-ui + vue + node.js 与 服务器 Python 应用的跨域问题
    js显示对象所有属性和方法的函数
    zookeeper 简单小节
    安装Python到Linux(Pyenv)
    安装Sonarqube到CentOS(YUM)
    安装PostgreSQL到CentOS(YUM)
    安装vsFTP到CentOS(YUM)
    安装Zabbix到Ubuntu(APT)
    安装Zabbix到CentOS(YUM)
  • 原文地址:https://www.cnblogs.com/ahuo/p/1659138.html
Copyright © 2011-2022 走看看