11/24/2020

Video – Writing a GUI for PowerShell

Normally I write about scripting. This time I tried my hand at recording the screen while I worked. Let me know what you think and if you have any questions or suggestions.
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/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.