Forum Discussion

Navishkar Sadheo's avatar
Navishkar Sadheo
Steel Contributor
Jul 04, 2019

Office 365 Profile Photos - Remove and disable across all 365 services

Hey everyone.

 

Hope everyone is well.

 

I received a request from our Corporate Department to remove all user profile photos in Office 365 and disable the option for staff to upload pictures. We basically want to default to the profile picture that displays a user's initials.

 

I tried using an OwaMailboxPolicy but the results are inconsistent:

 

Name DisplayPhotosEnabled SetPhotoEnabled SetPhotoURL

---- -------------------- --------------- -----------
OwaMailboxPolicy-Navz False False

 

Also I can still change my picture and now to make matter worse I got like 3 different pictures.

One in OWA

One in Outlook

One in Teams

 

Please please can someone assist me.

 

Forgot to add..I am running a hybrid deployment with nearly all my mailboxes in Office 365.

 

 

 

 

  • tmm1884's avatar
    tmm1884
    Copper Contributor

    Navishkar Sadheo 

    You can try the solution Muditha suggest below:

    When you run Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -SetPhotoEnabled $false without defining an Outlook Web App Policy by using -Identity parameter, it disables the feature for all Outlook Web App Policies in your tenant. Including the default Outlook Web Access Policy.

     

    If you want to disable the feature for a specific set of users, then you can create a new Outlook Web App Policy, assign it to those who you wish to disable this feature, and then run the command as below.

     

    Get-OwaMailboxPolicy -Identity "OWAPolicy_Name" | Set-OwaMailboxPolicy -SetPhotoEnabled $false

     

    Regards

     

Resources