• Get-Member

    Understanding PowerShell’s Get-Member Cmdlet Welcome back to Wahmans Powershell blog! Today, we’re diving into one of the most essential cmdlets for anyone working with PowerShell: Get-Member. If you’ve ever asked, “What properties or methods does this object have?” then Get-Member is your go-to tool. According to Microsoft, Get-Member gets the properties and methods of objects….

  • Add-Type

    PowerShell Cmdlet Deep Dive: Add-Type Welcome back to Wahmans PowerShell Blog! Today we’ll explore a mighty and often underutilized cmdlet: Add-Type. This command lets you bring the power of .NET into your PowerShell scripts by adding a .NET class to your PowerShell session. Microsoft’s Official Description: Adds a Microsoft .NET class to a PowerShell session….

  • Add-Member

    Getting to Know Add-Member in PowerShell Welcome back to Wahmans PowerShell blog! Today, we’re delving into a powerful feature in the PowerShell scripting world: the Add-Member cmdlet. According to Microsoft: Add-Member adds custom properties and methods to an instance of a PowerShell object. This mighty cmdlet allows you to enrich existing objects with new data…