Get-CimClass

Get-CimClass

Gets a list of CIM classes in a specific namespace.

構文

Parameter Set: ComputerSet
Get-CimClass [[-ClassName] <String> ] [[-Namespace] <String> ] [-ComputerName <String[]> ] [-MethodName <String> ] [-OperationTimeoutSec <UInt32> ] [-PropertyName <String> ] [-QualifierName <String> ] [ <CommonParameters>]

Parameter Set: SessionSet
Get-CimClass [[-ClassName] <String> ] [[-Namespace] <String> ] -CimSession <CimSession[]> [-MethodName <String> ] [-OperationTimeoutSec <UInt32> ] [-PropertyName <String> ] [-QualifierName <String> ] [ <CommonParameters>]

詳細説明

The Get-CimClass cmdlet retrieves a list of CIM classes in a specific namespace.

If there is no class name supplied, then the cmdlet returns all the classes in the namespace.

Unlike a CIM instance, CIM classes do not contain the CIM session or computer name from which they are retrieved.

パラメーター

-CimSession<CimSession[]>

リモート セッションまたはリモート コンピューターでコマンドレットを実行します。New-CimSession コマンドレットや Get-CimSession コマンドレットの出力など、コンピューター名またはセッション オブジェクトを入力します。既定値は、ローカル コンピューターで実行中の現在のセッションです。

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

true (ByValue)

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

false

-ClassName<String>

Specifies the name of the CIM class for which to perform the operation.
NOTE: You can use tab completion to browse the list of classes, because Windows PowerShell gets a list of classes from the local WMI server to provide a list of class names.

エイリアス

なし

必須?

false

位置は?

1

既定値

なし

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

true (ByPropertyName)

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

false

-ComputerName<String[]>

Specifies the computer on which you want to run the CIM operation. You can specify a fully qualified domain name (FQDN) a NetBIOS name, or an IP address.

If you specify this parameter, the cmdlet creates a temporary session to the specified computer using the WsMan protocol.

If you do not specify this parameter, the cmdlet performs the operation on the local computer using Component Object Model (COM).

If multiple operations are being performed on the same computer, using a CIM session gives better performance.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

true (ByPropertyName)

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

false

-MethodName<String>

Finds the classes that have a method matching this name.

You can use wildcard characters with this parameter.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

true (ByPropertyName)

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

false

-Namespace<String>

Specifies the namespace for CIM operation.

The default namespace is root/cimv2.
NOTE: You can use tab completion to browse the list of namespaces, because Windows PowerShell gets a list of namespaces from the local WMI server to provide the list of namespaces.

エイリアス

なし

必須?

false

位置は?

2

既定値

なし

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

true (ByPropertyName)

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

false

-OperationTimeoutSec<UInt32>

Specifies the amount of time that the cmdlet waits for a response from the computer.

By default, the value of this parameter is 0, which means that the cmdlet uses the default timeout value for the server.

If the OperationTimeoutSec parameter is set to a value less than the robust connection retry timeout of 3 minutes, network failures that last more than the value of the OperationTimeoutSec parameter are not recoverable, because the operation on the server times out before the client can reconnect.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

true (ByPropertyName)

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

false

-PropertyName<String>

Finds the classes which have a property matching this name.

You can use wildcard characters with this parameter.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

true (ByPropertyName)

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

false

-QualifierName<String>

Filters the classes by class level qualifier name. You can use wildcard characters with this parameter.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

true (ByPropertyName)

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

false

<CommonParameters>

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

入力

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

  • None

    This cmdlet accepts no input objects.

出力

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

  • Microsoft.Management.Infrastructure.CimClass

    This cmdlet returns a CIM class object.

Example 1: Get all the class definitions

This command gets all the class definitions under the namespace root/cimv2.

PS C:\> Get-CimClass

Example 2: Get the classes with a specific name

This command gets the classes that contain the word disk in their names.

PS C:\> Get-CimClass -ClassName *disk*

Example 3: Get the classes with a specific method name

This command gets the classes that start with the name Win32 and have a method name that starts with Term.

PS C:\> Get-CimClass –ClassName Win32* -MethodName Term*

Example 4: Get the classes with a specific property name

This command gets the classes that start with the name Win32 and have a property named Handle.

PS C:\> Get-CimClass –ClassName Win32* -PropertyName Handle

Example 5: Get the classes with a specific qualifier name

This command gets the classes that start with the name Win32, contain the word Disk in their names and have the specified qualifier Association.

PS C:\> Get-CimClass –ClassName Win32*Disk* -QualifierName Association

Example 6: Get the class definitions from a specific namespace

This command gets the class definitions that contain the word Net in their names from the specified namespace root/standardCimv2.

PS C:\> Get-CimClass -Namespace root/standardCimv2 -ClassName *Net*

Example 7: Get the class definitions from a remote server

This command gets the class definitions that contain the word disk in their names from the specified remote servers Server01 and Server02.

PS C:\> Get-CimClass -ClassName *disk* -ComputerName Server01, Server02

Example 8: Get the classes by using a CIM session

This set of commands creates a session with multiple computers and stores it into a variable $s using the New-CimSession cmdlet, and then gets the classes using the Get-CimClass cmdlet.

PS C:\> $s = New-CimSession -ComputerName Server01, Server02
PS C:\> Get-CimClass -ClassName *disk* -CimSession $s

関連トピック

New-CimSession