PowerShell Logo Small

Set-StorageSubSystem



This is the built-in help made by Microsoft for the command 'Set-StorageSubSystem', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 [-FriendlyName] <String[]> [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-Description <String>] [-PassThru
[<SwitchParameter>]] [-ThrottleLimit <Int32>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Set-StorageSubsystem [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-Description <String>] [-PassThru [<SwitchParameter>]]
[-ThrottleLimit <Int32>] -Name <String[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Set-StorageSubsystem [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-Description <String>] [-PassThru [<SwitchParameter>]]
[-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Set-StorageSubsystem [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-Description <String>] [-PassThru [<SwitchParameter>]]
[-ThrottleLimit <Int32>] -UniqueId <String[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


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



<

RELATED LINKS

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.