CIM_ProcessExecutable class

The CIM_ProcessExecutable class represents a link between a process and data file, and indicates that the file participates in the execution of the process.

Important

The DMTF (Distributed Management Task Force) CIM (Common Information Model) classes are the parent classes upon which WMI classes are built. WMI currently supports only the CIM 2.x version schemas.

The following syntax is simplified from Managed Object Format (MOF) code and includes all of its inherited properties. Properties are listed in alphabetic order, not MOF order.

Syntax

[Privileges("SeDebugPrivilege"), Dynamic, Provider("CIMWin32"), UUID("{8502C542-5FBB-11D2-AAC1-006008C78BC7}"), AMENDMENT]
class CIM_ProcessExecutable : CIM_Dependency
{
  CIM_Process  REF Dependent;
  CIM_DataFile REF Antecedent;
  uint64           BaseAddress;
  uint32           GlobalProcessCount;
  uint32           ModuleInstance;
  uint32           ProcessCount;
};

Members

The CIM_ProcessExecutable class has these types of members:

Properties

The CIM_ProcessExecutable class has these properties.

Antecedent

Data type: CIM_DataFile

Access type: Read-only

Qualifiers: Override (Antecedent), key

A CIM_DataFile that describes the data file participating in the execution of the process.

BaseAddress

Data type: uint64

Access type: Read-only

Qualifiers: Schema ("Win32")

Base address of the module in the address space of the associated process.

For more information about using uint64 values in scripts, see Scripting in WMI.

Dependent

Data type: CIM_Process

Access type: Read-only

Qualifiers: Override (Dependent), key

A CIM_Process that describes the process.

GlobalProcessCount

Data type: uint32

Access type: Read-only

Qualifiers: Schema ("Win32")

Current number of processes that have the file loaded in memory.

ModuleInstance

Data type: uint32

Access type: Read-only

Qualifiers: DEPRECATED, Schema ("Win32")

Win32 instance handle. This property is obsolete, and there is no replacement value.

ProcessCount

Data type: uint32

Access type: Read-only

Qualifiers: Schema ("Win32")

Reference count of the file in the associated process.

Remarks

The CIM_ProcessExecutable class is derived from CIM_Dependency.

WMI implements the CIM_ProcessExecutable class. The CIM_ProcessExecutable class is a dynamic class.

This documentation is derived from the CIM class descriptions published by the DMTF. Microsoft may have made changes to correct minor errors, conform to Microsoft SDK documentation standards, or provide more information.

Requirements

Requirement Value
Minimum supported client
Windows Vista
Minimum supported server
Windows Server 2008
Namespace
Root\CIMV2
MOF
CIMWin32.mof
DLL
CIMWin32.dll

See also

CIM_Dependency