PowerShell Logo Small

Get-OffloadDataTransferSetting



This is the built-in help made by Microsoft for the command 'Get-OffloadDataTransferSetting', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Returns offloaded data transfer (ODX) settings for the specified subsystem.

SYNTAX


Get-OffloadDataTransferSetting [-AsJob] [-CimSession <CimSession[]>] [-StorageSubSystem <CimInstance>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-OffloadDataTransferSetting cmdlet returns offloaded data transfer (ODX) settings for the specified storage subsystem.


Note: This cmdlet does not return settings for storage arrays that use the Storage Management Initiative Specification (SMI-S) protocol.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=298242
Get-StorageSubSystem

REMARKS

<

Examples


Example 1: Get all ODX settings

PS C:\>Get-OffloadDataTransferSetting



This example gets all ODX settings for connected storage arrays, not including storage arrays that support ODX using the SMI-S protocol.




Example 2: Get storage subsystems that have SMPs that support ODX

PS C:\>Get-OffloadDataTransferSetting | Get-StorageSubSystem



This example displays all storage subsystems on storage management providers that support ODX, not including storage arrays that support ODX using the SMI-S protocol.




Example 3: Get the ODX settings for a particular storage subsystem

PS C:\>$stsubsys = Get-StorageSubsystem –FriendlyName "Big Array"



PS C:\>Get-OffloadDataTransferSetting -StorageSubsystem $stsubsys



This example returns the offload data transfer settings for the StorageSubsystem objects returned by Get-StorageSubSystem cmdlet.