the European SharePoint Conference 2015 was great!

2
The fourth edition of the European SharePoint Conference has now finished and it was bigger and better than ever. It took place in the wonderful city of Stockholm, in...

Querying SharePoint Search from PowerShell

2
FAST Search for SharePoint 2010 (FS4SP) is a really powerful, flexible and scalable enterprise search engine. However, when compared with the search landscape in SharePoint 2013, it feels like...

Using KeywordQuery with CSOM SharePoint Online

2
string username = "***********"; string pwd = "*********"; string siteURL = "**********"; ClientContext context = new ClientContext(siteURL); Web web = context.Web; SecureString pass = new SecureString(); foreach (char c in pwd.ToCharArray()) pass.AppendChar(c); context.Credentials = new SharePointOnlineCredentials(username,...

European SharePoint Conference 2015

1
The programme for the European SharePoint Conference 2015 was announced yesterday and guess what? I’ll be presenting a session on day 3 (November 12th) about Content Recommendation with SharePoint...

How To Fix a Degraded Search Index Partition in a SharePoint 2013 farm

6
Hello, Recently, a customer reported problems with Search in a SharePoint 2013 farm. Instead of showing search results, the following error was being shown: The Problem To diagnose the problem, I opened...

FAST Search Tip #1: Enabling Stemming in PowerShell

0
Recently, I’ve been working with FAST Search for SharePoint 2010 and, although it’s a great search platform with pretty impressive features, I believe there are still too many manual...

SharePoint 2016: Problems crawling content and the “The crawler could not communicate with the...

0
Hello, Recently, after installing a SharePoint 2016 farm (to learn more on how to install a SharePoint 2016 farm in an automated way using PowerShell click here and here), I...