Azure Functions: Add a PowerShell Module
Azure Functions are a great serverless option in Azure for executing code. You can deploy functions using multiple languages, including PowerShell. This tutorial will teach you how to configure your…
Azure Functions are a great serverless option in Azure for executing code. You can deploy functions using multiple languages, including PowerShell. This tutorial will teach you how to configure your…
PowerShell is a fantastic tool for creating repeatable processes. You might need to create, modify, or delete objects in your environment, such as user accounts, virtual machines, or mailboxes. You…
In a previous article (PowerShell SecretManagement: Getting Started), you learned about a new module from Microsoft named SecretManagement. This module provides an abstraction layer to an extension vault for storing…
Managing secrets, passwords, or tokens in a PowerShell script has always been a tricky situation. Microsoft has released the PowerShell SecretManagement module. This module provides cmdlets to interact with secrets…
If you want to take your PowerShell function writing skills to the next level, consider implementing Begin, Process, and End blocks. These input processing methods enable your functions to process…
PowerShell arrays are a powerful construct when working with a group of similar items. You can loop through them and access items using their index values. However, adding or removing…
Adding tab completion to your PowerShell parameters (or arguments) is a great way to enhance the user experience. You provide the user with possible values or build a dynamic list…
In a previous tutorial, you learned about creating your first Azure Automation PowerShell runbook. You set up an Azure Automation account, authored a PowerShell runbook, and incorporated parameters and variable…
Azure Automation is a cloud-based automation and configuration service that you can use for process automation through runbooks. You can author runbooks using a graphical interface or in PowerShell or…
PowerShell 7 introduced the ternary operator. The ternary operator is available in other programming languages, notably C#. The ternary operator can be confusing if you are unfamiliar with its syntax.…