Unleash your script
Windows PowerShell is a task automation and configuration management framework from Microsoft, consisting of a command-line shell and associated scripting language built on the .NET Framework.
Use MahApps.metro built-in dialogs
Apply beautiful modal dialog into your project.
How to apply a theme on your GUI?
Some tips on how to apply a theme on your GUI ...
Sunday, 14 October 2018
Sometimes PowerShell and WPF can be tricky to achieve what you want. Treeview controls is not making things any easier. Just for a simple click, you need to go through a lot of trouble.
Before continuing reading, let's introduce some variables:
$treeviewItem is a TreeViewItem controls ([Windows.Controls.TreeViewItem])
$TreeView is the TreeView controls that holds several TreeViewItem.
If you want...
Monday, 16 April 2018
PowerShell WPF - Customize TreeView Icon
I have seen many people struggle with this so I decided to write something about TreeView in PowerShell.
The script in this post is based on the project available here (written in C#). I simply rewrote it in PowerShell and added my personal touch. He displayed...
Thursday, 12 April 2018
Window LifeTime Events in PowerShell

In this post I’ll explain the lifetime of your window from the moment it is initialized and the moment it's destroyed. I hope this post will help you achieve easily what you seek and could be time-saving in some case.
What I’m going talk about here?
«To find it you...
Monday, 9 April 2018
PowerShell_Charts - Introduction to LiveCharts

As we all know flat design is the new black with material design and etc. So basically we are following the trend here.
Displaying graph does not escape this rule. Personnally, I wanted to do something about this for a while but I had no idea where to start. I wanted something compatible...
Monday, 2 April 2018
Powershell_WPF - Part V - Display Dynamic content

In this post, I will show you how to add dynamic content inside a WPF window in PowerShell. Most of the time, we display dynamic data inside a Datagrid or a Listview, but what if we want to create our own display for each item?
Recently I came across this post: “Let’s play with...
Monday, 26 March 2018
Add multiple buttons in Datagrid

If you are reading this, that means you wanted to add a button inside a Datagrid in PowerShell.
Let us suppose that you need to add one or multiple buttons inside a single column in a datagrid. Data will be loaded inside the gridview and at the same time: n-number of command buttons need...
Monday, 19 March 2018
Mahapps Custom Dialog

When you design your apps, sometimes you need to add a custom content to your dialog form. In this post, I'm going to show you how to create your own custom dialog with PowerShell using Mahapps.
Here is a preview of the result:
You can put whatever content you want inside the dialog....
Monday, 31 July 2017
Find missing driver or disabled device

At one point of our life, we all had an issue with a missing driver on
our computer. A problem with the display not shown correctly because the driver
installed is not the appropriate one. A problem with a network card or embedded
WIFI card and so on …
GitHub link for this project:
htt...