Sys_GetProcessID
Description
Gets the process ID's found for an exe name
Syntax
Sys_GetProcessID(sProcessExeName, bReturnAsArray, bMustExist) As Boolean
Parameters
sProcessExeName (Boolean)
Name of process to check
bReturnAsArray (Boolean)
Store result in gaValue
bMustExist (Boolean)
Process must exist
Return value
Result will be stored in gsValue. If specified result is stored in gaValue
Example
VBScript
If bStatus Then bStatus=Sys_GetProcessID("CapaInstaller.exe", True, False) If bStatus And IsArray(gaValue) Then For index = LBound(gaValue) To UBound(gaValue) bStatus = Job_WriteLog("Custom", "Index #" & index & ": " & cStr(gaValue(index)), bStatus, True) Next End If
Related functions
Sys_WaitForProcess Sys_Sleep Sys_KillProcess Sys_GetProcessOwner Sys_CompareProcessOwner