The following example reads specific properties of a website. try {      string siteUrl = “http://server/SiteCol”;      //The constructor ClientContext requires a url      using(ClientContext clientContext = new ClientContext(siteUrl))     {          Web website = clientContext.Web;        //retrieves the title and site Created           clientContext.Load(  

Read More
How to read a SharePoint Website Property using CSOM

Often after building a website, I am required to change the title.  Here is an example of how to update the Title and Description of a website using CSOM. string siteUrl = “http://MyServer/sites/MySiteCollection”; //Costruttore using (ClientContext clientContext = new ClientContext(siteUrl)) {           //change title and description of siteUrl            Web website =

Read More
How to change the Title and Description of a SharePoint Site using CSOM

Hello Everyone, In this blog, I’ll show you how you can easily installation SharePoint 2010 on Windows Server 2008. Before going ahead, Kindly verify few things on your machine 1. You have done installation of Microsoft SQL Server 2008/2012 R2 on your Machine. 2. You have done installed and configured Active Directory Domain Server on

Read More
Step by step Installation of SharePoint 2010 on Windows Server 2008 R2

I was facing too many issues with my SharePoint. After too many hit and trial, I decided to unprovision/detach SharePoint and then again attach SharePoint. I then decided to run the SharePoint Configuration wizard to perform the above operation. After 3rd step it has given me error to ask me check log file where I found nothing. OK. Then I decided to use the great PowerShell. I used

Read More
Disconnect from SharePoint using stsadm or PowerShell: Remember Basics

About Worker Process:-Worker process (w3wp.exe) runs the ASP.NET application in IIS. This process is responsible to manage all the request and response that are coming from the client system. All the ASP.NET functionality runs under the scope of worker process. When request comes to the server from a client worker process is responsible to generate the

Read More
Various ways to retrieve information of Running Worker Process (WP)