ElioStruyf GitHub Star | M365 Development, Developer Technologies MVP | Google Developer Expert Azure | Microsoft 365 | Visual Studio Code

Along with acting as VP of BIWUG (Belgian Information Worker User Group), Elio is an independent contractor for his own consulting company, Struyf Consulting.

Quick Tip: Converting SharePoint 2010 Application Page to SharePoint 2007

When you need to convert an application page from SharePoint 2010 to SharePoint 2007, these are the steps that need to be done: Change the “SharePoint.WebControls” and the “SharePoint.Utilities” assemblies version numbers from “14.0.0.0” to “12.0.0.0”; Remove the “Microsoft.Web.CommandUI” assembly line: Show image Assembly Reference to be removed Change the “DynamicMasterPageFile” attribute name to “MasterPageFile”, and replace the value with the following: Show image MasterPageFile Attribute The result should be something like this:

Read more

Pinning SharePoint 2010 Sites With IE9

Thanks to Katrien De Graeve for giving me the inspiration of this blog post. Last week on the HTML5 Web Camp session in Belgium, she talked about the site pinning functionality of IE9. She also recommended a jQuery plugin called ie9ify that makes site pinning integration much easier. The day after the session I started experimenting with the ie9ify plugin, and it was working as suspected.

Read more

Quiescing a SharePoint 2010 Farm as in SharePoint 2007

In SharePoint 2007 you had the ability to quiesce the farm inside central administration. This ability is not implemented in SharePoint 2010, you need to use the STSADM command to achieve this. 1 stsadm -o quiescefarm -maxduration minutes But, I have done some research and development to achieve the same as in SharePoint 2007.

Read more

SharePoint Designer Workflow Action: Retrieve the File Extension

This week I was a experimenting with creating SharePoint Designer workflows. After some time I noticed that it was not possible to retrieve the file extension in a SPD Reusable Workflow. Because this is a very useful action, I am going to explain it in this blog post on how to create a SharePoint 2010 Designer Workflow Action.

Read more
Back to top