Category: Development

It’s Friday! – July 15

Add Elements to the Role Explorer

Using the “Role Explorer” in Microsoft Dynamics 365 Business Central, you can get an overview of the features available to your Role. Each of the “Role Explorer” elements is an action, and a means to navigate Microsoft Dynamics 365 Business Central (I have heard this many times referred to as a “menu”).Elements can be added …

Continue reading

Validate field pattern with Regular Expression in Dynamics 365 Business Central

When accepting user input in a field, it may be necessary to validate that the value matches a particular pattern. In early versions of Microsoft Dynamics NAV, you could use the RegEx dotNet libraries to validate input against a regular expression. The RegEx dotNet libraries are not directly available in Dynamics 365 Business Central; however, …

Continue reading

Set A Windows Service Log On Account and Password with PowerShell

Repeatability is important! Right alongside that, in my opinion, is efficiency. A recent task required me to set up several Application Services setups, including setting the log on account and password. I could have done all of these manually; however, I found it more efficient and repeatable to set up a script to handle the …

Continue reading

Add Twitter Card to WordPress without Plugin

Reading this blog, one may think I focus on WordPress development and enhancements. That is not the case by any means. The focus of my career focused on the implementation of Microsoft Dynamics 365 Business Central. The concept behind this blog is to share bits of [technical] “stuff” that I encounter on my journey. The …

Continue reading

Delete files within subfolders older than a certain period using PowerShell

Delete Key In Blue

In keeping true to the concept of this blog, “Follow the life of an ERP developer, one post at a time,” this post allows you to “follow” something that I needed to crush – deleting files older than a specific number of days or hours including subfolders. Many moons ago, I created an application that …

Continue reading

How to Delete a Sprint in Azure DevOps

When working with Project Planning in Azure DevOps, Sprints are easy to create and assign to Work Items. While there is an easy way to make a Sprint, the option to delete a sprint in Azure DevOps isn’t quite as obvious. It may not often be that you want to delete a sprint (which may …

Continue reading

Change WordPress Login Page without a PlugIn

WordPress is the most popular way to create your website or blog. It is an open-source content management system that allows you to manage important aspects of your website without knowing anything about programming. WordPress also supports plugins, which are small applications that work within the software framework to offer additional functionality.  This blog is …

Continue reading

Repository-specific username/email configuration

Make sure you configure your 'user.name' and 'user.email' in git

You set up your repository. You cloned the repository and made some changes. You commit your changes and get the error – Make sure you configure your ‘user.name’ and ‘user.email’ it git When working with Git as a source control management tool, you need to have defined the user name and email config value when …

Continue reading