Entra Admin - Groups All - Edit Photos - How?

Nate Braun 5 Reputation points
2025-03-11T12:57:50.7566667+00:00

Looking for a way to update the group images in the same fashion as the user accounts.

Used to do this in Exchange admin, SharePoint admin, & admin center, but things keep changing.

Anyone know where this can currently be performed?

Screenshot 2025-03-11 085415

Microsoft Security | Microsoft Entra | Microsoft Entra ID

1 answer

Sort by: Most helpful
  1. Goutam Pratti 6,220 Reputation points Microsoft External Staff Moderator
    2025-03-17T09:49:01.04+00:00

    Hello @Nate Braun ,

    I understand you are looking for a way to update the group images from the Microsoft Admin Center.

    You can't manage user photos for Microsoft 365 Groups using the Microsoft 365 admin center. You can only use Microsoft Graph PowerShell. The maximum supported size of a photo is 4 MB.

    Follow the mentioned below steps to implement:

    1. install the Microsoft Graph PowerShell SDK, use the Connect-MgGraph cmdlet to sign in with the required scopes. You need to sign in with an admin account to consent to the required scopes.
    2.    Connect-MgGraph -Scopes
      
    Set-MgGroupPhotoContent -GroupId
    

    You get the ID GUID value of the Microsoft 365 Group from the output of a Get-MgGroup command, or You can get it from the Microsoft Admin Center.

    For example:

    Set-MgGroupPhotoContent -GroupId 173cd812-5563-439c-9da4-bc2715fa2aee -InFile "C:\Upload\Sales Department.png"
    

    For detailed information follow the documents: Microsoft-Graph-Powershell, Groups

    I hope the response is helpful to you. Let us know if you any further queries. Happy to assist you further.

    Was this answer helpful?

    1 person found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.