PowerShell Logo Small

Resize-StorageTier



This is the built-in help made by Microsoft for the command 'Resize-StorageTier', 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

Increases the size of storage tiers.

SYNTAX


Resize-StorageTier [-FriendlyName] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-Size <UInt64>] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf]
[<CommonParameters>]
Resize-StorageTier [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-Size <UInt64>] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf]
[<CommonParameters>]
Resize-StorageTier [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-Size <UInt64>] [-ThrottleLimit <Int32>] -UniqueId <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Resize-StorageTier increases the size of one or more storage tiers that are associated with a virtual disk. You cannot use the cmdlet to decrease the size of a storage
tier.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=289346
Get-StorageTier
New-StorageTier
Remove-StorageTier
Set-StorageTier
Get-VirtualDisk

REMARKS

<

Examples


Example 1: Increase the size a storage tier

PS C:\>Resize-StorageTier -InputObject (Get-StorageTier -FriendlyName "Fast_SSD_Tier") -Size 20GB



This command resizes the storage tier named Fast_SSD_Tier to 20 GB.