You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Retrieve specific process properties given one or more optional search condition
36
36
37
37
* object `opt` - An options object
38
38
* object{string | number} | object{object{string | number}} `where` - (Optional) An object in which a key is
39
-
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined.
39
+
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined. If omitted, conditions are joined with "AND".
40
40
2. A process property, with a value of either a process property value to match with an equal to comparison or an object containing `operator` and `value` keys. `operator` is a [WQL operator](https://msdn.microsoft.com/en-us/library/aa394605(v=vs.85).aspx) or [LIKE Operator](https://msdn.microsoft.com/en-us/library/aa392263(v=vs.85).aspx). `value` is a process property value.
41
41
* array{string} `get` - Process properties to get
42
42
* function(null | object `err`, array{object{string}} `processes`) `cb` - A callback to executed after the process properties are retrieved.
@@ -96,7 +96,7 @@ wmic.process.get({
96
96
Retrieve all available process properties given one or more optional search conditions
97
97
98
98
* object{string | number} | object{object{string | number}} `where` - (Optional) An object in which a key is
99
-
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined.
99
+
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined. If omitted, conditions are joined with "AND".
100
100
2. A process property, with a value of either a process property value to match with an equal to comparison or an object containing `operator` and `value` keys. `operator` is a [WQL operator](https://msdn.microsoft.com/en-us/library/aa394605(v=vs.85).aspx) or [LIKE Operator](https://msdn.microsoft.com/en-us/library/aa392263(v=vs.85).aspx). `value` is a process property value.
101
101
* function(null | object `err`, array{object{string}} `processes`) `cb` - A callback to executed after the process properties are retrieved.
102
102
@@ -150,7 +150,7 @@ Execute a method on process(es) given one or more search conditions
150
150
151
151
* object `opt` - An options object
152
152
* object{string | number} | object{object{string | number}} `where` - An object in which a key is
153
-
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined.
153
+
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined. If omitted, conditions are joined with "AND".
154
154
2. A process property, with a value of either a process property value to match with an equal to comparison or an object containing `operator` and `value` keys. `operator` is a [WQL operator](https://msdn.microsoft.com/en-us/library/aa394605(v=vs.85).aspx) or [LIKE Operator](https://msdn.microsoft.com/en-us/library/aa392263(v=vs.85).aspx). `value` is a process property value.
155
155
* string `call` - The method to execute
156
156
* function(null | object `err`, array{object{string}} `stdOut`) `cb` - A callback to be executed after the method is called.
@@ -195,7 +195,7 @@ Terminate process(es) given one or more search conditions
195
195
196
196
* object `opt` - An options object
197
197
* object{string | number} | object{object{string | number}} `where` - An object in which a key is
198
-
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined.
198
+
1. `operator`, with a value of "AND" or "OR" (case-insensitive). Will determine how search conditions are joined. If omitted, conditions are joined with "AND".
199
199
2. A process property, with a value of either a process property value to match with an equal to comparison or an object containing `operator` and `value` keys. `operator` is a [WQL operator](https://msdn.microsoft.com/en-us/library/aa394605(v=vs.85).aspx) or [LIKE Operator](https://msdn.microsoft.com/en-us/library/aa392263(v=vs.85).aspx). `value` is a process property value.
200
200
* function(null | object `err`, array{object{string}} `stdOut`) `cb` - A callback to be executed after the process(es) are terminated.
0 commit comments