Platforms to show: All Mac Windows Linux Cross-Platform

Back to WindowsProcessStatisticsMBS class.

WindowsProcessStatisticsMBS.CreationTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
A file time that receives the creation time of the process.

Property is valid if Mode contains ModeTimes.
(Read only property)

WindowsProcessStatisticsMBS.CycleTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The sum of the cycle time of all threads of the specified process.

Property is valid if Mode contains ModeTimes.
This value can only be queried on Windows Vista or newer.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.ExitTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
A file time that receives the exit time of the process. If the process has not exited, the content of this structure is undefined.

Property is valid if Mode contains ModeTimes.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.HandleCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 12.5 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of handles in use by the process.
Example
dim w as new WindowsProcessStatisticsMBS
dim n1 as Integer = w.HandleCount

dim x as new window1 // make a new window

w = new WindowsProcessStatisticsMBS
dim n2 as Integer = w.HandleCount

MsgBox str(n2)+" handles in used, "+str(n2-n1)+" used by second window"

Value is -1 on an error.
(Read only property)

WindowsProcessStatisticsMBS.KernelTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
A file time structure that receives the amount of time that the process has executed in kernel mode.

The time that each of the threads of the process has executed in kernel mode is determined, and then all of those times are summed together to obtain this value.
Property is valid if Mode contains ModeTimes.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.Mode as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Which values have been queried.

This value is a combination of the Mode* constants.
(Read only property)

WindowsProcessStatisticsMBS.OtherOperationCount as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of I/O operations performed, other than read and write operations.

Property is valid if Mode contains ModeIOCounters.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.OtherTransferCount as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of bytes transferred during operations other than read and write operations.

Property is valid if Mode contains ModeIOCounters.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.PageFaultCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of page faults.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.PagefileUsage as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The current space allocated for the pagefile, in bytes. Those pages may or may not be in memory.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.PeakPagefileUsage as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The peak space allocated for the pagefile, in bytes.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.PeakWorkingSetSize as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The peak working set size, in bytes.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.ProcessID as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The process ID of the process queried.

(Read only property)

WindowsProcessStatisticsMBS.QuotaNonPagedPoolUsage as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The peak nonpaged pool usage, in bytes.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.QuotaPagedPoolUsage as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The current paged pool usage, in bytes.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.QuotaPeakNonPagedPoolUsage as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The current nonpaged pool usage, in bytes.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.QuotaPeakPagedPoolUsage as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The peak paged pool usage, in bytes.

Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.ReadOperationCount as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of read operations performed.

Property is valid if Mode contains ModeIOCounters.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.ReadTransferCount as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of bytes read.

Property is valid if Mode contains ModeIOCounters.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.TotalIdleTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 11.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The amount of time that the system has been idle.

(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.TotalKernelTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 11.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The amount of time that the system has spent executing in Kernel mode (including all threads in all processes, on all processors).

This time value also includes the amount of time the system has been idle. So you may want to subtract idle time to get real kernel time.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.TotalUserTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 11.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The amount of time that the system has spent executing in User mode (including all threads in all processes, on all processors).

If you need to know what is the percentage of the CPU time spent for user applications, you need to read this value two times and calculate the delta.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.UserTime as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
A file time structure that receives the amount of time that the process has executed in user mode.

The time that each of the threads of the process has executed in user mode is determined, and then all of those times are summed together to obtain this value.
Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.WorkingSetSize as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The current working set size, in bytes.

This is the memory your application uses.
Property is valid if Mode contains ModeMemoryCounters.
(Read only property)

WindowsProcessStatisticsMBS.WriteOperationCount as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of write operations performed.

Property is valid if Mode contains ModeIOCounters.
(Read only property)

Some examples using this property:

WindowsProcessStatisticsMBS.WriteTransferCount as UInt64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The number of bytes written.

Property is valid if Mode contains ModeIOCounters.
(Read only property)

Some examples using this property:

The items on this page are in the following plugins: MBS Win Plugin.


The biggest plugin in space...