Active Directory clean up using PowerShell script e.g Name, UPN, SAM, Email

In this post we are going to look at a simple script to change AD attributes on a large scale with minimal effort. Although bare in mind every Active Directory structure has it's differences, parts of the script or the majority of it's contents may not be applicable to your current situation. This post is … Continue reading Active Directory clean up using PowerShell script e.g Name, UPN, SAM, Email

Restore AD Objects and Users using PowerShell

In this post we are going to look at the different ways you can restore Active Directory objects, such as User Accounts, Groups, Computers and OUs using Restore-ADObject in PowerShell. View Deleted Objects: Firstly this command will show you a list of all deleted objects: Get-ADObject -Filter 'isDeleted -eq $True -and name -ne "Deleted Objects"' … Continue reading Restore AD Objects and Users using PowerShell