Q: How can I force all Lync clients to use the photo from Active Directory?
John Savill
August 21, 2011
1 Min Read
A: Normally, users can select if they want to use the picture from AD, a user-selected picture, or no picture. If you want to stop users being able to change their own picture, and prefer the AD picture is always used, just create a Lync policy to force the AD picture to be used.
Launch the Lync Server Management Shell, then run the following commands:
1.Create a new policy first:
New-CsClientPolicy -Identity ForceADPictures
2.Now set the DisplayPhoto policy to use the AD picture:
Set-CsClientPolicy -Identity ForceADPictures -DisplayPhoto PhotosFromADOnly
3.Finally, apply the policy to users:
Get-CSADUser -OU "CN=Users,DC=savilltech,DC=net" | Grant-CsClientPolicy -PolicyName ForceADPictures
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like