Syntax
Set-VMHostAdvancedConfiguration [[-Name] <String>] [[-Value] <Object>] [-VMHost] <VMHost[]> [-Server <VIServer[]>] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet is deprecated. Use New-AdvancedSetting, Set-AdvancedSetting, or Remove-AdvancedSetting instead.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Name | String | Specifies the name of the host configuration setting you want to change. | false | false | |
NameValue | Hashtable | Provides a hash table that maps values to settings. | false | true (ByValue) | |
Value | Object | Specifies a new value of the host configuration setting that you want to modify. | false | false | |
VMHost | VMHost[] | Specifies the host whose advanced configuration settings you want to change. | true | true (ByValue) | |
Confirm | SwitchParameter | If the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false, the cmdlet runs without asking for user confirmation. | false | false | |
Server | VIServer[] | Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer. | false | false | |
WhatIf | SwitchParameter | Indicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified. | false | false |
Return Type
The modified System.Collections.Hashtable objectNotes
Examples
-------------- Example 1 --------------
Get-VMHost 10.23.123.144 | Set-VmHostAdvancedConfiguration -Name Migrate.NetTimeout -Value ( [system.int32] 10 )
Change the migration timeout for the virtual machine host with an IP address 10.23.123.144.
-------------- Example 2 --------------
$migrationSettings = Get-VMHost 10.23.123.144| Get-VmHostAdvancedConfiguration -Name Migrate.* Set-VmHostAdvancedConfiguration -VMHost 10.23.123.122 -NameValue $migrationSettings
Gets the advanced settings concerning migration from the host with an IP address 10.23.123.144 and applies them to the virtual machine host with an IP address 10.23.123.122.
-------------- Example 3 --------------
Set-VMHostAdvancedConfiguration -VMHost 10.23.112.120 -Name Migrate.Enabled -Value 1
Enable VMotion on a host using Set-VMHostAdvancedConfiguration.