Delete Multiple AD users (List of users with SamAccountName are in csv file ) using below Powershell script.



Import-Csv C:\temp\Del.csv | Foreach-Object {Remove-ADUser -Identity $_.SamAccountName -Confirm:$False }

Join the conversation