Skip to content

Instantly share code, notes, and snippets.

@SweetAsNZ
Created December 7, 2022 01:12
Show Gist options
  • Save SweetAsNZ/3d1632e7292c8b8de4e4dc27822eccd6 to your computer and use it in GitHub Desktop.
Save SweetAsNZ/3d1632e7292c8b8de4e4dc27822eccd6 to your computer and use it in GitHub Desktop.
Connect to Exchange Online and Pass Your UPN
function Connect-Exchange
{
$UPN = (([ADSISEARCHER]"samaccountname=$($env:USERNAME)").Findone().Properties).userprincipalname ; $UPN
Connect-ExchangeOnline -UserPrincipalName $UPN -ShowProgress $true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment