Oct 19 2018 01:43 AM
Oct 19 2018 01:43 AM
Hi
Outlook are not showing the Groups - not in the desktop client nor in the Outlook Web app
Running Cached mode
Version 1808 — 10730.20155 - 'click to run'
Users are in the group that are allowed to create groups so this are not an issue?
Manage who can create Office 365 Groups
How can I fix this so groups are shown?
Oct 19 2018 04:06 AM
Oct 19 2018 04:06 AM
SolutionIt seems that your groups are hidden by default to show them in outlook you have to change it via Powershell.
Set-UnifiedGroup -Identity "Legal Department" -HiddenFromAddressListsEnabled $false
more info here https://docs.microsoft.com/en-us/office365/enterprise/manage-office-365-groups-with-powershell
Oct 19 2018 04:10 AM
Oct 19 2018 04:10 AM
Just found the feature ID 29955 -
Office 365 Message Center (MC133135).
Oct 19 2018 08:04 AM
Oct 19 2018 08:04 AM
HI @Deleted
and if all groups should be made visible with powershell?
Set-UnifiedGroup -Identity ?x?x?x -HiddenFromAddressListsEnabled $false
Oct 20 2018 01:02 AM
Oct 20 2018 01:02 AM
You Would not use the -identity
Oct 23 2018 10:31 AM
Hi BAT MAN,
If these were groups created via Microsoft Teams, they are hidden from Outlook by default. If you want them to show in both the Outlook left nav and the address book, you can use Set-UnifiedGroup to flip -HiddenFromExchangeClientsEnabled to $false. This link has more info on the PowerShell cmdlets:
Thanks,
Mike
Jan 10 2019 09:23 AM
@Deleted
Hi Paul,
Thanks for your reply! I did double-check and I am using cached mode. I will look at the Powershell option also.
Mar 20 2019 02:11 AM
Is there a delay when setting a group "unhidden" through Powershell? Because the group is not showing up in my Outlook offline/online client.
Mar 24 2019 07:19 PM
I found out this a while ago:
https://www.adamfowlerit.com/2018/07/office-365-groups-missing-from-outlook-2016/
Try creating a group with the primary alias as your onmicrosoft domain rather than your standard mail domain, and see if that turns up.
Mar 09 2020 11:38 PM
The correct answer on this would be running the script below:
Set-UnifiedGroup -Identity "group" -HiddenFromExchangeClientsEnabled:$false
which is answered by @Mike McLean (OFFICE) Mike
Apr 20 2020 11:27 AM
Some Groups are in the Outlook list and some are not. And that is true on PCs in my office, home and laptop. If the default was not visible, how could some be visible and some not?
Apr 27 2020 12:58 PM
It depends on how the groups was created.
A O365 group created in the Teams client will automatically be hidden in Outlook (groups) and the Exchange addressbook.
O365 groups created in any other tool will NOT be hidden anywhere, not even if it created in the Teams Admin portal.
So groups made in Outlook for PC, Outlook Web Access, Exchange Admin portal, Azure AD Groups, etc - the list grows long. All these groups will be seen in Outlook per default.
May 05 2020 05:22 AM
I have just created a new Group in the admin portal. I added 2 Owners and the group did not show up in Outlook, for the Owners.
I then added the Owners as Members also, and the Group showed up in Outlook within 20 seconds.
When you look in the Group they are only visible as Owners.
Jun 19 2020 02:17 PM
@Raizel Set-UnifiedGroup : The term 'Set-UnifiedGroup' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try
again.
Jun 25 2020 08:59 AM
Thank you for this solution, worked for me! Drove me nutz! Still trying to figure it out, it seems like there is a delay between creating groups in Microsoft 365 and having them show up in SharePoint/Outlook (takes hours/day)… ty@Poul_Erik_Sorensen
Jun 29 2020 09:30 AM - edited Jun 29 2020 09:30 AM
@Deleted @Raizel Same thing.
Set-UnifiedGroup : The term 'Set-UnifiedGroup' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Jun 29 2020 10:00 AM
It must be done in Exchange Powershell, not Azure.
I used:
Set-UnifiedGroup -HiddenFromAddressListsEnabled $false
...as others noted. It requested IDENTITY and I only had three groups to update, I did each one.
Groups now showing in OWA.
Yay - thanks for thread.
Jul 10 2020 05:35 AM
That worked thanks a lot. It's not user friendly practice to make it hidden by default when, Microsoft has disabled message delivery into personal mailbox folder from group email.
Oct 01 2020 03:18 AM - edited Oct 01 2020 03:20 AM
this worked for me!
Nov 20 2020 08:24 AM
Hello,
please try to check the 'HiddenFromExchangeClientsEnabled' attribute in the office group
you can check the attrebutes with: Get-UnifiedGroup -Identity "xxxxxx" | Format-List
(where xxxxxx is the name of the group)
the attribute must be in false. you can change it:
Set-UnifiedGroup -Identity "xxxxxxxx" -HiddenFromExchangeClientsEnabled:$false
please see -> https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps
regards
Oct 19 2018 04:06 AM
Oct 19 2018 04:06 AM
SolutionIt seems that your groups are hidden by default to show them in outlook you have to change it via Powershell.
Set-UnifiedGroup -Identity "Legal Department" -HiddenFromAddressListsEnabled $false
more info here https://docs.microsoft.com/en-us/office365/enterprise/manage-office-365-groups-with-powershell