Get-SCHostReserve

Gets the host reserve and placement settings for a host group.

Description

The Get-SCHostReserve cmdlet retrieves the placement settings for a host group. In addition to host reserve calculations, placement settings are used for the dynamic optimization and power optimization features.  

For more information about Get-SCHostReserve, type: "Get-Help Get-SCHostReserve -online".

Parameters

Confirm

Required? false
Accept Pipeline Input? false
Position? named
Prompts for confirmation before running the command.

VMHostGroup

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a virtual machine host group object or an array of host group objects.

VMMServer

Required? false
Accept Pipeline Input? false
Position? named
Specifies a VMM server object.

Examples

1: Get the Host reserve for a specified host group.
PS C:\> $HostGroup = Get-SCVMHostGroup "HostGroup01"
PS C:\> $HostReserve = Get-SCHostReserve -VMHostGroup $HostGroup
PS C:\> $HostReserve
The first command gets the host group object named HostGroup01 and stores the object in the $HostGroup variable.

The second command gets the host reserve object for the host group stored in $HostGroup, and then stores the object in the $HostReserve variable.

The last command displays information about the host reserve settings stored in $HostReserve to the user.

See Also