PowerCLI Reference

Get-ScsiController

Synopsis

This cmdlet retrieves the virtual SCSI controllers assigned to the specified HardDisk, VirtualMachine, Template, and Snapshot objects.

Syntax

Get-ScsiController [[-VM] <VirtualMachine[]>] [[-Template] <Template[]>] [[-Snapshot] <Snapshot[]>] [-HardDisk <HardDisk[]>] [-Id <String[]>] [-Name <String[]>] [-Server <VIServer[]>] [<CommonParameters>]

Related Commands

Online Version
New-ScsiController
Set-ScsiController

Detailed Description

This cmdlet retrieves the virtual SCSI controllers assigned to the specified HardDisk, VirtualMachine, Template, and Snapshot objects.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
VMVirtualMachine[]Filters the SCSI controllers by the virtual machines they belong to.falseTrue (ByValue)
TemplateTemplate[]Filters the SCSI controllers by the virtual machine templates they belong to.falseTrue (ByValue)
SnapshotSnapshot[]Filters the SCSI controllers by the snapshots they belong to.falseTrue (ByValue)
HardDiskHardDisk[]Filters the SCSI controllers by the hard disks they belong to.falseTrue (ByValue)
IdString[]Specifies the IDs of the SCSI controllers you want to retrieve.


Note: When a list of values is specified for the Id parameter, the returned objects would have an ID that matches exactly one of the string values in that list.
falseFalse
NameString[]Specifies the names of the SCSI controllers you want to retrieve.falseFalse
ServerVIServer[]Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.falseFalse

Return Type

Zero or more ScsiController objects

Notes

Examples

-------------------------- Example 1 --------------------------

Get-VM VM1, VM2 | Get-ScsiController

Retrieves the SCSI controllers of the VM1 and VM2 virtual machines.

-------------------------- Example 2 --------------------------

Get-VM VM | Get-Snapshot Snapshot | Get-ScsiController

Retrieves the SCSI controllers of a virtual machine snapshot.

-------------------------- Example 3 --------------------------

$disk = Get-VM VM | Get-HardDisk | Select -First 2

Get-ScsiController -HardDisk $disk

Retrieves the SCSI controllers of the first two hard disks of a virtual machine.


Copyright © VMware, Inc. All rights reserved.