Aug 29 2016 10:38 AM
Not finding any info anywhere on this topic so posting here.
The Need:
Cheers,
Ernesto Sanchez
Aug 29 2016 12:59 PM
Aug 29 2016 01:04 PM
Hopefully sooner then later. We just want the same functionality that our shared mailboxes have. We've been trained to use email subfolders so it is akward to not have them for the group inbox.
Cheers,
Ernesto
Feb 21 2019 09:32 PM
This limitation, is preventing our organisation from moving to groups and are now looking at no MS solutions, as we have waited long enough for this to be rectified by MS.
Subfolders are required on a group mailbox.
Jan 22 2020 02:47 PM
Jul 27 2021 04:50 AM
@VasilMichev 5 Years later and still no solution. Boo!
Aug 16 2021 11:41 AM
Oct 07 2021 07:27 PM
Oct 13 2021 11:05 AM
Feb 28 2022 04:47 AM
Incredible how 5 years later there's still no solution for this.
Aug 31 2022 06:39 AM
Sharing my frustration with this as well. The only use as it stands is an email archive to that email address. With multiple users having access, subfolders is a non-negotiable for the feature to have operational value for a team. Very disappointing this has not been resolved by now.
Aug 31 2022 02:05 PM
Oct 02 2022 08:36 AM
Oct 02 2022 09:17 AM
Looks like this is coming if not here already?
https://supersimple365.com/folders-and-rules-support-for-microsoft-365-groups-in-outlook/
Dec 12 2023 12:17 AM
@Tronleif how do i enable this feature. Im not familiar with this instruction:
This feature is not enabled by default, Admins will have to enable the feature using Powershell Cmdlet (Set – OrganizationConfig -IsGroupFoldersAndRulesEnabled). Admins can release the feature and have additional controls to manage the feature using Powershell Commands:
https://supersimple365.com/folders-and-rules-support-for-microsoft-365-groups-in-outlook/
Anyone?
May 17 2024 03:04 PM
Jun 04 2024 11:56 PM - edited Jul 30 2024 12:04 AM
Following this, I would also like to see a solution @kirstie3340
Jul 26 2024 08:45 AM
Properties for the group can be displayed individually:
Get-UnifiedGroup "Accounting Department" | FL
Check the IsMemberAllowedToEditContent value. If it is blank, explicitly set it to $True:
Set-UnifiedGroup "Accounting Department" -IsMemberAllowedToEditContent $True
I've found that lately Microsoft 365 Group creation ignores the default org config mentioned above, so explicitly setting it, then waiting a half hour for replication to occur resolves it.
I haven't found a setting that fixes the greyed out inbox rules, but I'll update when I do.
Brad
Oct 02 2024 01:06 PM
You have to be a PowerShell Admin:
Summary of Linked Solution above:
1. Install the "ExchangeOnlineManagement" Module for PowerShell
2. Run the Policy Scripts given in the linked instructions.
3. Navigate to https://outlook.office.com/groups/home and a newly visible box for enabling users to Edit or create folders with be available. Please check the box.
Optional:
Trust but verify in powershell: Get-OrganizationConfig | Format-List IsGroupFoldersAndRulesEnabled
Oct 02 2024 01:07 PM