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
  • 9,643
  • 16
  • 47
  • 50
Angel1403
  • 145
  • 1
  • 4
  • 13

1 Answers1

0

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

MichaelS
  • 5,941
  • 6
  • 31
  • 46