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 … Read More
All Microsoft MVP, Pieter Veenstra’s posts about SharePoint 2010. If you want to learn more about SharePoint 2010 then this is the site to visit
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 … Read More
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 … Read More
Last week one of my customers at hybrIT Services wanted me to implement drag and drop to update a status field for one of their lists. So I found the Andrew … Read More
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 … Read More
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 … Read More
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 … Read More
Uninstall Solution I’m trying to uninstall a sandbox solution in SharePoint 2013 using PowerShell. I’m using the following cmdlet Uninstall-SPUserSolution Uninstall-SPUserSolution -Confirm:$false -Site $siteUrl -Identity $solutionname And I’m getting the … Read More
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 … Read More
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(); … Read More