Yesterday, it was that time of the year again... The annual review for all MVPs and... I got that special email again, extended for another year! In this small blog post, I want to thank a few people and all you readers!
Using ErrorAction in PowerShell
The ErrorAction Parameter for PowerShell cmdlets is very helpful for... Handling errors 🙂 In this blog post, I will show you the different options it offers and which to use when.
Using the PowerShell Webserver Module
Ever needed to start a web server without installing IIS or a similar web server? Then the Webserver PowerShell Module could be something for you 🙂 In this blog post, I will show you how it works.
Using the Hashtable PowerShell Module
Hashtables are something you use regularly, but there is a Module to help with certain operations, such as merging and converting to PSCustomObject. In this small blog post, I will show you how it works.
PowerShell Terminal tips and tricks
It's been a busy week, preparing for a big customer migration this weekend and scripting for it... I realized that I use some Terminal things that are worth sharing in this small blog 🙂
PowerShell and the new Coreutils for Windows
Microsoft released Coreutils for Windows at the beginning of this month, command-line tools that are native to Linux, macOS, and WSL. In this blog post, I will show you how they work and if you can use them with PowerShell, too 🙂
PSConfEU 2026
I attended my third PSConfEU event, this time it was in Wiesbaden (Germany). In this long blog post, I will recap the week, the sessions, the event, the people I met, and everything else surrounding it.
Using PSBoundParameters or IsPresent when checking PowerShell Switch or Parameters usage
Had a talk with a colleague about whether to use IsPresent or PSBoundParameters to validate if a Switch or Parameter was used in a Script or Function. In this blog, I will explain what they do and how you can use both.
Create executables of PowerShell scripts
Giving PowerShell scripts to people often results in questions like, "How do I start this?" or "I ran this, but nothing happens..." (When sending a script that contained a function). In this blog post, I will show you how to create an executable of a script and its limitations.
PowerShell Methods
In scripts, I often use Methods to perform actions or retrieve information. In this blog post, I will show you how to discover and use them 🙂