Start a Conversation

Unsolved

3 Posts

1611

February 25th, 2019 09:00

Generate configuration of Compellent array

Is there an easy way to export the configuration of a Compellent array.  Specifically, I'm trying to just export all of the hosts and volumes into an excel spreadsheet. 

thanks,

jeremy

230 Posts

March 1st, 2019 11:00

My suggestion would be to do this through PowerShell and export a file to CSV file.

Dell Storage Manager - 2018 R1.20 Release (Public PowerShell SDK for Dell Storage API)
https://downloads.dell.com/FOLDER05399081M/1/DellStoragePowerShellSDK-4.2.0.7.zip


Dell Storage PowerShell SDK Cookbook:
http://en.community.dell.com/techcenter/extras/m/white_papers/20441893

For example:
Get-DellScServerHba -ScSerialNumber 61782 | Select-Object Server, Connectivity, ISCSIName | Format-Table -AutoSize
Server Connectivity IscsiName
------ ------------ ---------
61782.39 ScPhysicalServer OverDriver01 Up iqn.1991-05.com.microsoft:win-50dtihs330o

No Events found!

Top