1

I need to write a command which is calling other command prompt of Oracle and running a command on it. Currently, I am running it using below command

D:\Oracle\setenv.bat /k  BuildApp

But it only runs setenv.bat and quits and doesn't run BuildApp. BuildApp is to run on a command prompt opened by setenv.bat. Can anyone please help on this?

NorthCat
  • 8,997
  • 16
  • 45
  • 49
Angel1403
  • 145
  • 1
  • 3
  • 13

1 Answers1

0

Try CMD /c d:\Oracle\setenv.bat /k BuildApp.

MichaelS
  • 5,789
  • 6
  • 29
  • 43