That's an excellent question. We'll add the ability to execute files after the finish button is pressed. This will be out by Friday next week.
In my vb6 routine that calls wyUpdate -- I have the unregasm routine do something like this
To close Internet Explorer and update the gac as well @echo off set dc=%ProgramFiles%\IBID\IBIDieDataConnector cd %ProgramFiles%\IBID pskill /accepteula iexplore.exe > nul %WINDIR%\Microsoft.NET\Framework\v2.0.50727\regasm "%dc%.dll" /unregister > nul gacutil /u IBIDieDataConnector > nul
Then after it has loaded everything -- I used the regasm as @echo off set dc=%ProgramFiles%\IBID\IBIDieDataConnector cd %ProgramFiles%\IBID
gacutil /i IBIDieDataConnector.dll > nul %WINDIR%\Microsoft.NET\Framework\v2.0.50727\regasm /tlb:"%dc%.tlb" "%dc%.dll" > nul login.bat
The login.bat is created dynamically in my vb6 program that called wyUpdate -- it contains the url of the app to start up again after the wyUpdate has finished
start "" "%programfiles%\internet explorer\iexplore.exe" http://localhost/ibidsql/login.asp
The problem is that wyUpdate remains open behind the newly created IE process with the Update Successful and the Finish Button to click
Is there any way not to have this finish button come up -- or -- have a way to pass this program to execute AFTER the finish button is clickedThanksMark
That's an excellent question. We'll add the ability to execute files after the finish button is pressed. This will be out by Friday next week.
This is out now - with wyBuild 2.5.19. Go to File -> Properties -> wyUpdate -> and click "Close wyUpdate on successful update"