Get-SCConfigurationProvider

Gets a configuration provider object.

Description

The Get-SCConfigurationProvider cmdlet gets a configuration provider object. A configuration provider is a plug-in to System Center Virtual Machine Manager (VMM) that translates VMM PowerShell commands to API calls that are specific to a type of load balancer or baseboard management controller. 

For more information about Get-SCConfigurationProvider, type: "Get-Help Get-SCConfigurationProvider -online".

Parameters

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Name

Required? false
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies the name of a VMM object.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

ProviderType

Required? false
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies the type of a configuration provider. Valid values are: LoadBalancer, OutOfBandManagement.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Examples

1: Get all configuration providers by a specified type.
PS C:\> Get-SCConfigurationProvider -ProviderType "LoadBalancer"
This command gets all configuration providers that are load balancers.
2: Get a configuration provider by its name.
PS C:\> $ConfigProvider = Get-SCConfigurationProvider -Name "Microsoft Network Load Balancing (NLB)"
PS C:\> $ConfigProvider
The first command gets the Microsoft Network Load Balancing (NLB) configuration provider by its name and stores it in the $ConfigProvider variable.

The second command displays information about the configuration provider stored in $ConfigProvider to the user.

See Also