Beispiel #1
0
        public static System.DirectoryServices.AccountManagement.UserPrincipal New_DomainUser(Args_New_DomainUser args = null)
        {
            if (args == null)
            {
                args = new Args_New_DomainUser();
            }

            var ContextArguments = new Args_Get_PrincipalContext
            {
                Identity   = args.SamAccountName,
                Domain     = args.Domain,
                Credential = args.Credential
            };
            var Context = GetPrincipalContext.Get_PrincipalContext(ContextArguments);

            if (Context != null)
            {
                var User = new System.DirectoryServices.AccountManagement.UserPrincipal(Context.Context);

                // set all the appropriate user parameters
                User.SamAccountName = Context.Identity;
                var TempCred = new System.Net.NetworkCredential("a", args.AccountPassword);
                User.SetPassword(TempCred.Password);
                User.Enabled             = true;
                User.PasswordNotRequired = false;

                if (!string.IsNullOrEmpty(args.Name))
                {
                    User.Name = args.Name;
                }
                else
                {
                    User.Name = Context.Identity;
                }
                if (!string.IsNullOrEmpty(args.DisplayName))
                {
                    User.DisplayName = args.DisplayName;
                }
                else
                {
                    User.DisplayName = Context.Identity;
                }

                if (!string.IsNullOrEmpty(args.Description))
                {
                    User.Description = args.Description;
                }

                Logger.Write_Verbose($@"[New-DomainUser] Attempting to create user '{args.SamAccountName}'");
                try
                {
                    User.Save();
                    Logger.Write_Verbose($@"[New-DomainUser] User '{args.SamAccountName}' successfully created");
                    return(User);
                }
                catch (Exception e)
                {
                    Logger.Write_Warning($@"[New-DomainUser] Error creating user '{args.SamAccountName}' : {e}");
                }
            }

            return(null);
        }
Beispiel #2
0
 public static System.DirectoryServices.AccountManagement.UserPrincipal New_DomainUser(Args_New_DomainUser args = null)
 {
     return(NewDomainUser.New_DomainUser(args));
 }