Chirag Nagrekar has Published 465 Articles

How to delete the Azure Resource Group using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:16:22

2K+ Views

To delete the azure resource group using PowerShell, we need to use the Remove-AZResourceGroup command. But before using this command, make sure that no usable resources exist in the resource group that you want to delete.To check if the resources are available in the resource group, use the below command. ... Read More

How to Export the Azure VMs using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:16:03

1K+ Views

To export the azure VMs using PowerShell, we first need to get their desired properties. The cmdlet Get-AZVM will get all the VMs connected to the particular subscription. To export them to the CSV file we can use the below command.ExampleGet-AzVM | Export-Csv .\AZVMs.csv -NoTypeInformationOnce you run the above command, ... Read More

How to create a new Azure resource group using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:15:46

2K+ Views

Azure Resource Group is a container that stores the resources like Virtual Machines, Storage, IP addresses, etc. To create a new Azure Resource group, we need to use the New-AZResourceGroup command.To use this cmdlet, you first need to connect to the Azure account, and then if you want to create ... Read More

How to get the azure resources from the resource group using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:11:36

2K+ Views

To get the available resources from the resource groups using PowerShell, we need to use the Get-AZResource command. Suppose we have the resource group name AnsibleTestRG and we need to retrieve the resources from the resource group, then we will use the below command.ExampleGet-AzResource -ResourceGroupName AnsibleTestRGTo filter the output, OutputGet-AzResource ... Read More

How to check if the Azure resource group is empty or not using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:10:50

995 Views

To check if the resource group is empty or not we need to check if the resource group contains any resources.For this example, We have a resource group name called  the TestRG and we need to check if it is empty.Example$resources = Get-AzResource -ResourceGroupName TestRG if($resources){"Resource group is not empty"} else{"Resource group is empty"}OutputResource group is emptyTo check if the resource ... Read More

How to create a temporary file using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:10:28

3K+ Views

To create a temporary file with the PowerShell, we can use the New-TemporaryFile command. This command creates a temporary file tmp.tmp where NNNN represents the random hexadecimal number.ExamplePS C:\> New-TemporaryFile Directory: C:\Users\Administrator.AUTOMATIONLAB\AppData\Local\Temp Mode                LastWriteTime         Length Name ----       ... Read More

How to get the disk performance using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:08:15

5K+ Views

To get the disk performance using PowerShell, we need to use the Performance counter of the disk. There are performance counters available for the Physical disk or the logical disk. To check what the disks related counter sets are available we can use the below command, ExamplePS C:\> Get-Counter -ListSet ... Read More

How to get the Process performance counter using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:07:51

342 Views

To get all the process-related counters, you need to use the below command.ExampleGet-Counter -ListSet "*Processor*" | Select CounterSetNameOutputCounterSetName -------------- Processor Information Per Processor Network Activity Cycles Per Processor Network Interface Card Activity Hyper-V Worker Virtual Processor Hyper-V Hypervisor Virtual Processor Hyper-V Hypervisor Root Virtual Processor Hyper-V Hypervisor Logical Processor Processor ... Read More

How to get the windows performance counter using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 12-Apr-2021 11:07:01

693 Views

To get the Windows Performance counter using the Powershell, we can use the Get-Counter cmdlet.There are various performance counters available to measure the performance of the windows operating system. Get-Counter cmdlet is used to retrieve the performance of the local or the remote systems with the specific counter name.When you ... Read More

How to delete all the tags of the azure resource using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 06-Apr-2021 08:06:13

606 Views

To delete all the tags of the Azure VM using PowerShell, we need to use the Remove-AZTag command.To delete the azure resource tags, we need its resource ID but before that, it is always better to take azure resource tags backup. You can search the question on the TutorialPoints site ... Read More

Advertisements