Skip to content

Instantly share code, notes, and snippets.

@SweetAsNZ
Created December 7, 2022 01:14
Show Gist options
  • Save SweetAsNZ/3809db9d0920ded76c0be24e2dd43a02 to your computer and use it in GitHub Desktop.
Save SweetAsNZ/3809db9d0920ded76c0be24e2dd43a02 to your computer and use it in GitHub Desktop.
Get UPN User Principal Name/UserPrincipalName
# Requires no Active Directory Module or rights.
$UPN = (([ADSISEARCHER]"samaccountname=$($env:USERNAME)").Findone().Properties).userprincipalname ; $UPN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment