Hi,
Greeting of the Day!
I need help for below Powershell command, How to Delete Multiple Users from specific OU through CSV from AD
Import-Csv C:\users.csv | Foreach-Object {Remove-ADUser -Identity $_.SamAccountName -Confirm:$False }
how i can specify OU?
thanks for your support :)