Skip to content

Sys\_GetProcessID

Gets the process ID’s found for an exe name

Sys_GetProcessID(sProcessExeName, bReturnAsArray, bMustExist) As Boolean

sProcessExeName (Boolean)

Name of process to check

bReturnAsArray (Boolean)

Store result in gaValue

bMustExist (Boolean)

Process must exist

Result will be stored in gsValue. If specified result is stored in gaValue

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

Scripting Guidelines

Sys_WaitForProcess Sys_Sleep Sys_KillProcess Sys_GetProcessOwner Sys_CompareProcessOwner