Get-IConfigurationService
SYNOPSIS
Gets an instance of an IConfigurationService WCF client.
SYNTAX
Get-IConfigurationService [<CommonParameters>]
DESCRIPTION
The Get-IConfigurationService
cmdlet returns a Windows Communication
Foundation (WCF) client proxy which can be used to call various methods on the
management server. This is useful when you want to perform an action that is
not available in an existing cmdlet in the MilestonePSTools module but which is
possible using MIP SDK directly.
EXAMPLES
Example 1
$svc = Get-IConfigurationService
$svc.GetItem("/")
Creates an IConfigurationService client and gets the management server ConfigurationItem object using the management server path "/".
Example 2
$svc = Get-IConfigurationService
$svc.GetChildItems("/") | Sort DisplayName
Creates an IConfigurationService client and gets all the child items of the management Server in alphabetical order by DisplayName.
PARAMETERS
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.