When trying to run a SharePoint workflow on 2016 farm the workflow won’t start – this is a known bug related to .NET patching. to resolve it use…
Category: PowerShell
SharePoint is keep on prompting for username and password
I have created a new farm and for some reason accessing a brand new web application prompted to enter username and password, and even after providing correct credentials I couldn’t…
Downloading SharePoint Online Management Shell
These are the steps for downloading SharePoint Online Management Shell open the following link : https://www.microsoft.com/en-us/download/details.aspx?id=35588 and fallow these steps: Click on download the file Select your environment (86 or 64)…
Super User and Super Reader accounts
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…
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 |…
Creating a root site collection
When creating a root site collection to a new created web application make sure to assign it the right site template. Especial when you want to migrate content from one…
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…