windows batch programming

Discussion in 'Software' started by jamboree, Sep 11, 2009.

  1. jamboree

    jamboree Private E-2

    Hi all,

    I want to write a batch file that will sequentially call many batch files, each of which run the same application (a simulator instance). So after each of the child batch files is called, after a predetermined time, I want to close the simulator instance.

    I tried this:

    Code:
    start ips32.exe recieveInvite.cfg
    
    sleep 60
    
    taskkill /IM ips32.exe
    But my application fails to run, as it takes the start parameter to be recieveInvite.cfgsleep, which obviously does not exist.

    So how do I specify separate commands in my batch file?

    Thanks,

    Sandip
     
  2. GermanOne

    GermanOne Guest

    Where are the files ips32.exe and recieveInvite.cfg placed? Try to write the full path.
     
  3. jamboree

    jamboree Private E-2

    Hi,

    The problem was solved..i just created another batch file and called in from a 'master' batch file.

    ips32.exe is present in C:\tools\IPSL\blah..

    On a related note, I have a collection of folders A,B,C.. in \home, each of which contain a batch file that runs the same application. In \home, I have a 'master' batch file that sequentially calls the batch file in each of the folders (present in its current dir \home).

    I tried using this:
    Code:
    for /d %%case in {\Folder_path} do (
    cd %%case
    call something.bat
    )
    But it doesn't work and something.bat file is not called.

    Any suggestions on how to go about it?

    Thanks.
     
  4. GermanOne

    GermanOne Guest

    The variable must be a single letter and don't use braces.
    You could try something like this:
    Code:
    for /d %%i in ("c:\whatever\Folder_path\*") do call "%%i\something.bat"
    
     
  5. jamboree

    jamboree Private E-2

    Thanks GermanOne!! It works.
     

MajorGeeks.Com Menu

Downloads All In One Tweaks \ Android \ Anti-Malware \ Anti-Virus \ Appearance \ Backup \ Browsers \ CD\DVD\Blu-Ray \ Covert Ops \ Drive Utilities \ Drivers \ Graphics \ Internet Tools \ Multimedia \ Networking \ Office Tools \ PC Games \ System Tools \ Mac/Apple/Ipad Downloads

Other News: Top Downloads \ News (Tech) \ Off Base (Other Websites News) \ Way Off Base (Offbeat Stories and Pics)

Social: Facebook \ YouTube \ Twitter \ Tumblr \ Pintrest \ RSS Feeds