Forum Discussion
Set-UserPhoto size of picture?
Hi Community!
I've been trying to read up on the subject regarding user thumbnail photos in Office365 but I'd like to hear the "final" version from Microsoft about this.
I have a customer that wants to upload images that are bigger in size than what AD on-premise support(100kb) and Azure AD support(10kb)
From what I've heard Exchange Online can be the one holding the profile pic of up to 500 kb and 648x648 resolution
So I'm trying this out like this:
New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/?proxyMethod=RPS
Set-UserPhoto -Identity $user -PictureData ([System.IO.File]::ReadAllBytes($userphoto)) -Confirm:$false
I'm using a picture larger than 500kb and higher resolution than 648x648 (to try if it gets cropped and reduced in size by Office 365) and it accepts it. All is fine.
But then I fetch the photo:
$user = Get-UserPhoto user@domain.com
$user.PictureData |Set-Content "C:\$($user.Identity).jpg" -Encoding byte
And the photo has a resolution that's 240x240 and filesize 8kb
Why is it like that, am I doing something wrong?
/Daniel
7 Replies
- Vishal KalalBrass Contributor
When we upload larger picture, Exchange can automatically resize these photos for use in different products as needed. I haven't found the official recommendation for the particular size, but as mentioned in the below Technet article, it can can automatically resize in three different photo sizes and resolutions:
64 pixels by 64 pixels, the size used for the Active Directory thumbnailPhoto attribute. If you upload a photo to Exchange Server, Exchange will automatically create a 64 pixel by 64 pixel version of that photo and update the user's thumbnailPhoto attribute. Note, however, that the reverse is not true: if you manually update the thumbnailPhoto attribute in Active Directory the photo in the user's Exchange mailbox will not automatically be updated.
96 pixels by 96 pixels, for use in Microsoft Outlook 2013 Web App, Microsoft Outlook 2013, Skype for Business Web App, and Skype for Business.
648 pixels by 648 pixels for use in Skype for Business and Skype for Business Web App Skype for Business Web App.
Article- https://technet.microsoft.com/en-us/library/jj688150.aspx
- Daniel MercouriosCopper Contributor
Thank you Vishal,
The article doesn't mention 240x240 as a resolution being used anywhere, then it seems strange that it's the resolution you get when fetching from Exchange online and the filesize is approximately 7kb.
So, if you don't make use of Skype then I see no real improvement of using Set-UserPhoto and the manual labour of using powershell scripts. Then we can just go with the ADsync of the thumbnail attribute resulting in 10 kb images, which is what you get anyway?
Or am I missing something?
/Daniel
- Vishal KalalBrass Contributor
I believe thats true. If we have to use for S4B or any other service where it required higher resolution, it will help.
- Vishal KalalBrass Contributor
Here is the another artilce which has explained the process-
https://tahoeninjas.wordpress.com/2015/04/10/uploading-high-resolution-user-profile-pictures-in-office-365/