Azure Powershell Commands
5 min readJan 18
--
Here let's explore different PowerShell commands to manage the Azure platform.
1. Creating Variables in Powershell
It can define a variable in PowerShell using the $ symbol followed by the name of the variable. In the below example, the variable $myfirstvar
is assigned with the string “Hello World”
$myfirstvar = "Hello World"