Hello everybody!!
I've installed several prerequisites (like Oracle XE) and after that some files were copied to the target computer. I want to execute a .vbs file that runs in a minimized window a .bat file which is in charge of creating a new Oracle user and importing its schema. I want to do this just after installing everything and wait for it to be run until finish the installation.
I've tried to create a Custom Action (InstallExecuteSequence/Commit/ Synchronous execution, ignore return cod/Commit) indicating Visual basic script in the field Source Type and the source paht of the .vbs file which contains the following code:
CreateObject ("Wscript.Shell").Run "CreateSchema.bat",2
where CreateSchema.bat is working correctly if running under a command window. But the .vbs doesn't work.
I've also tried to create as an script inline filling in the field Script Text with the instruction above but nothing again.
Another point is that I want to show a dialog with a customized warning text before installing the prerequisites. Is it possible to do that?
Can anybody help me, please?
THanks a lot.
Abel S.