Skip to the main content.

Unlocking the Power of PowerShell: Tips for Success

April 16, 2025 - 4 min read

Bulk Testing PowerShell Scripts with the Tokenizer

In Part 1, we explored the internal PowerShell parser to see how it analyzes code and breaks it...

April 11, 2025 - 3 min read

Mastering PowerShell Tokenization for Efficient Scripting

The internal PowerShell parser processes any code before execution. With full access to this...

April 3, 2025 - 3 min read

Using .NET Libraries in PowerShell - Functions, Cmdlets and .NET

In part 3, we identified a useful .NET method to display system dialogs and then wrapped it inside...

March 26, 2025 - 6 min read

Using .NET Libraries in PowerShell - GUI dialogs and case-correcting text

In the previous two parts, we looked at a few .NET types and ways to “look inside” and find their...

March 19, 2025 - 8 min read

Using .NET Libraries in PowerShell - Libraries and Types

In part 1, we began exploring how cmdlets internally rely on .NET libraries and how you can access...

March 11, 2025 - 5 min read

Using .NET Libraries in PowerShell - Best Practice and Quick Start

Most PowerShell cmdlets are simply wrappers around underlying .NET libraries. In this series, we’ll...

February 25, 2025 - 5 min read

How To Use Web Services in PowerShell - Advanced Options

In the previous parts we looked at the basic tasks Invoke-WebRequest and Invoke-RestMethod perform,...

February 21, 2025 - 5 min read

How To Use Web Services in PowerShell - Invoke-RestMethod Deep Dive

In part 2 we looked at Invoke-WebRequest. Today we focus on Invoke-RestMethod: this cmdlet performs...

February 18, 2025 - 4 min read

How To Use Web Services in PowerShell - Invoke-WebRequest Deep Dive

Let’s focus on a few things that the more basic Invoke-WebRequest can do for you.