Office 365 + Outlook + My Site Social Connector – Hotfix Released 12/13/11!

One of the features I have grown to love in Outlook 2010 is the Social Connector – that window below your emails which you can enable to view aggregations of social network updates (My Site, Facebook, LinkedIn, to name a few) as well as past conversations, calendar items, attachments, and more.

image

Up until this month however, if you were a user of Microsoft Office 365, then you could not connect to your My Site hosted on SharePoint Online, you would get this lovely error after entering in all of the credential information:

image

Being a user of Office 365 – this was an issue for me, especially since I use the Social Connectors in Outlook daily.

I am pleased to announce, that as of December 13th, 2011,  that it has finally been fixed! You can download and install the hotfix from here (Outlook x64 only): http://support.microsoft.com/kb/2597051/

Works perfectly now!

Advertisement

Deploying and Activating Features in SharePoint 2010 with PowerShell

I was looking at an article on MSDN blogs today for customizing My Sites in SharePoint 2010. This post is not about that, but rather PowerShell that were there for deploying and activating a feature. Here is the text, direct from the site itself. This installs a feature (a), enables the feature (b), and then activates the feature on each site (c).

a.       Install-SPFeature -path "MyNewNavFeature"
b.       Enable-SPFeature -identity "MyNewNavFeature" -URL http://<mysitehost&gt; (Enables the new feature on the mysitehost)
c.       Enable the new feature on all personal sites:

$personalSites = get-spsite | where {$_.RootWeb.WebTemplate -eq "SPSPERS"}
foreach ($site in $personalSites) {Enable-SPFeature -Identity "MyNewNavFeature" -Url $site.Url}

 

The blog posting – where credit is due: http://blogs.msdn.com/b/spsocial/archive/2010/04/08/customizing-my-sites-in-microsoft-sharepoint-2010.aspx

%d bloggers like this: