LAAW_PROCESS_INFORMATION

InstallShield 2016 ยป InstallScript Language Reference

When you call LaunchApplication, LaunchAndAppAndWait, or LaunchApp, this structured variable returns identification information about the launched process. The PROCESS_INFORMATION system variable has the following members:

LAAW_PROCESS_INFORMATION

Member

Description

hProcess

A handle to the newly created process. The handle is used to specify the process in all functions that perform operations on the process object.

hThread

A handle to the primary thread of the newly created process. The handle is used to specify the thread in all functions that perform operations on the thread object.

dwProcessId

A global process identifier that can be used to identify a process. The value is valid from the time the process is created until the time the process is terminated.

dwThreadId

A global thread identifiers that can be used to identify a thread. The value is valid from the time the thread is created until the time the thread is terminated.

See Also