Search

Showing posts with label ou. Show all posts
Showing posts with label ou. Show all posts

Sunday, 24 February 2019

Powershell Script to change Active Directory account UPN's

Change Search Base to distinguished name of designated OU
Change UPN's In Active Directory
Import-Module ActiveDirectory
Get-ADUser -Filter * -SearchBase 'distinguished name' -Properties userPrincipalName | foreach { Set-ADUser $_ -UserPrincipalName "$($_.givenname + "." + $_.surname)@test.com"}