Found 989 Articles for Software & Coding

How to get the location of the Azure VM using Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 09:47:35

546 Views

To find the location of the particular Azure VM using Az CLI, we can use the below command but before that, you need to make sure you are connected to the Azure cloud and had set that specific subscription.PS C:\> az vm show -n VMName -g ResourceGroupName --query '[location]' -otsvAlternatively, you can use the below command to get the location of the Azure VM.PS C:\> az vm list --query "[?name==’VMName’].location" -otsv

How to get the Azure VM Size using Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 11:12:45

1K+ Views

To get the Azure VM size using Azure CLI, we first need to make sure that the Azure account is connected to the specific subscription for the VM that we need to retrieve the VM size.To get the specific Azure VM size, we need to first retrieve the VM details and then need to run the JMESPATH query to retrieve the VM size.az vm show -n VMname -g ResourceGroupName --query '[hardwareProfile.vmSize]' -otsvyou can also retrieve the size of the VM without resource group name, using “az vm list” command.az vm list --query "[?name=='AzVM'].hardwareProfile.vmSize" -otsvRead More

How to list the Azure VMs using Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 09:46:33

7K+ Views

To list all the Azure VMs connected to the particular subscription, we need to use the “Az vm” command. Before that, we need to make sure the Azure is connected to the desired subscription, if not use the below command to set the Azure Subscription.az account set -s 'subscription name or id'Once the Azure subscription is set, we can use the below command to retrieve the Azure VMs.PS C:\> az vm list -otableTo get the particular azure VM using CLI, we need to provide the VM name and resource group name.PS C:\> az vm show -n VmName -g ResourceGroupName -otable“az ... Read More

How to get the Azure resource group using Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 09:45:49

8K+ Views

To get all the Azure resource groups connected to the particular subscription use the az group command.Before using this command make sure you are connected with the Azure account and if not connect the azure account with the “Az login”Once you are connected to the Azure account, set the subscription name for which you want to retrieve the resource groups.az account set --subscription 'subscription name or id'Once you have set the subscription, use the below command to retrieve all the resource groups.PS C:\> az group list -otableTo get the particular resource group details, use the below command.PS C:\> az group ... Read More

How to connect to the Azure subscription using Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 09:45:03

8K+ Views

To connect to the specific azure subscription using Az CLI we need to use “Az account set” command but before using this command make sure you are connected with the Azure cloud using “az login” account.az account set --subscription 'subscription name or id'You can also use -s instead of --subscription.az account set -s 'subscription name or id'To check if the subscription is set properly, use the below command.PS C:\> az account show -otable

How to get the currently logged-in user account with Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 01-Sep-2021 09:35:09

9K+ Views

To get the connected user account with the Azure CLI, you need to use the below command.PS C:\> az account showOnce you type the command, you will get the output in JSON format as shown below.PS C:\> az account show {    "environmentName": "AzureCloud",    "homeTenantId": "Your tenant ID",    "id": "Subscriptio ID",    "isDefault": true,    "managedByTenants": [],    "name": "Subscription Name",    "state": "Enabled",    "tenantId": "tenant ID",    "user": {     "name": "user logged in email id or username",     "type": "user"    } }To get the output in the table format, use the -otable or –output tablePS C:\> az account show -otable

How to Install the Azure CLI on Windows using PowerShell?

Chirag Nagrekar
Updated on 01-Sep-2021 09:32:31

6K+ Views

To install the Azure CLI, you can download it from the location below,https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-windows?tabs=azure-cli/To install the Azure CLI using PowerShell, use the below command.Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows - OutFile .\AzureCLI.msi Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet' rm .\AzureCLI.msiTo check if the Az CLI is installed successfully run the Az in the cmd or the PowerShell.

How to get the Azure VM available sizes using PowerShell?

Chirag Nagrekar
Updated on 01-Sep-2021 09:31:05

646 Views

To get the Azure VM sizes using PowerShell, we can use the Get-AzVmSize command.To get all the supported Azure VM sizes as per location, use the below command.PS C:\> Get-AzVMSize -Location EastusOutputTo get available and supported size for the existing virtual machine, use the below command.Get-AzVMSize -ResourceGroupName ResourceGroup1 -VMName TestVM

How to get the Application security groups of the Azure VM using PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 09:40:48

468 Views

To get the Application security groups of the Azure VM using PowerShell, we need to first get the Network Interface of the Azure VM.The below command will retrieve the NIC name of the Azure VM.PS C:\> $vm = Get-AzVM -Name TestVM $nic = (($vm.NetworkProfile.NetworkInterfaces.id).Split('/'))[-1]Once we have the NIC name, we can use the Get-AzNetworkInterface command to retrieve the NIC information and the Security group.The below command will retrieve the application security group names using PowerShell.PS C:\> $nicsettings = Get-AzNetworkInterface -Name $nic $nicsettings.IpConfigurations.ApplicationSecurityGroups

How to get the load balancers connected to the Azure VM using PowerShell?

Chirag Nagrekar
Updated on 01-Sep-2021 09:52:41

436 Views

To get the load balancers attached to the Azure VM using PowerShell, we first need to retrieve the Azure VM network settings. For example, we have an Azure VM name “TestVM” and we willPS C:\> $vm = Get-AzVM -Name TestVM $nic = (($vm.NetworkProfile.NetworkInterfaces.id).Split('/'))[-1]Once we have the network interface name, we need to retrieve the load balancer settings, and to get the Load Balancer settings we need to use the Get-AzNetworkInterface command.PS C:\> $nicsettings = Get-AzNetworkInterface -Name $nicThe below command will retrieve the load balancer name.(($nicsettings.IpConfigurations.LoadBalancerBackendAddressPools.id).Split('/'))[-3]To get the Load Balancer backend pool name, use the below command.(($nicsettings.IpConfigurations.LoadBalancerBackendAddressPools.id).Split('/'))[-1]Overall Script −$vm = Get-AzVM ... Read More

Advertisements