Automate Active Directory with PowerShell Tutorial 3 : Getting AD Users

Second step to automating our Active Directory is to get our current employees in AD. In this video we will be creating our own function that will get us only the employee accounts from AD. PowerShell Command for new AD User: New-ADUser -Name "test" -GivenName "test" -Surname "test" -UserPrincipalName "[email protected]" -SamAccountName "test" -Office "test" -EmployeeID "00000000" Automate AD with PowerShell Series:    • Automate Active Directory with PowerShell   My other PowerShell tutorials series: Beginners:    • PowerShell Tutorial 1 : Fundamentals [Begi...   Intermediate:   • PowerShell Intermediate Tutorial 1 : Custo...   Set up a virtual environment like mine by following these tutorials :   • Hyper-V Setup and Windows Server 2019 Install   Tags: PowerShell Automation Get-ADUser Active Directory Servers Windows JackedProgrammer Programming Coding Scripting SysAdmin