PowerShell Real-Time Log Monitoring
Imagine sitting by a campfire, watching the flames dance and crackle. Meanwhile, you don’t want to leave because the action is happening in real time. That’s exactly what Get-Content -Wait…
Imagine sitting by a campfire, watching the flames dance and crackle. Meanwhile, you don’t want to leave because the action is happening in real time. That’s exactly what Get-Content -Wait…
You know that moment when your script runs perfectly during testing, but then mysteriously breaks in production and you have NO idea what happened? Or when someone asks “what exactly…
Every PowerShell function has a little secret. When you call it with parameters, it quietly writes them down on a notepad before running the code. Most of the time we…
I’m excited to announce the release of AzPolicyCompare, a PowerShell module I’ve developed to help Azure professionals compare Azure Policy Initiatives with ease. Managing and aligning policies across multiple initiatives…
For the trusted readers of my blog 😉 yes, this is another event driven architecture topic! And this time we’ll be diving into WMI Events with PowerShell! PowerShell is more…
If you’ve been around PowerShell for a while, you know it’s great at looping through stuff. Need to process a list of files? Easy. Query a set of servers? Piece…
PowerShell is built on top of the CLR (Common Language Runtime) of .NET, which means the two are already deeply connected. But here’s something that often surprises people: you can…
PowerShell is an object-oriented scripting language, which means it processes code from top to bottom, right? Well, think again! PowerShell is a nice combination of .NET and some low end…
When I’m giving training on what PowerShell is, how to use it, and showing people how I apply it in real scenarios, I often get questions about real-life business cases.…
This is not the first time I’ll be writing about event-driven architecture, nor will it probably be the last time 😊. I was checking my previous blog posts about event-driven…