Tag Archives: .Net

How to easily Set Up CI/CD for your Azure DevOps Source Controlled Web Projects

Ever wondered how to configure your Azure DevOps to do CI/CD that is triggered when you check in your Web Projects, well its quite easy as long as you already have set up your projects using Azure DevOps as its source control. This post is to demo to you in a few steps how this… Read More »

What’s with this ‘/_vti_bin/owssvr.dll’ and ‘/MSOffice/cltreq.asp’ errors on my MVC Application

You might be getting the following errors below on your MVC Application and your wondering where does this come from? You looked everywhere in your solution and you’re definite you don’t have the following pages that the error is referring to. And now you are getting crazy and is looking for answers on how to… Read More »

Synchronize Active Directory Information with Sharepoint Foundation 2013 User Profiles

You might be wondering why should I do this when Sharepoint can do this already though User Profile Synchronization, well that is partly true because in Sharepoint Foundation 2013 and even on 2010 it is not available.  Having said that there will always be a way and that’s what are trying to achieve on this… Read More »

How to Archive SharePoint List Items to SQL Server

You might have reached the threshold of a SharePoint List and you’re afraid to increase the limit as you might affect the performance of you server.  Now you are thinking of other solutions and one thing came to mind, why not archive the data? Well that is a good idea but how are you going… Read More »

Programmatic Management of Scheduled Task

You might be wondering how to manage windows scheduled task programmatically using C# from an application (Windows or Web), well by using the COM Object TaskScheduler it is possible and easily implemented.  Here is how.