Get-SCOMClass

Get-SCOMClass

Gets classes in Operations Manager.

構文

Parameter Set: __AllParameterSets
Get-SCOMClass [-ComputerName <String[]> ] [-Credential <PSCredential> ] [-SCSession <Connection[]> ] [ <CommonParameters>]

Parameter Set: FromClassDisplayName
Get-SCOMClass [-DisplayName] <String[]> [ <CommonParameters>]

Parameter Set: FromClassGuids
Get-SCOMClass [-Id] <Guid[]> [ <CommonParameters>]

Parameter Set: FromClassName
Get-SCOMClass [-Name] <String[]> [ <CommonParameters>]

Parameter Set: FromEMO
Get-SCOMClass [-Instance] <EnterpriseManagementObject[]> [ <CommonParameters>]

Parameter Set: FromManagementPack
Get-SCOMClass [-ManagementPack] <ManagementPack[]> [ <CommonParameters>]

詳細説明

The Get-SCOMClass cmdlet gets one or more classes defined by System Center 2012 – Operations Manager or an imported management pack.

パラメーター

-ComputerName<String[]>

Specifies an array of names of computers. You can use NetBIOS names, IP addresses, or fully qualified domain names (FQDNs). To specify the local computer, type the computer name, localhost, or a dot (.).

The System Center Data Access service must be running on the computer. If you do not specify a computer, the cmdlet uses the computer for the current management group connection.

エイリアス

なし

必須?

false

位置は?

named

既定値

localhost

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

false

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

false

-Credential<PSCredential>

Specifies a PSCredential object for the management group connection. To obtain a PSCredential object, use the Get-Credential cmdlet. For more information, type Get-Help Get-Credential.

If you specify a computer in the ComputerName parameter, use an account that has access to that computer. The default is the current user.

エイリアス

なし

必須?

false

位置は?

named

既定値

Current user context

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

false

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

false

-DisplayName<String[]>

Specifies the display name of the class.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

false

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

false

-Id<Guid[]>

Specifies an array of GUIDs of classes. If you specify an Id as a string, the cmdlet converts the string to a GUID.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

true (ByValue)

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

false

-Instance<EnterpriseManagementObject[]>

Specifies an array of ClassInstance objects. To obtain a ClassInstance object, use the Get-SCOMClassInstance object.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

true (ByValue)

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

false

-ManagementPack<ManagementPack[]>

Specifies an array of ManagementPack objects. To obtain a ManagementPack object, use the Get-SCOMManagementPack cmdlet.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

true (ByValue)

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

false

-Name<String[]>

Specifies an array of names of classes.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

true (ByValue)

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

false

-SCSession<Connection[]>

Specifies an array of Connection objects. To obtain a Connection object, use the Get-SCOMManagementGroupConnection cmdlet.

A connection object represents a connection to a management server. The default is the current management group connection.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

false

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

false

<CommonParameters>

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

入力

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

  • Microsoft.EnterpriseManagement.Common.EnterpriseManagementObject

    You can pass an instance of a management pack to the Instance parameter of the Get-SCOMClass cmdlet by using the pipe operator. The Microsoft.EnterpriseManagement.Common.EnterpriseManagementObject object is one the properties of the output object of the Get-SCOMClassinstance cmdlet.

  • System.Guid

    You can pass a GUID to the Id parameter of the Get-SCOMClass cmdlets by using the pipe operator.

  • Microsoft.EnterpriseManagement.Configuration.ManagementPackManagementPack

    You can pass a management pack to the ManagementPack parameter of the Get-SCOMClass cmdlet by using the pipe operator. This management pack object contains the class object.

  • System.String

    You can pass a name to the Name parameter of the Get-SCOMClass cmdlet by using the pipe operator.

出力

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

  • Microsoft.EnterpriseManagement.Configuration.ManagementPackClass

    This cmdlet generates a management pack object.

Example 1: Get a class by using a name

This command gets all classes that have a name that ends with user.

PS C:\> Get-SCOMClass -Name "*user"

Example 2: Get a class by using a display name

This command gets the class that has the display name User.

PS C:\> Get-SCOMClass -DisplayName "User"

関連トピック

Get-SCOMClassInstance

Get-SCOMManagementPack