
Creating a New PSSA Rule
Going from Problem to solution; we walk through creating a new rule to warn when reserved words are used as function names.
Going from Problem to solution; we walk through creating a new rule to warn when reserved words are used as function names.
Go through setting up a development environment for contributing to PSScriptAnalyzer and how to build and debug the code.
I wrote a VSCode extension for visualizing PowerShell Abstract Syntax Trees and their properties.
It's that time of year again, PSConfEU (in Malmö Sweden this year) has wrapped up and the session recordings have been released. I've watched a fair few of them and there's lots of good stuff. I've put together 10 that stood out to me.
Explore PowerShell's calculated properties feature to create custom sorting logic with Sort-Object. This approach lets you combine multiple sorting criteria and control priority ordering beyond simple alphabetical or numerical sorting.
The journey to building robust, shareable PowerShell modules begins with a fundamental concept: the PowerShell function. Functions are the heart of any well-structured script, allowing you to encapsulate reusable logic.