Forum Discussion
Navishkar Sadheo
Jul 04, 2019Steel Contributor
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...
tmm1884
Jul 04, 2019Copper Contributor
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