News

Functions are a powerful feature of PowerShell that can help you to write more modular, reusable, and maintainable code.
Learn how to build advanced PowerShell functions to streamline tasks and improve productivity in Business Intelligence.
To avoid errors, it's important to write PowerShell scripts that prevent code from running on an unintended platform. Luckily, this is easier to do than it sounds.
#Install-Module -Name AWSPowerShell -Scope CurrentUser -Force # Install the AWS Module - Windows PowerShell. # AWS has it's own built in way to discover functions. You could also always use ...
In recent years, I have found that nearly all of the PowerShell scripts that I have written for production use have required me to pass values to functions within the script. If you are creating ...
Create your first PowerShell function in Azure (preview) [!INCLUDE functions-powershell-preview-note] This quickstart article walks you through how to create your first serverless PowerShell function ...
PowerShell modules allow you to combine multiple scripts to simplify code management. Learn step-by-step instructions for creating and using these modules.
PSEdit is a built-in function that runs only on PowerShell ISE. Not anymore! Drop this function in your REGULAR PowerShell console profile! PSEdit now in your PowerShell consoles!
Creating arrays in PowerShell is a common occurrence for any scripter. Arrays are an important data structure in any language and PowerShell is no different. However, not all arrays are the same. In ...