Everybody is talking about “How to fix performance issue’s” caused by the NodeRunner Process, but I was wondering what it actually did. What is NodeRunner? Noderunner.exe (Microsoft SharePoint Search Component) is a component of SharePoint 2013 Search managed by the SharePoint Search Host Controller Service, and each Noderunnerprocess hosts one of the following Search ...

Read More

When we deploy a WSP solution using Visual Studio onto a development Farm server it is always deployed to one Web Application that is mapped to the Solution. However, when we create a package and try to deploy to a Testing or Production server it is always deployed globally. After Lots of search I found  stackexchange and this link. Double click the package. Open the Manifest. ...

Read More

We find lots of question regarding Multi file upload coming grayed out in SharePoint. After surfing through net, I found the working solution When opening SharePoint document library, you would be asked to run Microsoft Office 2010 component by Internet Explorer automatically. Means the issue belongs to MS Office not with SharePoint Directly. After going through above link  I ...

Read More

There are few ways to get FARM server where SharePoint Central Administration site is hosted. Using PowerShell cmdLets:- 1- Get-spwebapplication -includecentraladministration | where {$_.DisplayName -match "SharePoint Central Administration*"} | select DisplayName,Url The above cmdLet is good while you are trying to retrieve url of the CA either it is hosted on same machine or on different one (during ...

Read More

Send mail using PowerShell cmdLet. I generally use these cmdLet to verify outgoing email settings.  Using smtp address (Hardcoding the SMTP address)      function send-notification($subject, $detail) {     $message = New-Object System.Net.Mail.MailMessage     $message.Subject = $subject     $message.Body = $detail     $message.To.Add("recipient1@domain.com")     $message.To.Add("recipient2@domain.com")     $message.Cc.Add("cc1@domain.com")     ...

Read More

After Configuring Excel Service (too many information regarding configuring Excel Service in SharePoint available on net), I faced following issue: We’re sorry. We ran into a problem completing your request. Please try that again in few minutes. (Message from SP 2013) Unable to process the request. Wait a few minutes ...

Read More