Get-SCDynamicOptimizationConfiguration

Gets the dynamic optimization configuration for a host group.

Description

The Get-SCDynamicOptimizationConfiguration cmdlet gets the dynamic optimization configuration for a host group.

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

Parameters

VMHostGroup

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

Confirm

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

VMMServer

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

Examples

1: Get the Dynamic Optimization settings for a host group.
PS C:\> $HostGroup = Get-SCVMHostGroup "HostGroup01"
PS C:\> $DOConfig = Get-SCDynamicOptimizationConfiguration -VMHostGroup $HostGroup
PS C:\> $DOConfig
The first command gets the host group object named HostGroup01 and stores the object in the $HostGroup variable.

The second command gets the dynamic optimization configuration settings for the host group stored in $HostGroup and stores the settings in the $DOConfig variable.

The last command displays the settings stored in $DOConfig to the user.

See Also