AppIsRunning

Description: Reports whether the application has been started and the start-up process is complete. (All tags are running, etc.)
Returns: Boolean
Usage: Script only.
Function Groups: Configuration Management
Related to: AppIsStarted | AppIsStarting | Start | IsAppEditable | GetAppInstance | GetLoadedAppInstance | GetOEMLayer
Format: \LayerRoot\AppIsRunning()
Parameters: None
Comments: The similar functions, AppIsStarting and AppIsStarted, will return TRUE before this function will. \LayerRoot may be acquired using one of GetAppInstance, GetLoadedAppInstance or GetOEMLayer.

Examples:

IF 1 NextState;
[
  IsVTSApp = Valid(LayerRoot\OEMGUID);
  IfThen(IsVTSApp &&  LayerRoot\AppIsRunning()),
    ...
  )
]