Chirag Nagrekar has Published 465 Articles

How to retrieve CSV file headers using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 08:04:58

5K+ Views

To retrieve the CSV file headers using PowerShell, we need to use the hidden property PSObject once we use to import the CSV file. We have a CSV file stored at the C:\temp\VMTags.csv and we need to retrieve its headers. The CSV file is as below.ABCDForPatching_DayApplicationOwnerAnsibleSundaySecretTagChiragImporting the CSV file, PS ... Read More

How to convert JSON to CSV file using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 08:00:52

3K+ Views

To convert the JSON to the CSV format we need to first use the ConvertFrom-JSON command. For example, we have already JSON file present with us at the C:\temp\VMinfo.JSON location. We will first import this file and then convert it to CSV as shown below.Get-Content C:\Temp\VMInfo.json | ConvertFrom-Json | Export-Csv ... Read More

How to change the Azure tag value using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:59:15

1K+ Views

To change the azure value using PowerShell we need to use the Update-AZTag command with the merge property.ExampleFor example, we have the Azure VM TestMachine2k16 and we have its tags as shown below.PS C:\> $vm = Get-AzVM -VMName TestMachine2k16 PS C:\> $vm | Select -ExpandProperty TagsOutputKey          Value ... Read More

How to get the applied azure resource tags using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:57:16

2K+ Views

To get all the applied tags to the Azure resources we need to use the Get-AZTag command and need to provide ResourceID to it. For example, We need to retrieve the Azure VM tags and we will use its resource ID.PS C:\> $vm = Get-AzVM -Name Testmachine2k16 PS C:\> Get-AzTag ... Read More

How to apply a tag to the azure resource group using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:54:56

579 Views

Like Azure VM, we can apply the azure tags to the resource group or any other resources. The tagging works on the resource ID and in azure, all the resources come with the resource ID property.To apply the tag to the azure resource group, we first need to use get ... Read More

What is the difference between the New-AZTag and Update-AZTag command in Azure PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:53:31

268 Views

New-AZTagWhen we use the New-AZTag command, it removes all the tags from the particular resource and adds a new tag. This command is generally helpful when we are creating a new resource and we want to apply the tag for it.Update-AZTagWhen we use the Update-AZTag command, it updates, deletes, and ... Read More

How to delete the specific tag of Azure VM using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:51:36

1K+ Views

To delete the specific tag of the Azure VM, we can use the Delete property of the Operation parameter in the Update-AZTag command. In the below example, we have the below tags of the Azure VM TestMachine2k12.Key             Value ---           ... Read More

How to add the tag of Azure VM using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:49:46

2K+ Views

To add the tag to the Azure VM we need to use the Update-AZTag command. This command will merge the new tag to the existing tag(s) of the VM. If you are planning to add the entirely new VM tag, you can use the New-AZTag command. Once you use the ... Read More

How to import the tags in Azure?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:47:42

456 Views

In the previous article, we have seen that we can export the Azure resource tags in the JSON file or CSV format. There are some cases when you rebuild your resource and you might need to restore your tags or someone with the authorized person to have azure resource access ... Read More

How to Export the azure VM tags using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 07:45:32

1K+ Views

There are two ways to get the applied azure VM tags using PowerShell.Using Tags Property of the Azure VMUsing the Get-AZTag command.ExamplePS C:\> Get-AzVM -VMName Testmachine2k12 | Select -ExpandProperty Tags Key          Value ---          ----- Patching_Day Sunday Owner       ChiragAnother way ... Read More

Advertisements