SharePoint 2016 – The upgraded database schema doesn’t match the TargetSchema
I have not had much exposure to SharePoint 2016 yet and have only just applied my first cumulative update. Unfortunately it didn’t go well and failed. Here is what I pulled out of the log file: ERR Failed to…
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…