Azure Cloud Shell: Getting Started Guide
Did you know Azure provides a browser-accessible shell for managing Azure resources? You can use both PowerShell and Bash commands directly in your browser using the Azure Cloud Shell! In…
Did you know Azure provides a browser-accessible shell for managing Azure resources? You can use both PowerShell and Bash commands directly in your browser using the Azure Cloud Shell! In…
Are you tired of managing Active Directory using the graphical interface? Then you might be interested in the Active Directory PowerShell module! This module gives you the ability to manage…
While PowerShell concepts hash table and PSCustomObject may look similar, they are pretty different. Both have value, but which one you use depends on the situation. In this post, you…
With organizations moving more workloads into Azure, administrators now have more options for running PowerShell commands and scripts across virtual machines. In this post, you will learn multiple ways to…
If you are familiar with Terraform, you know it has a plan option to see what changes Terraform will make. Did you know Azure PowerShell has the same option? You…
PowerShell commands can have lots of parameters. It can be difficult typing all of them out with their values or using backticks to perform line continuation. Sounds like a case…
Have you been working with Azure Resource Manager (ARM) templates but found the JSON syntax difficult to work with? Do you have some awesome PowerShell skills that you’d like to…
Microsoft Office 365 licenses include many products and services – Exchange, SharePoint, Teams, etc. However, when organizations first adopt Office 365, many administrators deactivate some of these individual services. In…
When working with APIs, you often need to convert between PowerShell objects and JSON. Web APIs accept requests in JSON notation, and your PowerShell script might have data represented as…
PowerShell uses variables to store information that can be useful later on. Variables also make it easy to change values in multiple places by changing the variable’s definition. You can…