• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

creating batch file

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i am trying to create a batch file where i will be able to excute to change
the drive and open the command window

where i need to go following path from c:\desktop

D:\APS_Development\ABC\deployment\deployicicibank

Run the Following Command in Sequence
setenv.bat
start rmiregistry 51099
java qdicicibank.DManager ABC_Bankserver_ser.dmanager

and keep command window open .

i tried but after excuting my command window just flashes of neither it change the path also.
kindly help me on this

Thanking you
Bhavesh Shah
 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why you need to open another command window? Same command window will work.
Write the following in a new .bat file.

d:
cd \APS_Development\ABC\deployment\deployicicibank
setenv.bat
start rmiregistry 51099
java qdicicibank.DManager ABC_Bankserver_ser.dmanager

Let the file name be test.bat.
You have to save this file. Let's say in c:\new location.
You have to open a command window.
Goto the c:\new location.
Type test press<enter>.

everything will be executed and window will remain open.
[ September 06, 2007: Message edited by: prakash chandra ]
 
Are you here to take over the surface world? Because this tiny ad will stop you!
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic