Syntax
Get-DrmInfo [-Cluster <Cluster[]>] [-Start <DateTime>] [-Finish <DateTime>] [-NumFiles <Int32>] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet retrieves DrmDumpInfo of each cluster from a vCenter Server system. By default, if you do not provide any specifications, the cmdlet returns information about all available dump files. If you provide the number of files or specify the Start and Finish parameters, the cmdlet filters the dump files information based on the specifications. If DestinationPath is specified, the DRM dump file bundles are downloaded.Parameters
Return Type
One DrmDumpInfo per cluster for QueryInfo or One DrmDumpBundle per cluster for DownloadFilesNotes
Examples
-------------- Example 1 --------------
Get-DrmInfo ?Cluster cls -Start 2015-01-07T14:15:01Z -Finish 2015-01-07T14:15:01Z -DestinationPath "C:\temp"
Downloads all DRM bundles from the cls cluster, that are created in the specified time range, to the specified destination path.
-------------- Example 2 --------------
Get-Cluster cls | Get-DrmInfo -Start 2015-01-07T14:15:01Z -Finish 2015-01-07T14:15:01Z -DestinationPath "C:\temp"
Downloads all DRM bundles from the cls cluster, that are created in the specified time range, to the specified destination path.
-------------- Example 3 --------------
Get-DrmInfo -Start 2015-01-07T14:15:01Z -Finish 2015-01-07T14:15:01Z ?NumFiles 30
Lists the DrmDumpInfo of the latest 30 dump files from all clusters for the specified time period.
-------------- Example 4 --------------
Get-DrmInfo -DestinationPath "C:\temp"
Downloads all dump files collected from all clusters to the specified destination path.