项目作者: a-abella

项目描述 :
Create/delete Active Directory user accounts with no annoying CSV preformatted user lists.
高级语言: PowerShell
项目地址: git://github.com/a-abella/usermanagement.ps1.git
创建时间: 2017-02-19T20:11:20Z
项目社区:https://github.com/a-abella/usermanagement.ps1

开源协议:

下载


usermanagement.ps1

Create/delete Active Directory user accounts with no annoying CSV preformatted user lists. Just feed it properly formatted names, enter their OU, and let it do all the work. New valid usernames are generated on-demand. Also support creating new Exchange mailboxes for new user accounts.

User deletions do not clean up disconnected mailboxes because we do that as a scheduled task on the Exchange server. Also does not clean up roaming profile directories, handle security group membership, or Exchange distribution list membership.

Function ‘Choose-ADOrganizationalUnit’ credited to Mica H: https://itmicah.wordpress.com/2016/03/29/active-directory-ou-picker-revisited/

Requirements

  1. Powershell 3.0 (default on Windows 8 and up).
  2. MicaH’s Choose-ADOrganizationalUnit function in a dot-sourceable file.
  3. Script must run from a PC on the same domain the users are being created in.
  4. Script will require domain admin creds. Will prompt for credentials via Get-Credential frame.
  5. Remote DC and Exchange servers will need PS-Remoting enabled.

At the top of the file you will find a dot-sourced path to Choose-ADOrganizationalUnit.ps1 which should be specified, and lines 13-18 contain various environment-specific variables to be modified.

Usage

The script is interactive and guided, just follow the prompts. When asked to list names for account creation or deletion, feel free to copy and paste in a properly-formatted list.

Name formatting

When entering names, ensure you format thusly:

Firstname M Last_with_spaces

Examples:

  • Pedro L. De La Rosa => Pedro L De_La_Rosa
  • Paul di Resta => Paul di_Resta

Leading/trailing whitespace is trimmed, and consecutive whitespace characters between name elements are condensed to one space.

Apostraphe (single quote) and hyphen characters are permitted.

Valid username generation

The script will check for username availability to generate valid new usernames. Usernames are generated from the concatenation of Firstname leading characters and the final part of a surname.

Generation rules:

  • Try first initial + surname segment, and if invalid try first two letters of firstname + surname segment, and so on.
  • Surnames containing spaces or hyphens will use the final “segment” of the surname.
  • Apostraphes are ignored in firstnames and surnames.

Examples:

  • Pedro L De_La_Rosa => Prosa
  • Paul di_Resta => Presta
  • Nico Rosberg => Nrosberg
  • Daniel Day-Lewis => Dlewis
  • Jenson Button when Jbutton is taken => Jebutton
  • D’angelo Russel when Drussel is taken => Darussel

Existing user detection

Sometimes new-hire account requests get duplicated, which may result in duplicate account creations. The script will check for existing users with the same Firstname and Surname. If one is found, the name, samaccountname, and AD object location will be printed to the screen, and you will be prompted with the option to instead move the found user to its new location. Denying the move user prompt will proceed with a new account creation.

Repeat name conflicts in user deletion

When deleting users, you are first prompted to select the OU the users reside in. The search is recursive, so you may specify higher level OUs, or even the entire domain and search the entire directory. As a result, when listing a common Firstname + Lastname for deletion, the search may return multiple users with the same Firstname + Lastname. When such a conflict is detected, all matching users will be listed and you will be prompted to select the intended deletion target.

To assist you in determining the true intended target, the script will print some identifying information:

  1. Multiples of the same name have been found.
  2. Index Name OU Account LastLogon
  3. ----- ---- -- ------- ---------
  4. 0 Lewis Hamilton /Users Lehamilton 9/2/2016 5:07:46 PM
  5. 1 Lewis Hamilton /TempTest Lhamilton 12/31/1600 7:00:00 PM
  6. Enter index or indeces to delete:

OU is the Oganizational Unit where the user object resides, and LastLogon is an estimate (+/- 1 week) of the last time the user autenticated against a Domain Controller. A LastLogon timestamp of 12/31/1600 7:00:00 PM indicates that the user account has never been logged in to.

To-Do

  1. Prompt to add security groups for new accounts.
  2. Prompt after mailbox creation for distribution list membership.
  3. Clean up Roaming Profiles and/or folder redirection locations on user deletion.