Set-ConfigurationItem
SYNOPSIS
Store the updated ConfigurationItem including all properties and any filled childItems with Category=ChildItem
SYNTAX
Set-ConfigurationItem -ConfigurationItem <ConfigurationItem> [<CommonParameters>]
DESCRIPTION
Store the updated ConfigurationItem including all properties and any filled childItems with Category=ChildItem
EXAMPLES
EXAMPLE 1
$ms = Get-ConfigurationItem -Path "/"; $name = $ms.Properties[0] | Where-Object Key -eq "Name"; $name = "New Name"; $ms | Set-ConfigurationItem
Changes the Name property of the Management Server
PARAMETERS
-ConfigurationItem
Specifies the ConfigurationItem object to be updated.
Usually you will get the ConfigurationItem object using Get-ConfigurationItem.
Type: ConfigurationItem
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
VideoOS.ConfigurationApi.ClientService.ConfigurationItem
Specifies the ConfigurationItem object to be updated.
Usually you will get the ConfigurationItem object using Get-ConfigurationItem.