Get-EmcUnboundLun

Gets all the unbound LUNs that are not bound to any storage pool from the specified storage system.

 

Syntax

Get-EmcUnboundLun [-ID <String>] -StorageSystem <IStorageSystem> [-Silent] [<CommonParameters>]

 

Parameters

-ID <String>

Attributes: Optional, Position: 1

Specifies the LUN name or LUN ID. Wildcards are permitted.

 

-StorageSystem <IStorageSystem>

Attributes: Required, Position: named

Specifies the Storage System object. You can add the storage system object to ESI with the Get-EmcStorageSystemCredential and Connect-EmcSystem cmdlets. You can get the storage system object with the Get-EmcStorageSystem cmdlet. The object can be either a block storage system or file storage system.

 

-Silent <SwitchParameter>

Attributes: Optional, Position: named

Turns off all the informational and verbose messages. However, it still displays errors.

 

<CommonParameters>

This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.

 

Examples

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

C:\PS>$storage= Get-EmcStorageSystem *480

C:\PS>$unboundluns= Get-EmcUnboundLun -StorageSystem $storage

This example gets all the unbound LUNs from the specified storage system.