PowerShell Logo Small

Get-ResiliencySetting



This is the built-in help made by Microsoft for the command 'Get-ResiliencySetting', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' 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

Gets the resiliency settings (also known as storage layouts) available for creating virtual disks on the specified storage subsystem.

SYNTAX


Get-ResiliencySetting [-AsJob] [-CimSession <CimSession[]>] [-Name <String[]>] [-StoragePool <CimInstance>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-ResiliencySetting [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-UniqueId <String[]>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ResiliencySetting cmdlet gets the resiliency settings (storage layouts) available for creating virtual disks on the specified storage subsystem. The resiliency
settings vary depending on the storage subsystem; the Storage Spaces subsystem supports the Simple, Mirror, and Parity resiliency settings.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=298358
New-VirtualDisk
Set-ResiliencySetting
Set-StoragePool
Get-StoragePool

REMARKS

<

Examples


Example 1: Get all resiliency setting objects

PS C:\> Get-ResiliencySetting
Name NumberOfDataCopies PhysicalDiskRedundancy NumberOfColumns Interleave
---- ------------------ ---------------------- --------------- ----------
Simple 1 0 8 65536
Mirror 2 1 4 65536
Parity 1 1 8 65536



This example gets all resiliency setting objects for each storage pool, showing which resiliency settings are available for use when creating virtual disks. If there are
multiple storage pools, the same resiliency setting might appear more than once, with each object representing the resiliency setting support for a particular storage pool.




Example 2: Get only Mirror, Parity, and Simple resiliency setting objects

PS C:\> Get-ResiliencySetting -Name Mirror,Parity,Simple



This example displays only the resiliency settings for the types Mirror, Parity and Simple. Other defined resiliency settings are not displayed.




Example 3: Get a resiliency setting object by UniqueID

PS C:\>Get-ResiliencySetting -UniqueId "{5d792e9b-ca00-11e1-9350-00155db7aa01}:1"



This example displays one particular resiliency setting object by specifying its UniqueID value, enclosed in quotation marks.