My Account Subscribe Help About
Sign In | Register FREE
Friday, April 10, 2026
Man jailed for killing abused wife who jumped from bridgeCeasefire or no ceasefire, the Middle East's reshuffling is not yet doneMelania Trump denies ties to Jeffrey Epstein and urges hearing for survivorsSimple guide: How the Iran war is affecting the cost of holidays, food and clothesEU fingerprint and photo travel rules come into forceWant to help garden birds? Don't feed them in warmer months, says RSPBDublin Airport issues travel guidance as Irish fuel protests continueMen behind 'Tripadvisor for people smugglers' jailed for 19 yearsIran conflict must be 'line in sand' to build more resilient UK, Starmer saysBafta fell short in duty of care when racial slur was shouted, review findsExtra £5m pledged for patrolling places of worship'Endless fears': Even if fighting stops, the damage to Iran's children will endureLebanon thought there was a ceasefire - then Israel unleashed deadly blitzHow many ships are crossing the Strait of Hormuz?Has US achieved its war objectives in Iran?Can stats help you find the Grand National winner?This coat cost $248 in illegal tariffs. Will he ever get the money back?From a smuggled harmonica to Artemis' playlist - the history of music in spaceWeekly quiz: What might have made Paddington panic about his marmalade?How the Artemis crew will splash down on EarthLeBron and Bronny James record first son-to-father assist in NBA historyTen cases a day - 'blitz courts' could tackle the Crown Court backlog'I was in a slump - now my art is in Billie Eilish's house'Labrinth not involved in Euphoria's third seasonLava soars into air as Hawaii's Kilauea volcano erupts againWhite House staff told not to place bets on prediction marketsRussia and Ukraine agree to truce for Orthodox EasterBBC News appIs Defence Secretary Pete Hegseth waging a holy war against Iran?Defence secretary interview on Russian submarine operation
FDN » Active Directory » Managing Users and Groups in AD

Managing Users and Groups in AD

Managing Users and Groups in Active Directory

Active Directory Users and Computers (dsa.msc) is the primary tool for managing user accounts, groups, and organizational units.

Creating a User Account

  1. Open Active Directory Users and Computers (dsa.msc).
  2. Navigate to the target OU (e.g., Sales).
  3. Right-click the OU → NewUser.
  4. Enter the first name, last name, and user logon name (e.g., jsmith).
  5. Set the initial password and configure password options:
    • User must change password at next logon (recommended for new accounts)
    • User cannot change password
    • Password never expires (use sparingly — service accounts only)
  6. Click Finish.

Bulk User Creation with VBScript

Set objOU = GetObject("LDAP://OU=Sales,DC=corp,DC=flamenet,DC=io")

Set objUser = objOU.Create("user", "CN=Jane Doe")
objUser.Put "sAMAccountName", "jdoe"
objUser.Put "userPrincipalName", "jdoe@corp.flamenet.io"
objUser.Put "givenName", "Jane"
objUser.Put "sn", "Doe"
objUser.Put "displayName", "Jane Doe"
objUser.SetInfo

objUser.SetPassword "P@ssw0rd!"
objUser.AccountDisabled = False
objUser.SetInfo

Group Types

ScopeMembersCan Be Used In
Domain LocalAny domain in forestSame domain only
GlobalSame domain onlyAny domain in forest
UniversalAny domain in forestAny domain in forest

The AGDLP strategy is recommended: Accounts go into Global groups, Global groups into Domain Local groups, Domain Local groups receive Permissions.

« Back to Active Directory « Back to FDN