Sharepoint to use photos from Exchange

Hello Everyone,
I am trying to get SharePoint to use the high res photos from Exchange.
I have followed
http://blogs.technet.com/b/jenstr/archive/2012/08/13/using-exchange-2013-preview-high-resolution-photos-from-sharepoint-server-2013-preview.aspx and after running following cmds from step 4 - 6 I found Task Sync'ing is working. 
However, when I go to MySite and click update photo it is not directing me to Outlook Web App to change my photo.  Its acting like normal.
Step 4
New-SPTrustedSecurityTokenIssuer -name "Exchange" -MetadataEndPoint "https://autodiscover.contoso.com/autodiscover/metadata/json/1"
$sts=Get-SPSecurityTokenServiceConfig
$sts.HybridStsSelectionEnabled = $true
$sts.AllowMetadataOverHttp = $false
$sts.AllowOAuthOverHttp = $false
$sts.Update()
$exchange=Get-SPTrustedSecurityTokenIssuer "Exchange"
$app=Get-SPAppPrincipal -Site
https://sharepoint.contoso.com -NameIdentifier $exchange.NameId
$site=Get-SPSite
https://sharepoint.contoso.com
Set-SPAppPrincipalPermission -AppPrincipal $app -Site $site.RootWeb -Scope sitesubscription -Right fullcontrol -EnableAppOnlyPolicy
Step 5
cd "\Program Files\Microsoft\Exchange Server\V15\Scripts"
.\Configure-EnterprisePartnerApplication.ps1 -AuthMetadataUrl
https://sharepoint.contoso.com/_layouts/15/metadata/json/1 -ApplicationType Sharepoint
Step 6
$wa = Get-SPWebApplication
https://sharepoint.contoso.com
$wa.Properties["ExchangeAutodiscoverDomain"] = "https://autodiscover.contoso.com/Autodiscover/Autodiscover.xml"
$wa.UserPhotoImportEnabled = $true
$wa.UserPhotoErrorExpiration = 1.0
$wa.UserPhotoExpiration = 4.0
$wa.Update()
Now my sharepoint.contoso.com site and MySite are in two different web applications:
Sharepoint.contoso.com
Mysite.sharepoint.contoso.com
Do I need to re-run the above cmds to the MySite web applications?
For example:
$exchange=Get-SPTrustedSecurityTokenIssuer "Exchange"
$app=Get-SPAppPrincipal -Site
https://mysite.sharepoint.contoso.com -NameIdentifier $exchange.NameId
$site=Get-SPSite
https://mysite.sharepoint.contoso.com
Set-SPAppPrincipalPermission -AppPrincipal $app -Site $site.RootWeb -Scope sitesubscription -Right fullcontrol -EnableAppOnlyPolicy
cd "\Program Files\Microsoft\Exchange Server\V15\Scripts"
.\Configure-EnterprisePartnerApplication.ps1 -AuthMetadataUrl
https://mysite.sharepoint.contoso.com/_layouts/15/metadata/json/1 -ApplicationType Sharepoint
$wa = Get-SPWebApplication
https://mysite.sharepoint.contoso.com
$wa.Properties["ExchangeAutodiscoverDomain"] = "https://autodiscover.contoso.com/Autodiscover/Autodiscover.xml"
$wa.UserPhotoImportEnabled = $true
$wa.UserPhotoErrorExpiration = 1.0
$wa.UserPhotoExpiration = 4.0
$wa.Update()
Thanks for any input!

Anyone?
While re-running the commands for mysite.sharepoint.contoso.com I am now seeing an error while running the Configure-EnterprisePartnerApplication.ps1 script.
Step 4 on SharePoint
$exchange=Get-SPTrustedSecurityTokenIssuer "Exchange"
$app=Get-SPAppPrincipal -Site https://mysite.sharepoint.contoso.com -NameIdentifier $exchange.NameId
$site=Get-SPSite https://mysite.sharepoint.contoso.com
Set-SPAppPrincipalPermission -AppPrincipal $app -Site $site.RootWeb -Scope sitesubscription -Right fullcontrol -EnableAppOnlyPolicy
Step 5 on Exchange
cd "\Program Files\Microsoft\Exchange Server\V15\Scripts"
.\Configure-EnterprisePartnerApplication.ps1 -AuthMetadataUrl https://mysite.sharepoint.contoso.com/_layouts/15/metadata/json/1 -ApplicationType Sharepoint
Receive error: "Found existing Partner Application "SharePointEnterprise-2d65eae9c18c49ad8998ed014eec2adb" with duplicate properties."
Step 6 on SharePoint
$wa = Get-SPWebApplication https://mysite.sharepoint.contoso.com
$wa.Properties["ExchangeAutodiscoverDomain"] = "https://autodiscover.contoso.com/Autodiscover/Autodiscover.xml"
$wa.UserPhotoImportEnabled = $true
$wa.UserPhotoErrorExpiration = 1.0
$wa.UserPhotoExpiration = 4.0
$wa.Update()
I cannot remove the existing PartnerApplication from Exchange because I need that for my Tasks to Sync.  Is there a way to run the Configure-EnterprisePartnerApplication.ps1 for two sites on different Web Applications?
Thank again...

Similar Messages

  • Loading MySites profile photos from Exchange 2013 to Sharepoint 2013

    Hi
    I've configured SharePoint 2013 to get it's profile photos from Exchange 2013 using the method in the link below BUT Is there way to force the initial sync other than requiring the user to load their profile in a browser? 
    http://blogs.technet.com/b/jenstr/archive/2012/08/17/using-exchange-2013-preview-high-resolution-photos-from-sharepoint-server-2013-preview.aspx
    Thanks

    As a workaround I have applied a client-side powershell load of the SharePoint thumbnail image.  This triggers the sync just like loading in a browser does. I run it hidden on the user PC.  I run it once a day for a while as for some reason
    a load of the profile does not always trigger the sync and if it does not subsequent immediate sync's don't help - presumably due to the UserPhotoExpiration or
    UserPhotoErrorExpiration settings.
    Here's the code - enjoy....
    # script to trigger Sharepoint to download the high res photo from Exchange
    # sadly this must be done client side.
    # have PC management software copy the files to the local PC then run......
    # powershell.exe -ExecutionPolicy Unrestricted -noninteractive -File "%temp%\PhotoSync.ps1" >>"PhotoSync.log" 2>&1
    # All output will end up in the log file
    # the following syntax triggers the download (just find yours from your Sharepoint User profile photos)
    #https://people.myco.com/User%20Photos/Profile%20Pictures/USERNAME_LThumb.jpg
    $username = [Environment]::UserName
    $userphoto = "https://people.myco.com/User%20Photos/Profile%20Pictures/" + $username + "_LThumb.jpg"
    write-host "$username : $userphoto"
    $web = New-Object system.Net.WebClient
    $web.UseDefaultCredentials=$true
    Try{
    $result = $web.Downloadstring($userphoto)
    Catch {
    Write-Warning "$($error[0])"

  • Force downloading mysite HD photos from Exchange 2013

    Hi Sharepoint Admins,
    I want to force download all HD photos from Exchange 2013 into users mysite profiles. I already provisioned all user mysites by powershell. HD photos are also available, but every user has to open his own mysite by himself to trigger the picture download.
    The goal is to download photos without having every user to logon on their site.
    Is there any way to force this?
    "SharePoint Server 2013 requests photos from Exchange 2013 automatically when a user performs an operation that causes a request for their own photo (for example, browsing to their own user profile page). That means that the user needs to have requested
    his/her own photo, before other users will be able to see it."
    Best Regards
    Markus Kühn

    Hi Markus,
    I understand you would like to manually sync HD photo from Exchange 2013 to SharePoint 2013 mysite.
    Since "SharePoint Server 2013 requests photos from Exchange 2013 automatically when a user performs an operation that causes a request for their own photo (for example, browsing to their own user profile page)", you need to browse all
    sites in Mysite web application.
    To do this, you may refer SharePoint warmup script and make the script to work for you MySite web application. Just run the warmup script, all mysites can be browsed once.
    https://gallery.technet.microsoft.com/office/SharePoint-2007-2010-or-d1884b4b
    https://spbestwarmup.codeplex.com/
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • I can take video made in Photo Booth and use in my Smilebox greetings and I can use photos from iPhoto to use there also.  I have not been able to figure out how to take clips from iMovie for that.

    For anyone who has used "Smilebox" for greeting cards:  I can take video made in Photo Booth and use in my Smilebox greetings and I can use photos from iPhoto to use there also.  I have not been able to figure out how to take clips from iMovie for use with Smilebox.

    For anyone who has used "Smilebox" for greeting cards:  I can take video made in Photo Booth and use in my Smilebox greetings and I can use photos from iPhoto to use there also.  I have not been able to figure out how to take clips from iMovie for use with Smilebox.

  • Can't use photos from photostream in mail, web an other applications

    Isn't it possible any more to use photos from photostream to paste them in emails or web forms? I always took photos with my iPhone and then without syncing I used the photos for ebay on my macbook. Now, with mavericks, you can choose "photos" to paste them, but the photos of the photostream are not shown! Thanks for helping, FRED

    Kari,
    what is your MacOS X version and  iPhoto version?
    If you cannot  delete photos from the iLifeAssetManagement folder, then you have a permissions problem. You should be able to do that. Try to fix the permissions for that part of your User Library.
    Navigate again to the  iLifeAssetManagement folder as described above. Then select the Folder and press ⌘I (clover leaf, capital letter I) for "Get Info". You shoud see an ifo panel like this:
    Disclose the "Sharing & Permissions" brick by pressing the disclosure triangle. Press the padlock in the lower right corner and enter your administrator password. Make sure your user account .....(Me) has Rad &Write permissions, change the permissions if necessary. Then click the padlock and select to apply to enclosed items.
    Then try again, if you now can delete photos from the Stream.
    Regards
    Léonie
    You might also check these support articles:
    iCloud: Photo Stream Troubleshooting
    iCloud: Photo Stream FAQ

  • HT201317 Can I use photos from icloud (on a pc) to create an iphoto book?

    Can I use photos from icloud (on a pc) to create an iphoto book?

    Hi jbaker5d,
    If you are having an issue with photos not showing up in My Photo Stream on your Windows computer, I would suggest that you troubleshoot using the steps in this article - 
    Get help using My Photo Stream
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Using photos from iphoto in adobe photoshop elements

    I'm new to the mac world. I do a lot of casual digital photography. I like to edit pictures and create things in photoshop elements.
    I'm trying to make sure I'm opening photos from the correct folder in the iphoto library.
    I think either using photos in the modified or original photos is the proper way? Any input.
    Also, can I create new folders within the iphoto library (finder side) to better organize my photos? I had pictures broken down by month on my pc and iphoto seems to only group by year. It makes locating the proper picture in photoshop elements easier if the pictures are broken down by month.
    I know I can use folders and albums within iphoto, but those catagories don't show up when trying to open photos in elements.
    Thanks for your input!
    iMac   Mac OS X (10.4.7)  

    debo213:
    Welcome to the Apple Discussions. There ias a caveat to using PSE with iPhoto. It is: if you create a layered file or do edits that causes PSE to want to save as a .psd file you must either flatten the file and force PSE to save as a jpg or do a Save As to the Desktop and import the new file. Subsequent edits to that new psd file from within iPhoto like Terence pointed out can proceed normally.
    Using 2 Image Editors in iPhoto
    If you want to use both iPhoto's editing mode and a 3rd party editor without having to go back and forth to the Preference pane, once you've selected the 3rd party editor as your editor of choice, reset the Preferences back to "Open in main window". Then when you Control-click on an image, you can select "Edit in external editor" in the Contextual menu to edit in your selected editor.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM, 80G HD, QT 7.1.3,   Mac OS X (10.4.8)   22 LCD, 250G/200G/160G FW HDs, Canon: SD700IS/i850/LIDE 50, Epson R200, 30G iPod

  • IOS: Using photos from camera and gallery

    Hi guys,
    has anybody experiences using photos (gallery, camera) on iOS device with Lingo?
    I wanna load a picture from gallery into my application or start camera, take a picture and load this.
    There is an solution by using clipboard but isn't user-friendly.
    Same with saving picture into the gallery?
    Thank you for your help!

    Hi Schnell,
    I have no direct answer to your questions, regarding lingo commands to access the iOS camera or gallery…
    But you could try playing around with Director's 'flash xtra'
    Try building a simple Flash ActionScript file, which uses the ‘CameraRoll class’ to import a photo (Camera, CameraRoll & CameraUI class)
    You never know - might get lucky
    If you can get anything working, please let us all know.
    (on the other hand, it could all be a big waste of time??)
    good luck.
    milky

  • Remove un-used photos from library

    i have 68,000 photos in my library.
    About HALF of them are not used in any album.
    That is, after import, I have deleted half of the pictures from the albums.
    iPhoto is very slow to respond.
    I think it has to do with the large photo library.
    Is there any way to delete the UN-USED photos in the iPhoto Library and only keep the ones that are contained in at least one Album??

    You can make a smart album of photos not in an album, flag them, create a new event from flagged photos and delete teh photos form that event inbatches of 100 or so emptying the iPhoto trash after ever batch
    LN

  • Can you use photos from outside of iphoto or aperture?

    I now use Lightroom as Aperture is painfully slow so Albums are folders in the Pictures folder. iWeb appears not to let me drag a folder into an Album page. Will I need to fire up Aperture again?

    It seems that we're not able to drag folders of photos from the Finder into an Album page in iWeb. However, there's a workaround.
    open  the Media pane in iWeb and drag a folder of images from either Aperture or iPhoto into the Album page (neither have to be open).
    open the album and delete all of the photos.
    drag the photos from the folder in the Finder into the photo page in iWeb.
    Create a dummy album in Aperture or iPhoto with just one photo to drag from the Media Browser in iWeb.
    OT

  • Use photos from Aperture 3 as Wallpapers problem

    I chose photos from Aperture projects as desktop wallpaper by right-clicking on desktop>change desktop background. But the photos all shrank to maybe half size on desktop. I used to store my wallpapers in iphoto, so I can process them a lit bit when I want to. I am planning on migrating from iphoto to aperture 3, and I know aperture 3 can do a much better job in processing. But unable to display wallpapers in right size really bothers me. Anybody can help with this? Thanks in advance.

    You might find reading [this article|http://support.apple.com/kb/HT3781|Aperture 3: How to optimize Aperture for the best looking slideshow] useful in expanding on what PilotGuy74 has said. Although it's written about slideshows, what they explain there applies to your wallpapers situation too.
    I have already missed the simplicity of iphoto. Maybe aperture is just too pro to me.
    Don't be put off. Aperture is a very complex powerful application - you can't expect to learn how to use it all, all at once. Take it a bit at a time. Learn a little as you go and you'll find that, over time, you will develop your skills with it.
    Regards,
    Gary

  • Updates installed; now Screensaver won't use photos from Iphoto

    After installing software updates today, I get this message "You cannot use the Iphoto screensaver with this version of Mac OS X. Please contact the vendor to get a newer version of the screen saver."
    The only screen saver I have is the one that came with Snow Leopard. Help!

    I'm wondering if there's a bug that involves smart albums versus manually created albums.
    In addition to using a smart album to find flagged photos from my entire library, I tried adding an item to the smart album that would also show all photos in the latest three Events.
    In other words, an album for all flagged photos plus all new photos shot within the last three uploads to iPhoto.
    However, the AppleTV screensaver never took any photos from the latest three Events. It just kept finding the same limited set of flagged photos.

  • Access to Sharepoint repository using WEBDAV (From ECC 6.)

    Hi SDN,
    Customer asks me to find a way to access from ECC 6.0 to his own repository on Sharepoint Server using WebDav Protocol.
    I'm searching for documentation regarding SAP and WevDav and every docs indicates a need to use WEB AS JAVA / Portal KM
    For me this really makes sense but, someone knows a way to access sharepoint repository from ECC 6.0 using an HTTP RFC connection or some BSP that already exists?
    Thanks and best Regards,
    Pedro Rodrigues

    Hi Kasturi,
    What you exactly want to do because your query not clearly visible to anyone?
    Regards

  • Using Photos from Events on iPad?

    Hi,
    I seem to be not able to access photos from the Events section of the Photo App on the iPad. Events are photos I synced via Aperture. The only options I have to chose from are Photos or Photo Stream. Is this a limitation or is there a trick I'm missing.
    Thanks,
    Selim

    Selim,
    Are you able to see you Images/Albums on the iPad and are you able to import it any other app? If the photos are available in the Photo library of iPad it should show up in Collage.
    I installed Aperture, imported some images created an Album of these images. After this when I synced the photos from Aperture, it started showing up on my iPad and was available for import from within Collage.
    One issue that i encountered was that of 'Sync failure', but that was resolved by tweaking the Aperture preferences setting.
    -Subbi

  • Using Photos from Aperture in FCP X

    I am brand new to FCP X, and am trying to use photos that I have in Aperture.  When I bring the photos to the timeline, they are much smaller files that the files I have in Aperture.  How can I get the full version into my project in FCP?

    Thank you for your reply.  I tried that, and it did fill the frame, which will be very useful on this project. 
    The problem I am having is that in Aperture the photos are failry big, for example, in Aperture one image is 1.66 MB
    but when I see it in FCP it is a small file size, 49.6 KB:
    Any ideas?

Maybe you are looking for

  • Output XML with a default namespace using XQuery

    I'm having a problem with namespaces in an XQuery within ALSB. We receive XML from a file which doesn't have any namespace and have to transform it into a different structure, giving it a default namespace such as below: Input XML <inputRoot>      <i

  • Two sided print option is grey out

    Recently, I noticed that when I need to print two-sided documents, the "two-sided" print option is greyed out.  I have gone into System Preferences  Printers & Scanners- and under "options" for the printer enabled the HP Two-sided Printing Accesory (

  • Table for BETRG Field

    Hi Experts, I am working on an ESS MSS project. Currently I am working on a report in which I have to find the expenses of an employee. The field BETRG gives me the expenses for that employee. but I am unable to find a table for this field. Does anyb

  • @tec Car Chargers

    I bought one these car chargers.  It did not work so I sent it back to the retailer, who sent a replacement.  The replacement also doesn't work.  Nothing wrong with the 2 cars in which the charger was tried.  I also tried with an iPad, without succes

  • Error when accessing CMP EJB methods

    I get a strange error, when I access a getter method in my remote interface to query the variables in my CMP EJB. I use Jdev 3.2 agains Oracle 8.1.7. I can see that the error must be originating from the persistance manager BC4J XML, but not sure how