GetCimClassCommand Class
A class which enables the user to enumerate the CIM classes under a specific namespace.
Namespace: Microsoft.Management.Infrastructure.CimCmdlets
Assembly: Microsoft.Management.Infrastructure.CimCmdlets (in Microsoft.Management.Infrastructure.CimCmdlets.dll)
Inheritance Hierarchy
System.Object
System.Management.Automation.Internal.InternalCommand
System.Management.Automation.Cmdlet
Microsoft.Management.Infrastructure.CimCmdlets.CimBaseCommand
Microsoft.Management.Infrastructure.CimCmdlets.GetCimClassCommand
Syntax
[CmdletAttribute("Get", "CimClass", DefaultParameterSetName = "ComputerSet",
HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227959")]
[OutputTypeAttribute(new Type[] { ... })]
public class GetCimClassCommand : CimBaseCommand
[CmdletAttribute("Get", "CimClass", DefaultParameterSetName = "ComputerSet",
HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227959")]
[OutputTypeAttribute(new array<Type^>^ { ... })]
public ref class GetCimClassCommand : CimBaseCommand
[<CmdletAttribute("Get", "CimClass", DefaultParameterSetName = "ComputerSet",
HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227959")>]
[<OutputTypeAttribute([| ... |])>]
type GetCimClassCommand =
class
inherit CimBaseCommand
end
<CmdletAttribute("Get", "CimClass", DefaultParameterSetName := "ComputerSet",
HelpUri := "https://go.microsoft.com/fwlink/?LinkId=227959")>
<OutputTypeAttribute(New Type() { ... })>
Public Class GetCimClassCommand
Inherits CimBaseCommand
Constructors
Name | Description | |
---|---|---|
GetCimClassCommand() | Constructor for a class that enables the user to enumerate the list of CIM classes under a specific namespace. |
Properties
Name | Description | |
---|---|---|
CimSession | Gets and sets the CimSession parameter, which specifies the CIM session in which to run the cmdlet. The default is the current session on the local computer. |
|
ClassName | Gets and sets the ClassName parameter. Accepts wildcard characters. |
|
CommandOrigin | (Inherited from InternalCommand.) |
|
CommandRuntime | (Inherited from Cmdlet.) |
|
ComputerName | Gets and sets the ComputerName parameter. This parameter provides the name of the computer from which to retrieve the CimClass. If no computer name is specified the default value is the local host. |
|
CurrentPSTransaction | (Inherited from Cmdlet.) |
|
MethodName | Gets and sets the MethodName parameter, which may contain wild characters. |
|
Namespace | Gets and sets the Namespace parameter, which specifies the namespace under which to look for the specified class name. If no class name is specified, the cmdlet will return all classes under the specified namespace. The default value for the namespace is root\cimv2. |
|
OperationTimeoutSec | Gets and sets the OperationTimeoutSec parameter, which enables the user to specify the operation timeout in seconds. This value overwrites the value specified by the CimSession operation timeout. |
|
PropertyName | Gets and sets the PropertyName parameter, which may contain wildcard characters. |
|
QualifierName | Gets and sets the QualifierName parameter, which may contain wildcard characters. |
|
Stopping | (Inherited from Cmdlet.) |
Methods
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.Management.Infrastructure.CimCmdlets Namespace
Return to top