Found 463 Articles for PowerShell

How to log in to the Azure account using Az CLI command in PowerShell?

Chirag Nagrekar
Updated on 31-Aug-2021 09:42:58

12K+ Views

To login to the Azure account using Azure CLI, we need to use the az login command. Once you type the az login command, it will prompt for the Azure portal login console.If you need to log in with the device authentication code in the browser, you need to use the parameter –use-device-code.PS C:\> az login --use-device-code To sign in, use a web browser to open the page https://microsoft.com/devicelogin and enter the code ‘DeviceCode’ to authenticate.You need to open a website https://microsoft.com/devicelogin/ and have to enter a code. If you are not already connected with the Microsoft Azure portal, you ... Read More

How to retrieve the Azure VM nic name using Azure CLI in PowerShell?

Chirag Nagrekar
Updated on 01-Sep-2021 09:49:50

351 Views

To get the Azure VM NIC name using Azure CLI, use the below command but before running the command make sure that you are connected to the Azure Account and the proper Azure subscription using Azure CLI.az vm show -n AzureVM -g ResourceGroup --query '[networkProfile.networkInterfaces][].id' -otsvWe need the NIC name from this. If you are running the Azure CLI in the PowerShell terminal then use the command below.PS C:\> $nicinfo = az vm show -n VMname -g RGName --query '[networkProfile.networkInterfaces][].id' -otsv PS C:\> ($nicinfo.Split('/'))[-1]

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

Chirag Nagrekar
Updated on 31-Aug-2021 11:13:16

620 Views

To get the Azure VM username using Az CLI, we need to use the below command.PS C:\> az vm show -n AzVM -g ResourceGroup --query '[osProfile.adminUsername]' -otsvThe above command will retrieve the Azure VM username. You can also use the below command to retrieve the Azure VM username without knowing the resource group name.PS C:\> az vm list --query "[?name=='vmname'].osProfile.adminUsername" -otsvBefore running the above commands, make sure that you are connected to the Azure cloud and the specific Azure Subscription.

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

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

504 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

7K+ 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

8K+ 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

5K+ 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.

Previous 1 ... 5 6 7 8 9 ... 47 Next
Advertisements