Change email address of a Plan in Office 365 planner
When you add a new plan in the Office 365 Planner, a public group is automatically created with an email address that matches the initial name. It is possible to change the email address of a Plan using powershell. Start Windows PowerShell and run these commands to connect to Exchange Online
1 2 3 |
$cred = Get-Credential $exo = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $cred -Authentication Basic -AllowRedirection -ErrorVariable +err -ErrorAction SilentlyContinue Import-PSSession $exo -DisableNameChecking -AllowClobber -ErrorVariable +err -ErrorAction SilentlyContinue |
Now run this… Read More »