Forum Discussion

Tobey Davies's avatar
Tobey Davies
Brass Contributor
Aug 02, 2017

How to Reset who can create Office 365 Group

A mouth ago, I have run the following command to make which security group's user only can create Office 365 Group.   「Control who can create Office 365 Groups」 https://support.office.com/en-us/ar...
  • VasilMichev's avatar
    Aug 02, 2017

    If you already have the settings template created, you simply need to change the property. It depends on which module you are using, but the idea is the same.

     

    $setting = Get-AzureADDirectorySetting | where {$_.DisplayName -eq 'Group.Unified'}

    $setting["GroupCreationAllowedGroupId"] = "blablabla_newGUID"

    Set-AzureADDirectorySetting -id $setting.Id -DirectorySetting $setting

     

    The process is actually detailed in the article above, check the "Edit an existing Group settings object" section. And it's an unnecessarily complex process, no question about it, we've been giving the same feedback for year now...

     

     

Resources