Get-SCConfigurationProvider

Get-SCConfigurationProvider

Gets a configuration provider object.

構文

Parameter Set: Default
Get-SCConfigurationProvider [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: ByName
Get-SCConfigurationProvider [[-Name] <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: ByType
Get-SCConfigurationProvider [[-ProviderType] <ConfigurationProviderType]> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

詳細説明

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

パラメーター

-Name<String>

Specifies the name of a VMM object.

エイリアス

none

必須?

false

位置は?

1

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-ProviderType<ConfigurationProviderType]>

Specifies the type of a configuration provider. Valid values are: LoadBalancer, OutOfBandManagement.

エイリアス

none

必須?

false

位置は?

1

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-VMMServer<ServerConnection>

Specifies a VMM server object.

エイリアス

none

必須?

false

位置は?

named

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • ConfigurationProvider

Example Example 1: Get all configuration providers by a specified type.

This command gets all configuration providers that are load balancers.

PS C:\> Get-SCConfigurationProvider -ProviderType "LoadBalancer"

Example 2: Get a configuration provider by its name

The first command gets the Microsoft Network Load Balancing (NLB) configuration provider by its name, and then stores it in the $ConfigProvider variable.

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

PS C:\> $ConfigProvider = Get-SCConfigurationProvider -Name "Microsoft Network Load Balancing (NLB)"
PS C:\> $ConfigProvider

関連トピック

Set-SCComputerTierConfiguration