SharePoint 2010, 2013, 2016 – Monitor your SharePoint logs.
Quite a while ago I developed tool to monitor SharePoint logs. Since I developed this it’s been available for download on Codeplex. Recently I noticed that codeplex is going to…
SharePains by Microsoft MVP Pieter Veenstra
Microsoft 365, Power Platform, SharePoint, Teams, Azure and Dynamics
All posts about SharePoint 2010
Quite a while ago I developed tool to monitor SharePoint logs. Since I developed this it’s been available for download on Codeplex. Recently I noticed that codeplex is going to…
Currently I’m implementing an appraisal process for one of my customers using Nintex Workflow and Nintex Forms. My initial thought was to create an appraisal form and then create a…
Last week one of my customers wanted me to implement drag and drop to update a status field for one of their lists. So I found the Andrew Burgess’ article…
How do you display the first set of characters of a Publishing Page in a display template? Display templates I like the usage of Display templates but every now and…
In the many years that I worked with Microsoft products I have liked using 3rd party add-ons. Cimaware AccessFIX Fix your access databases ExcelFIX Repair your Excel spreadsheets OutlookFIX…
Today I upgraded my development SharePoint 2013 farm and things didn’t go as they should. The installation of the update all worked fine, but when I ran the SharePoint Products…
Uninstall Solution I’m trying to uninstall a sandbox solution in SharePoint 2013 using PowerShell. I’m using the following cmdlet Uninstall-SPUserSolution And I’m getting the following error: Uninstall-SPUserSolution : Feature ‘7436371b-c242-440d-b7c3-d2bff6661c77’…
Changing Default Views Sergei Sergeev’s post about changing default views helped a bit here However I found that when doing the same on publishing pages things become slightly trickier. I…
Adding a webpart Today I tried to add a web part to a page using the following code: ListViewWebPart webpart = new ListViewWebPart(); webpart.Title = "Matter Emails"; webpart.ListName = item.ListItems.List.ID.ToString("B").ToUpper();…