Syntax
Set-VMQuestion -VMQuestion <VMQuestion[]> [-Option] <Object> [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet answers the specified virtual machine question using the value of the Option parameter. If the DefaultOption parameter is set to $true, the cmdlet answers the question with a default option, if any.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Option | Object | Specifies an object or string to provide an option to the virtual machine question. Wildcards are supported for string values. The string can be used to specify an option ID or label. If the string does not match a valid option ID or label, or if there are multiple matches, an error is generated. | true | false | |
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 | |
DefaultOption | SwitchParameter | Indicates that you want to answer the virtual machine question using a default option. If no default option exists for the question, an error is generated. | true | false | |
VMQuestion | VMQuestion[] | Specifies the virtual machine question you want to answer. | true | true (ByValue) | |
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 VMQuestion objectNotes
You can also call this cmdlet via the Answer-VMQuestion alias.Examples
-------------- Example 1 --------------
Set-VMQuestion -VMQuestion $question -DefaultOption
Answers the question stored in the $question with a default option.
-------------- Example 2 --------------
Set-VMQuestion -VMQuestion $question -Option "Cancel"
Answers the question stored in the $question variable with "cancel".
-------------- Example 3 --------------
Get-VM VM | Get-VMQuestion | Set-VMQuestion -DefaultOption
Answers the question of VM virtual machine with a default option.