Syntax
Add-PassthroughDevice [-VM] <VirtualMachine[]> [-PassthroughDevice] <PassThroughDevice[]> [-Server <VIServer[]>] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Online versionDetailed Description
Attaches pass-through devices to the specified virtual machine. Note that the value of ControllerKey property of the returned device might not be up to date, if a new SCSI controller creation process is running in the background.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
VM | VirtualMachine[] | Specify the virtual machine to which you want to attach the Passthrough devices. | true | true (ByValue) | |
PassthroughDevice | PassThroughDevice[] | Specify the Passthrough devices you want to add to the virtual machine. | 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 | $true |
Server | VIServer[] | Specify the vSphere servers 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 | Indicate that the cmdlet is run only to display the changes that would be made and actually no objects are modified. | false | false |
Return Type
PassthroughDeviceNotes
Passing PciPassthroughDevice objects to the -Device parameter is supported only on servers that are vCenter Server 4.0 and ESX 4.0, and higher.Examples
-------------- Example 1 --------------
$scsiDeviceList = Get-PassthroughDevice -VMHost Host -Type Scsi Add-PassthroughDevice -VM $vm -PassthroughDevice $scsiDeviceList[0]
Adds the first SCSI passthrough device of the Host host to the $vm virtual machine.