Difference between revisions of "Lua:getProcessIDFromProcessName"
Jump to navigation
Jump to search
(Created page with ''''function''' getProcessIDFromProcessName(''processname'') Searches the processlist for the given name and if found returns the processID. Returns '''nil''' if not found ===F…') |
(→Related Functions) |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:Lua]] | ||
'''function''' getProcessIDFromProcessName(''processname'') | '''function''' getProcessIDFromProcessName(''processname'') | ||
| Line 16: | Line 17: | ||
| − | == | + | {{LuaSeeAlso}} |
| − | * [[Lua]] | + | |
| + | === Related Functions === | ||
| + | * [[Lua:openProcess|openProcess]] | ||
| + | * [[Lua:getProcesslist|getProcesslist]] | ||
| + | * [[Lua:getOpenedProcessID|getOpenedProcessID]] | ||
| + | * [[Lua:createProcess|createProcess]] | ||
| + | * [[Lua:openFileAsProcess|openFileAsProcess]] | ||
Latest revision as of 03:26, 18 April 2018
function getProcessIDFromProcessName(processname)
Searches the processlist for the given name and if found returns the processID. Returns nil if not found
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| processname | String | The processname to find |