Backup Exec Management Command Line Interface Help
Submit-BEStorageArrayDeviceConfigurationJob Cmdlet
Synopsis

Configures a storage array device in Backup Exec.

Syntax
Submit-BEStorageArrayDeviceConfigurationJob -StorageArrayDevice [<BEStorageArrayDevice>] -VirtualDiskSizeGigabyte [<UInt32>] [-MakeDeduplicationDiskStorageDevice [<SwitchParameter>]] [-BackupExecServer [<BEBackupExecServer>]] [-WhatIf [<SwitchParameter>]] [-Confirm [<SwitchParameter>]] [<CommonParameters>]

Submit-BEStorageArrayDeviceConfigurationJob -StorageArrayDevice [<BEStorageArrayDevice>] -DiskGroupPhysicalDisk [<BEStorageArrayPhysicalDisk[]>] [-MakeDeduplicationDiskStorageDevice [<SwitchParameter>]] [-RemoveHotSparePhysicalDisk [<BEStorageArrayPhysicalDisk[]>]] [-BackupExecServer [<BEBackupExecServer>]] [-AddHotSparePhysicalDisk [<BEStorageArrayPhysicalDisk[]>]] [-VirtualDiskCount [<Int32>]] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]

Submit-BEStorageArrayDeviceConfigurationJob -StorageArrayDevice [<BEStorageArrayDevice>] -ConfigureHotSparesOnly [<SwitchParameter>] [-RemoveHotSparePhysicalDisk [<BEStorageArrayPhysicalDisk[]>]] [-BackupExecServer [<BEBackupExecServer>]] [-AddHotSparePhysicalDisk [<BEStorageArrayPhysicalDisk[]>]] [-WhatIf [<SwitchParameter>]] [-Confirm [<SwitchParameter>]] [<CommonParameters>]
Description

Configures a storage array device in Backup Exec.

Parameters

-StorageArrayDevice <BEStorageArrayDevice>

Specifies the storage array device to be configured.


Required true
Position Named
Accepts pipeline input true (ByValue)
Accepts wildcard characters false


-BackupExecServer <BEBackupExecServer>

Specifies which Backup Exec server should process the job in a CASO environment.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-VirtualDiskSizeGigabyte <UInt32>

Specifies the virtual disk size.


Required true
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-DiskGroupPhysicalDisk <BEStorageArrayPhysicalDisk[]>

Specifies the physical disks that will belong to the disk group.


Required true
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-VirtualDiskCount <Int32>

Specifies the number of virtual disk to create from the physical disk that are in the storage array.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-ConfigureHotSparesOnly <SwitchParameter>

Configures the hot spare physical disks only.


Required true
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-AddHotSparePhysicalDisk <BEStorageArrayPhysicalDisk[]>

Specifies one or more physical disks to add as a hot spare.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-RemoveHotSparePhysicalDisk <BEStorageArrayPhysicalDisk[]>

Specifies one or more physical disks to remove as a hot spare.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-MakeDeduplicationDiskStorageDevice <SwitchParameter>

Makes a deduplication disk storage device.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-WhatIf <SwitchParameter>

Describes what happens if you execute the command without actually executing the command.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-Confirm <SwitchParameter>

Prompts you for confirmation before executing the command.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


<CommonParameters>

For more information about common parameters, type "Get-Help about_commonparameters".

Input Type
BackupExec.Management.CLI.BEStorageArrayDevice

A Backup Exec storage array device object can be piped into Submit-BEStorageArrayDeviceConfigurationJob

Return Value
BackupExec.Management.CLI.BEJob

Submit-BEStorageArrayDeviceConfigurationJob outputs a Backup Exec job object.

Examples

Example 1

C:\PS> Get-BEStorageArrayDevice -Name "Device 0001" | Submit-BEStorageArrayDeviceConfigurationJob -VirtualDiskSizeGigabyte 10

These commands configure a virtual disk of the specified size on the storage array device named "Device 0001". The storage array selects the physical disks that are a part of the disk storage group.


Example 2
C:\PS> $physicalDisks = Get-BEStorageArrayDevice -Name "Device 0001" | Get-BEStorageArrayPhysicalDisk -IsConfigured $false
C:\PS> Get-BEStorageArrayDevice -Name "Device 0001" | Submit-BEStorageArrayDeviceConfigurationJob -ConfigureHotSparesOnly -AddHotSparePhysicalDisk $physicalDisks

These commands configure all of the unconfigured physical disks on a storage array device named "Device 0001" as hot spares.


Example 3
C:\PS> $physicalDisks = Get-BEStorageArrayDevice -Name "Device 0001" | Get-BEStorageArrayPhysicalDisk -IsConfigured $false
C:\PS> Get-BEStorageArrayDevice -Name "Device 0001" | Submit-BEStorageArrayDeviceConfigurationJob -DiskGroupPhysicalDisk $physicalDisks

These commands configure a disk storage group with all of the unconfigured physical disks on a storage array device named "Device 0001".

Related Links

Get-BEStorageArrayDevice
Get-BEStorageArrayPhysicalDisk