POSHOrigin_vSphere icon indicating copy to clipboard operation
POSHOrigin_vSphere copied to clipboard

Add support for defining virtual SCSI controllers

Open devblackops opened this issue 9 years ago • 0 comments

Add support for defining virtual SCSI controllers and associating virtual disks to them

Example:

disks = @(
    @{
        name = 'Hard disk 1'
        sizeGB = 50
        type = 'flat'
        format = 'Thick'
        volumeName = 'C'
        volumeLabel = 'NOS'
        SCSI = '0:0'
    }
    @{
        name = 'Hard disk 2'
        sizeGB = 100
        type = 'flat'
        format = 'Thick'
        volumeName = 'D'
        volumeLabel = 'Data'
        SCSI = '1:0'
    }
)

devblackops avatar Feb 03 '16 05:02 devblackops