PowerShell Logo Small

Set-StorageSubSystem



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

Sets the friendly name or description of the specified StorageSubsystem object.

SYNTAX


Set-StorageSubsystem [-AsJob] [-CimSession <CimSession[]>] [-Description <String>] [-ThrottleLimit <Int32>] -UniqueId <String> [<CommonParameters>]
Set-StorageSubsystem [-AsJob] [-CimSession <CimSession[]>] [-Description <String>] [-ThrottleLimit <Int32>] -Name <String> [<CommonParameters>]
Set-StorageSubsystem [-InputObject] <CimInstance[]> [-AsJob] [-CimSession <CimSession[]>] [-Description <String>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Set-StorageSubsystem [-FriendlyName] <String> [-AsJob] [-AutomaticClusteringEnabled <Boolean>] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Set-StorageSubsystem [-AsJob] [-AutomaticClusteringEnabled <Boolean>] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] -UniqueId <String> [<CommonParameters>]
Set-StorageSubsystem [-AsJob] [-AutomaticClusteringEnabled <Boolean>] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] -Name <String> [<CommonParameters>]
Set-StorageSubsystem [-InputObject] <CimInstance[]> [-AsJob] [-AutomaticClusteringEnabled <Boolean>] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>]
[<CommonParameters>]
Set-StorageSubsystem [-FriendlyName] <String> [-AsJob] [-CimSession <CimSession[]>] [-Description <String>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-StorageSubystem cmdlet sets the friendly name or description of the specified StorageSubsystem object.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=307037
Get-StorageSubsystem

REMARKS

<

Examples


EXAMPLE 1

PS C:\> $inpobject = (Get-StorageSubsystem)
PS C:\> Set-StorageSubsystem -InputObject $inpobject -Description "Non-Production Testing only"



This example changes the Description field on a StorageSubsystem object.