Disable-VMResourceMetering

Disables collection of resource utilization data for a virtual machine or resource pool.

Syntax

Disable-VMResourceMetering
       [-ResourcePoolName] <String>
       [[-ResourcePoolType] <VMResourcePoolType>]
       [-ComputerName <String[]>]
Disable-VMResourceMetering
       [-VMName] <String[]>
       [-ComputerName <String[]>]
Disable-VMResourceMetering
       [-VM] <VirtualMachine[]>

Description

The Disable-VMResourceMetering cmdlet disables collection of resource utilization data for a virtual machine or resource pool.

Calling this cmdlet stops collection of data and deletes data collected up to the point of the call.

After the call, Measure-VM and Measure-VMResourcePool are not usable.

Examples

Example 1

PS C:\>Disable-VMResourceMetering -VMName TestVM

Disables collection of resource utilization data on a virtual machine named TestVM.

Example 2

PS C:\>Get-VM Test* | Disable-VMResourceMetering

Disables collection of resource utilization data on a set of virtual machines whose names begin with the string Test.

Example 3

PS C:\>Disable-VMResourceMetering -ResourcePoolName TestResourcePool -ResourcePoolType Memory

Disables collection of resource utilization data collection on a resource pool named TestResourcePool of type Memory.

Parameters

-ComputerName

Specifies one or more Hyper-V hosts on which resource utilization data collection is to be disabled. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer - use "localhost" or a dot (".") to specify the local computer explicitly.

Type:String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-ResourcePoolName

Specifies the friendly name of the resource pool on which resource utilization data collection is to be disabled.

Type:String
Aliases:Name
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ResourcePoolType

Specifies the resource type of the resource pool on which resource utilization data collection is to be disabled.

Type:VMResourcePoolType
Position:2
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-VM

Specifies the virtual machine on which resource utilization data collection is to be disabled.

Type:VirtualMachine[]
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-VMName

Specifies the friendly name of the virtual machine on which resource utilization data collection is to be disabled.

Type:String[]
Position:1
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

Inputs

Microsoft.HyperV.PowerShell.VirtualMachine[]

Microsoft.HyperV.PowerShell.VMResourcePoolType