Backup Exec Management Command Line Interface Help
Set-BEStorageArrayDevice Cmdlet
Synopsis

Sets the properties for a storage array in Backup Exec.

Syntax
Set-BEStorageArrayDevice -InputObject [<BEStorageArrayDevice[]>] [-Paused [<Boolean>]] [-Description [<String>]] [-Disabled [<Boolean>]] [-WhatIf [<SwitchParameter>]] [-Confirm [<SwitchParameter>]] [<CommonParameters>]
Description

Sets the properties for a storage array in Backup Exec.

Parameters

-Description <String>

Specifies the description for the storage array.


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


-Disabled <Boolean>

Specifies if the storage array device is disabled.

The valid values are:
$true
$false


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


-Paused <Boolean>

Specifies if the storage array device is paused.

The valid values are:
$true
$false


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


-InputObject <BEStorageArrayDevice[]>

Specifies one or more storage arrays. Enter a variable that contains the objects, or type a command or expression that gets the objects.


Required true
Position Named
Accepts pipeline input true (ByValue)
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

You can pipe a Backup Exec storage array object to Set-BEStorageArrayDevice.

Return Value
BackupExec.Management.CLI.BEStorageArrayDevice

Set-BEStorageArrayDevice returns an object that represents the changed storage array.

Example
C:\PS> Get-BEStorageArrayDevice "Device 0001" | Set-BEStorageArrayDevice -Paused $true

These commands pause the storage array named "Device 0001".

Related Link

Get-BEStorageArrayDevice