Administrator Guide

To save information to a csv le:
Get-SCVolume -Name MyVolume|Export-Csv -path “C:\volumeInformation\MyVolume.csv”
To save information as a txt le:
Get-SCVolume -Name MyVolume|Format-List|Out-File -filePath “C:\volumeInformation
\MyVolume.txt”
Viewing and Printing Command-Line Help
The Dell Storage Center Command Set provides help for the commands. You can access this help from the command line.
Access help information for each cmdlet in the Command Set Shell
Enter the Get-Help command. For example:
Get-Help Get-SCVolume
This command returns the following information:
Name
Synopsis
Syntax
Detailed description
Related Links
Remarks
View additional information
Enter the -detailed option. For example:
Get-Help Get-SCVolume -detailed
This command returns all the information listed previously, plus additional information about parameters and examples.
View all information available for a cmdlet
Enter the -full option. For example:
Get-Help Get-SCVolume -full
View a list of all available Storage Center Snapin cmdlets
Enter the Get command. For example:
Get-Command -Module Compellent.StorageCenter.PSSnapin
Print help for all cmdlets
Enter the -full option and export output to a le. For example:
Get-Command -Module Compellent.StorageCenter.PSSnapin | %{Get-Help $_.Name -Full}
Using the Command Set
17