AutoUserADCreator/AutoUserADCreator.ps1

59 lines
3.2 KiB
PowerShell
Raw Normal View History

2024-04-08 22:01:06 +10:00
# Copyright 2024 Rayyan Hodges, M Salim Olime, TAFE NSW, AlphaDelta
# Contact: rayyan.hodges@studytafensw.edu.au, mohammad.olime1@tafensw.edu.au
2024-04-12 19:24:16 +10:00
# Program Name: AutoUserADCreator
2024-04-12 18:48:25 +10:00
# Purpose of script: Create a batch set of user's within an existing OU using a CSV file containing a list of predetermined users and OU's.
# Other Notes: My job is to create simple checks to avoid issues such as duplicate users.
2024-04-12 19:14:34 +10:00
# Other Notes: Credit is given for parts I have contributed to the script.
2024-03-25 22:02:11 +11:00
2024-04-08 22:01:06 +10:00
# Import required PowerShell modules
import-module ActiveDirectory
2024-04-12 19:02:12 +10:00
#Specify User Principal Name (Active Directory Domain Forest Name) (Rayyan Modified to allow for user to enter their own forest name)
$UPN = Read-Host -Prompt "Please enter the Active Directory Forest name (example.com)"
2024-04-12 19:02:12 +10:00
2024-04-08 22:01:06 +10:00
#Get user to specify path of the CSV file containing user info to be added into the Active Directory.
2024-04-12 19:33:06 +10:00
$fpath = Read-Host -Prompt "Please enter the path to your CSV file containing user info to be added to the OU's within the Active Directory Domain Forest:"
2024-04-12 19:02:12 +10:00
# Check if CSV file exists with the path specified by the end-user
# If so, error out the program with generic error stating so. (RAYYAN Contribution)
2024-04-12 19:11:29 +10:00
# This uses the "Test-Path" cmdlet which tests if the path actually exists and can be read by the system.
# Source for code (https://www.itechguides.com/powershell-check-if-file-exists/#:~:text=If%20(Test%2DPath%20%2DPath%20E%3A%5Creports%5Cprocesses.txt%20)%20%7B%0ACopy%2DItem%20%2DPath%20E%3A%5Creports%5Cprocesses.txt%20%2DDestination%20C%3A%5Creports%0A%7D)
2024-04-12 19:02:12 +10:00
if (-not (Test-Path $fpath)) {
Write-Host "CSV file does not exist. Exiting script."
exit
}
# Display path to file given by end-user
2024-04-08 22:01:06 +10:00
echo $fpath
2024-04-12 19:02:12 +10:00
#Import users from CSV file.
2024-04-08 22:01:06 +10:00
$fusers = Import-Csv $fpath
#Set tempoary password to "Pa$$w0rd1" which the user will be required to change when they first login.
$fsecPass = ConvertTo-SecureString -AsPlainText "Pa$$w0rd1" -Force
2024-03-25 22:02:11 +11:00
2024-04-08 22:01:06 +10:00
# Create user within already created OU
ForEach ($user in $fusers) {
$fname = $user.fName
$lname = $user.lName
$jtitle = $user.jTitle
$OUpath = $user.OU
echo $fname $lname $jtitle $OUpath
New-ADUser -SamAccountName = $fname.$lname -UserPrincipalName "$fname@alphadelta.com" -Path $OUpath -AccountPassword $fsecPass -Enabled $true -PassThru
2024-04-09 01:43:22 +10:00
}
2024-04-12 19:02:12 +10:00
# Check if user already exists within OU. Skip if so with message stating so. (RAYYAN Contribution)
# Source for code (https://morgantechspace.com/2016/11/check-if-ad-user-exists-with-powershell.html)
2024-04-12 19:02:12 +10:00
if (Get-ADUser -Filter "SamAccountName -eq '$fname.$lname'") {
Write-Host "User $fname.$lname already exists. Skipping."
} else {
New-ADUser -SamAccountName "$fname.$lname" -UserPrincipalName "$fname@$UPN" -Path $OUpath -AccountPassword $fsecPass -Enabled $true -PassThru
}
}
# Print message stating the program has completed succsessfully, and to prompt them to press any key to close the program. (RAYYAN Contribution)
# Source for code (https://www.thomasmaurer.ch/2021/01/how-to-add-sleep-wait-pause-in-a-powershell-script/#:~:text=Read%2DHost%20%2DPrompt%20%22Press%20any%20key%20to%20continue...%22)
2024-04-12 19:02:12 +10:00
Read-Host -Prompt "User creation completed, press any key to close the window."