Thursday 29 September 2016

Office 365 Groups - How to Add Multiple Email Addresses And/Or Create Office 365 Groups for Secondary Domains

One of the great new collaboration features from Microsoft's productivity cloud offering is Office 365 Groups.  The new "groups" give you a bundle setup option for creating a collaboration space that includes:
  • Group Inbox - communication and email in one space
  • Group Calendar for scheduling group meetings and events
  • Group Sharepoint Library for storing and working on group files and folders
  • Group OneNote notebook for taking project and meeting notes
  • Planning tool - For managing and assigning tasks
Normally these office 365 groups are created from Outlook, or from the admin portal of O365.  Although, as of this post, there is no way to create a group for a secondary domain... at least with a graphical interface.

So if you have primarycompany.com and you also have secondarycompany.com registered with your office 365 tenant, how do you create these amazing groups for secondarycompany.com?

Powershell of course!

Start by opening up powershell with admin permissions.  You will need your powershell to have your execution policy set to Remotesigned (or less secure).

Set-ExecutionPolicy RemoteSigned

Then you can use the below commands to connect to office 365's powershell session.

$user = get-credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $user -Authentication Basic -AllowRedirection

Import-PSSession $Session

Next setup your variables and create the group! 

$displayName = "desired group display name"
$members = @('member1','member2')
$owner = "owner name"
$primarySmtp = "primary@smtp.com"
$alias = "the alias you want"
$emailAddresses = @("email1@company.com","email2@company.com")


New-UnifiedGroup -DisplayName $displayName -Members $members -Owner $owner -PrimarySmtpAddress $primarySmtp -Alias 'Contact' -EmailAddresses $emailAddresses

That's it!  You can add more options if you like or you can run the above and then manage the group from the admin portal.

One day Microsoft will enable domain select from their GUI... one day..


No comments:

Post a Comment