Increase list view threshold from 5000 items
By default SharePoint lists are throttled with a threshold of 5000 items. This is mainly to prevent a drain on resource and performance decrease: Whilst not recommended for production environments it is possible to increase this value in Central Administration. …
Show the SharePoint document version inside a Word document
If versioning is enabled on a document library it is possible to show the SharePoint document version inside a Word document (rather than maintain the version inside the Word document manually). It involves configuring a label in the Document Library…
SharePoint Designer 2010 – The server could not complete your request
Today I had a user report that they were trying to use SharePoint Designer to edit the home page of their team site but it displayed an error message: The server could not complete your request. For more specific information,…
Prevent site collection administrators from upgrading site collections
If you are upgrading from SharePoint 2010 to SharePoint 2013, and you need to prevent site collection administrators from upgrading site collections, then you can disable Self Service Upgrades using the Get-SPSite cmdlet: $portal = Get-SPSite “http://portal.lab.local” $portal.AllowSelfServiceUpgrade = False…
SharePoint 2013 – Request an upgrade evaluation site collection
If you have a site collection that is in SharePoint 2010 mode you can create a temporary upgrade evaluation site collection using the Request-SPUpgradeEvaluationSite cmdlet. Here is an example of how this would look: Request-SPUpgradeEvaluationSite -Identity http://portal.lab.local/sites/sp2010site By default the…
Identify customisations to be installed when upgrading from SharePoint 2010 to SharePoint 2013
If you are planning to upgrade a SharePoint 2010 farm to a SharePoint 2013 farm you may need to identify the customisations that must be installed on the new farm. You can do this using stsadm.exe: stsadm.exe -o enumallwebs -includewebparts…
Limit the number of concurrent site upgrades
If you are upgrading from SharePoint 2010 to SharePoint 2013 you may wish to limit the number of sites that can be upgraded concurrently. The example below uses the Set-SPContentDatabase PowerShell cmdlet to set the limit to 5: $var =…
Configure continuous crawl on an existing content source
I’m working on a SharePoint farm where documents don’t appear in search results until the next day. To ensure they appear in search results within one hour of being uploaded I will configure a continuous crawl on the content source:…
People search relevance is not optimized when the Active Directory has errors in the manager reporting structure
I often see this warning reported by SharePoint Health Analyzer: People search relevance is not optimized when the Active Directory has errors in the manager reporting structure There are lots of users in our organisation so I use the Get-ADUser…