11/12/2020

Creating a WPF Template

The last button for my template is the maximize button. To do this we add yet another add.Click event. Inside the event, we do things a bit differently than we had with the other two buttons. That is inside this we use an if statement, so if it is not maxed it maximizes, but if it is maxed it goes back to the original size. How do we do that? Let us take a look.
06/30/2020

Service Tag & Dell Support Lookup tool

Recently I have had the need to look up devices through Dell's support site. I thought it would be a perfect example of a task I can do through scripting the Service Tag & Dell support lookup tool. In the following post I explain how to get the service tag, place that data in a variable, use dot notation to get the data from the variable we need and subsequently open the browser at the correct dell support page for your device.
06/24/2020

PowerShell System Tray Tool

We need to add "function", I use the term loosely as I am not building a PowerShell Function, I am building functionality for when the Exit button is clicked. To do this I open a new PowerShell window, and then hide the icon, close the window, and kill the process. I open a new PowerShell console on close as preference, I am probably going to need another console window shortly after closing this window.