zoukankan      html  css  js  c++  java
  • 【转】Import User Profile Photos from Active Directory into SharePoint 2010

    原文地址:http://www.tcscblog.com/2010/11/18/import-user-profile-photos-from-active-directory-into-sharepoint-2010/

    Requirements:

    • SharePoint Server 2010 with the October Cumulative Update installed (**UPDATE** SP2010 SP1 with at least Feb 2012 CU)
    • Successfully working User Profile Service Application
    • Profile Photo stored in thumbnailPhoto AD attribute (I used the PowerShell script found here to import the picture into the attribute)

    Steps to Perform:

    • Create an import PictureURL mapping
    • Perform a full profile synchronization
    • Run the Update-SPProfilePhotoStore PowerShell command

    Create an import PictureURL mapping

    Edit the User Profile Picture property by navigating to Manage Service Applications > User Profile Service Application > Manage User Properties > Picture

    Make sure your Active Directory profile connection is selected, and then choose the thumbnailPhoto attribute and Import direction

    Since you’ll be controlling the profile photos from Active Directory, change Edit Settings to “Do not allow users to edit values for this property”

    Click OK to make the changes

    Perform a full profile synchronization

    Manage Service Applications > User Profile Service Application > Start Profile Synchronization


    The synchronization may take a while, so be patient.

    Once completed, if you go to the profile page you’ll notice that the image wasn’t added.


    Run Update-SPProfilePhotoStore PowerShell Command

    Launch the SharePoint 2010 Management Shell (Start > All Programs > Microsoft SharePoint 2010 Products > SharePoint 2010 Management Shell) and run the following command:

    Update-SPProfilePhotoStore -CreateThumbnailsForImportedPhotos 1 -MySiteHostLocation
    http://<YourServerName>/my   (注:我的网站地址)


    Now go back to the profile page to review the results


  • 相关阅读:
    并发编程
    网络与WEB 编程
    包和模块
    元编程
    类和对象
    【算法题 14 LeetCode 147 链表的插入排序】
    剑指offer面试54题
    剑指offer 面试51题
    剑指offer 面试3题
    剑指offer 面试52题
  • 原文地址:https://www.cnblogs.com/Roy_Cao/p/2715584.html
Copyright © 2011-2022 走看看