The Portal Super User and the Portal Super Reader accounts are used for caching objects in SharePoint and heavily used by the publishing feature. By default out of the box…
Category: Code
SharePoint Site Templates list
SharePoint Site Templates list using PowerShell script. This PowerShell script creates a table of available site templates with their ID’s and Titles : function Get-SPWebTemplateWithId { $templates = Get-SPWebTemplate |…
SharePoint PowerShell to restart IIS on all your farm’s servers
This script will loop through the servers on your farm based on the server role , and will execute an IISreset on all servers matching the role. clear $spserver =…
SharePoint 2016: Databases running in compatibility range, upgrade recommended
You may notice the above comment when you create a brand new farm in Central Admin under Central Administration->Upgrade and Migration -> Review database status On a new farm without…
PowerShell Get site collection disk size
#Large amounts of memory are often required when SPWeb, SPSite, or SPSiteAdminsitration objects are used. So the use of these objects, or lists of these objects, #in Windows PowerShell scripts…
Intro to SharePoint developing framework
Microsoft SharePoint Framework (SPFx) is a client based development platform that is more suited to cloud development. It allows you to use a set of tools (not only visual studio)…
SharePoint PowerShell Handy ADFS scripts
Adding a PowerShell sanp-in you need to use this once at each PowerShell editor session. Add-PSSnapin Microsoft.SharePoint.PowerShell Get ADFS settings The following commands will present the current security provider…