Category: SharePoint 2010

Installing Sitecore Horizon

Sitecore Horizon is a powerful Next-Gen Experience Management Tool which your Content Authors and Marketers are going to love. It changes the way we look at CMS. Built with Node it's way faster. Sitecore Horizon brings 3 key features on the table: Enhanced Page Editor (with features like Auto-Save, Quick Publish) Simulator Mode (Device Channel ...

Uninstall Sitecore 9.x: Remove Sitecore Certificates

With Sitecore 9.2 and above, Uninstalling Sitecore has never been much easier. The Uninstall-SitecoreConfiguration SIF PS Module Commandlet does a clean uninstall of the respective configurations installed on your workstation/server. Here is the Command line for your reference: Uninstall-SitecoreConfiguration @singleDeveloperParams *>&1 | Tee-Object XP0-SingleDeveloper-Uninstall.log This comes up as a commented line in the respective SP ...

Sitecore Powershell to update item fields

The Powershell module is one of the flexible ways to work with the Sitecore items with ease. If you have not installed the module yet, i highly recommend installing the Sitecore Powershell Extensions module from the Sitecore Marketplace Here is a code snippet to update the Sitecore item fields: https://gist.github.com/aackose/03f68e769aca7baeb98ec1a1d4a3b32e The above script will be recursive ...

Microsoft.SharePoint.SPException: Schema version of backup 15.0.xxxx.xxxx does not match current schema version 15.0.yyyy.yyyy

A common error that you might face while doing site collection backups and restore is the following error: Could not deserialize site from E:\SiteCollection1.bak . Microsoft.SharePoint.SPException: Schema version of backup 15.0.4641.1000 does not match current schema version 15.0.4719.1000     at Microsoft.SharePoint.SPSite.Restore(String filename, Boolean isADMode, Boolean& readOnlyMode, Boolean& hadWriteLock) Note: You can capture this error ...

S
W

What is SharePoint?

Couple of days back, i was asked to prepare a 3 minute presentation. I felt SharePoint was a great technology that i could showcase. While browsing through the net, i stumbled upon the following youtube video:   Based on this video, i came up with a PPTX presentation, which you can access from the link ...

S

SharePoint Client Object Model (ECMAScript) #2 – Update Web Properties

SharePoint Client Object Model (ECMAScript) provides the capabilities of SharePoint Server Object capabilities at the client side. In this tutorial, let me show you how you can play around with the Client Object Model through IE Developer Toolbar how to update Web properties. Check the screenshot below, to know what we are trying to achieve ...

S

SharePoint Client Object Model (ECMAScript) #1 – Get Context Object

SharePoint Client Object Model (ECMAScript) provides the capabilities of SharePoint Server Object capabilities at the client side. In this tutorial, let me show you how you can play around with the Client Object Model through IE Developer Toolbar. Check the screenshot below, to know what we are trying to achieve here: Below is the function ...

W

WebRequest.GetResponse() throwing SSL secure channel error

Problem Statement: WebRequest.GetResponse() is one of the most common ways we adopt to perform a HTTPWebRequest from our server side. This case was a specific one, although the error appeared to be more generic in nature. In fact it happened only in SharePoint and not in my .Net application. The error observed in the GetResponse() ...