Wanneer je via OWA een Office365 group aanmaakt, krijgt de group een primair emailadres met .onmicrosoft.com domein als standaard adres. Bijvoorbeeld, wanneer je een Office365 group aanmaakt, genaamd "sales", dan wordt automatisch het adres sales@realconnections.onmicrosoft.com.
Indien je dit adres wil aanpassen naar sales@realconnections.nl dan kan dit op dit moment alleen via een PowerShell commando. Verwachting is dat deze optie later in de Office365 portal beschikbaar komt.
Connect to Exchange Online
- On your local computer, open Windows PowerShell and run the following command:
$UserCredential = Get-Credential
In the Windows PowerShell Credential Request dialog box, type your Office 365 user name and password, and then click OK.
- Run the following command.
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Note If you are an Office 365 operated by 21Vianet customer in China, use the following value for the ConnectionUriparameter: https://partner.outlook.cn/PowerShell.
- Run the following command:
Import-PSSession $Session - Run the following command:
Set-UnifiedGroup -Identity “sales” -EmailAddress SMTP:sales@realconnections.nl - Run the following command:
Remove-PSSession $Session
Daarmee is de wijziging doorgevoerd en is de group bereikbaar op sales@realconnections.nl