Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Description

If default retry and wait values needs to be changed this is the function to call. To take effect this function needs to be called before MSI_CheckEngineState()

Syntax

MSI_SetRetryValues(iRetryCount, iSecondsToWait) As Boolean

Parameters

iRetryCount (String)

How many times should be retried

iSecondsToWait (String)

How long to wait each time

 

Example

VBScript
If bStatus Then bStatus = MSI_SetRetryValues(45, 90)
If bStatus Then bStatus = MSI_CheckEngineState()
If bStatus And UCase(gsValue) = "TRANSACTION" Then 
  bStatus = Job_WriteLog("Custom", "MSI Engine is in transaction phase. Installation is being postponed", bStatus, True)
End If

Scripting Guidelines

 

Related functions

  • No labels