In this post we are going to look at utilizing a tool called DelProf and a small PowerShell script to delete user profiles on workstations remotely. First we need to download the tool, it's just one executable file that can be found here The reason for using DelProf2.exe over the syntax's Remove-Item or leveraging WMI … Continue reading Delete Local User Profiles Remotely using a PowerShell Script (DelProf2.exe)
User
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
Restore AD Active Directory User Account using LDAP
This is post we are going to look at restoring an Active Directory AD user account using LDAP. In terms of data recovery, tombstone reanimation has great advantages. Tombstone reanimation doesn't require the DC to be taken offline and reanimating tombstones is much better than simply recreating a new version of a deleted object. If … Continue reading Restore AD Active Directory User Account using LDAP