Reset-VMResourceMetering

Resets the resource utilization data collected by Hyper-V resource metering.

Syntax

Reset-VMResourceMetering
     [-CimSession <CimSession[]>]
     [-ComputerName <String[]>]
     [-Credential <PSCredential[]>]
     [-VMName] <String[]>
     [<CommonParameters>]
Reset-VMResourceMetering
     [-CimSession <CimSession[]>]
     [-ComputerName <String[]>]
     [-Credential <PSCredential[]>]
     [-ResourcePoolName] <String>
     [[-ResourcePoolType] <VMResourcePoolType>]
     [<CommonParameters>]
Reset-VMResourceMetering
     [-VM] <VirtualMachine[]>
     [<CommonParameters>]

Description

The Reset-VMResourceMetering cmdlet resets the resource utilization data collected by Hyper-V resource metering.

When this cmdlet is called, the virtual machine or resource pool resource utilization data collected up to current point of time is deleted. Hyper-V continues to collect resource utilization data after reset.

Examples

Example 1

PS C:\> Reset-VMResourceMetering -VMName TestVM

Resets resource utilization data collection on a virtual machine named TestVM.

Example 2

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

Resets resource utilization data collection for a single resource pool named TestResourcePool of type Memory.

Example 3

PS C:\> Get-VMResourcePool -ResourcePoolType @("Processor","VHD","Ethernet","Memory") | Reset-VMResourceMetering

Resets resource utilization data collection for all supported resource pool types on the virtual machine host.

Parameters

-CimSession

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.

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

-ComputerName

Specifies one or more virtual machine hosts for which resource utilization data is to be reset. 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:False
Accept wildcard characters:False

-Credential

Specifies one or more user accounts that have permission to perform this action. The default is the current user.

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

-ResourcePoolName

Specifies the friendly name of the virtual machine resource pool for which resource utilization data is to be reset.

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

-ResourcePoolType

Specifies the resource type of the virtual machine resource pool for which resource utilization data is to be reset.

Type:VMResourcePoolType
Accepted values:Ethernet, Memory, Processor, VHD
Position:1
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-VM

Specifies the virtual machine for which resource utilization data is to be reset.

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

-VMName

Specifies the friendly name of the virtual machine for which resource utilization data is to be reset.

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

Inputs

Microsoft.HyperV.PowerShell.VirtualMachine[]

Microsoft.HyperV.PowerShell.VMResourcePoolType

Outputs

None