Follow Us:
Self-service is for pumping gas or getting your own soft-serve ice cream at the ice cream shop…. not for creating new Office 365 Groups.
By default Outlook Groups can be created by anyone. If you have proper governance guidelines established users will be required to follow your process to request a new group instead of creating new groups at their pleasure.
Community Charter Helps Guide Enterprise Social Users
Governance planning for Enterprise Social Media is key to your success. Introducing a Community Charter is an excellent method to guide users through a validation process before they request a new Office 365 Group. For more information about creating a Community Charter to use for your governance planning click here to view Social Governance Tips.
Once you have introduced the Community Charter and users are required to request creation of ALL new Office 365 Groups you need to limit the ability to create new Office 365 groups. Designate a group of people in your company who are responsible for the creation of new groups. Then, follow the steps below to Lock-Down Self-Service for Creating New Office 365 Groups.
The Office 365 Groups Lock-Down Process
This article explains how to disable the ability for “everyone” to create groups in all Office 365 services that use groups. Just exactly what Office 365 services allow the use of groups?
Office 365 services that use groups are:
You need to create a security group for designated people to create Office 365 Groups.
You will use Windows PowerShell, which is typing commands at the C:\ prompt.
Only 3 easy steps, so let’s get started………
Only one security group in your organization can be used to control who is able to create Office 365 Groups. For example, the group named Allow Group Creation is the designated security group, and the groups named Microsoft Planner Users and Exchange Online Users are members of that group.
You can see that the ObjectID property value of my AllowedtoCreateGroups group is afc88... You don't need to write down the ObjectID of your security group, but you'll need to be able to recognize it in a later step.
4. Run this command: $Template = Get-AzureADDirectorySettingTemplate | where {$_.DisplayName -eq 'Group.Unified'}
5. Run this command: $Setting = $Template.CreateDirectorySetting()
6. Run this command: New-AzureADDirectorySetting -DirectorySetting $Setting If you get an error like this skip to step 7. The error message means you don't need to do step 6.
Otherwise, upon successful completion, the cmdlet returns the ID of the new settings object.
7. Run this command: $Setting = Get-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting | where -Property DisplayName -Value "Group.Unified" -EQ).id
8. Run this command: $Setting["EnableGroupCreation"] = $False
9. Use this syntax: $Setting["GroupCreationAllowedGroupId"] = (Get-AzureADGroup -SearchString "<Name of your security group>").objectid For example, I named my group AllowedtoCreateGroups, so I would run this command: $Setting["GroupCreationAllowedGroupId"] = (Get-AzureADGroup -SearchString "AllowedtoCreateGroups").objectid
10. Run this command: Set-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting | where -Property DisplayName -Value "Group.Unified" -EQ).id -DirectorySetting $Setting
11. To verify your security group CAN create groups, and everyone else in your organization can't, run this command: (Get-AzureADDirectorySetting).Values The result should look like this (but with the ID value for your security group - this is where you need to be able to recognize it).
Only members of the AllowedtoCreateGroups security group (Afc88abb.....) can create groups. No one else can, as indicated by EnableGroupCreation = False.
Verify your OWA mailbox policy and make sure they are not blocked.
Remove the restriction on who can create groups
Run this command:
$SettingId = Get-AzureADDirectorySetting -All $True | where-object {$_.DisplayName -eq "Group.Unified"} Remove-AzureADDirectorySetting –Id $SettingId.Id
How well are your users adopting Office 365 Groups? Too well? Are they becoming a confusing mess? Hopefully this article helped you find a way to stem the flood and clean up the ROT (groups that are Redundant, Outdated or Trivial) in your Groups! Need help with the script? Contact C5 Insight.
The complementary paper includes over 12 years of research, recent survey results, and CRM turnaround success stories.
Request Download
This 60-second assessment is designed to evaluate your organization's collaboration readiness.
Learn how you rank compared to organizations typically in years 1 to 5 of implementation - and which areas to focus on to improve.
This is a sandbox solution which can be activated per site collection to allow you to easily collect feedback from users into a custom Feedback list.
Whether you are upgrading to SharePoint Online, 2010, 2013 or the latest 2016, this checklist contains everything you need to know for a successful transition.