03-05-2019, 03:13 PM
So we tried to set this in the database where the settings for this application are saved whithin a Base64 encoded XML configuration.
<?xml version="1.0"?>
<ExtAppProperties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Filename>C:\Program Files\VanDyke Software\SecureCRT\SecureCRT.exe</Filename>
<WorkingDir />
<Arguments>/LOG "U:\ConnectionLox\%Y.%M.%D - %h.%m - %H.log" /NOMENU /N %computername% /NOTOOLBAR /SSH2 /L %Username% /PASSWORD %Password% %computername%</Arguments>
<WaitForExit>false</WaitForExit>
<TryToIntegrate>true</TryToIntegrate>
<StartAsShellProcess>false</StartAsShellProcess>
<MaxWaitTimeExit>15</MaxWaitTimeExit>
<MinWaitTimeIntegrate>1</MinWaitTimeIntegrate>
<MaxWaitTimeIntegrate>30</MaxWaitTimeIntegrate>
</ExtAppProperties>
But as soon as we set following value, the application could not be started by ASG Remote desktop anymore:
<MinWaitTimeIntegrate>0.3</MinWaitTimeIntegrate>
So we have to live with the 1 second delay which is much less pain than the window misplacement.
<?xml version="1.0"?>
<ExtAppProperties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Filename>C:\Program Files\VanDyke Software\SecureCRT\SecureCRT.exe</Filename>
<WorkingDir />
<Arguments>/LOG "U:\ConnectionLox\%Y.%M.%D - %h.%m - %H.log" /NOMENU /N %computername% /NOTOOLBAR /SSH2 /L %Username% /PASSWORD %Password% %computername%</Arguments>
<WaitForExit>false</WaitForExit>
<TryToIntegrate>true</TryToIntegrate>
<StartAsShellProcess>false</StartAsShellProcess>
<MaxWaitTimeExit>15</MaxWaitTimeExit>
<MinWaitTimeIntegrate>1</MinWaitTimeIntegrate>
<MaxWaitTimeIntegrate>30</MaxWaitTimeIntegrate>
</ExtAppProperties>
But as soon as we set following value, the application could not be started by ASG Remote desktop anymore:
<MinWaitTimeIntegrate>0.3</MinWaitTimeIntegrate>
So we have to live with the 1 second delay which is much less pain than the window misplacement.