Silent Install - ExecWait?
Hi.
I want to install Oracle with an silent_installer.bat file!
But this silent install takes some minutes. So it seems, that the installer has been broken, because the banner of my installer doesnt walk.
So i want to install oracle with an banner (maybe time).
Is it possible to write a closed loop?
The silent_installer.bat file installs oracle and if its finished, then it wirtes $INSTDIR\TEMP.
So i can go on with my installer, when this path is exist.
IfFileExists $INSTDIR\Test OK28 NONOK28
OK28:
Delete $INSTDIR\Test
goto end
NONOK28:
end:
DetailPrint 'Datenbank wird erstellt ... Dies kann einige Minuten in Anspruch nehmen ... Kaffeepause ;-)'
Exec "$INSTDIR\datenbank.bat"
Can someone helps me???