<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to call another batch from one batch file in Operating System - Microsoft</title>
    <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135875#M11037</link>
    <description>Here it is in action....I hope i'm not doing someones homework assignment??&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type f1.bat&lt;BR /&gt;  @echo off&lt;BR /&gt;  echo Hi dude u r in f1 file&lt;BR /&gt;  @pause&lt;BR /&gt;  call f2.bat&lt;BR /&gt;  @pause&lt;BR /&gt;  call f3.bat&lt;BR /&gt;  @pause&lt;BR /&gt;  echo all the files are executed&lt;BR /&gt;  @pause&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type f2.bat&lt;BR /&gt;  @echo off&lt;BR /&gt;  echo Hi dude u r in f2 file&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type f3.bat&lt;BR /&gt;  @echo off&lt;BR /&gt;  echo Hi dude u r in f3 file&lt;BR /&gt;&lt;BR /&gt;Now to execute f1.bat and see the result:&lt;BR /&gt;==========================================&lt;BR /&gt;C:\&amp;gt;f1.bat&lt;BR /&gt;Hi dude u r in f1 file&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;Hi dude u r in f2 file&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;Hi dude u r in f3 file&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;all the files are executed&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;&lt;BR /&gt;NOTE:&lt;BR /&gt;Put the @echo off at the beginning of each .bat file.&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
    <pubDate>Thu, 16 Oct 2008 11:04:19 GMT</pubDate>
    <dc:creator>OFC_EDM</dc:creator>
    <dc:date>2008-10-16T11:04:19Z</dc:date>
    <item>
      <title>How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135869#M11031</link>
      <description>I have a batch file which runs normal basic commands at the last line it should call another batch file &lt;BR /&gt;&lt;BR /&gt;Help me with this....plss</description>
      <pubDate>Thu, 16 Oct 2008 05:16:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135869#M11031</guid>
      <dc:creator>Mannoj</dc:creator>
      <dc:date>2008-10-16T05:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135870#M11032</link>
      <description>C:\&amp;gt;type 1.bat&lt;BR /&gt;@echo off&lt;BR /&gt;call 2.bat&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type 2.bat&lt;BR /&gt;@echo off&lt;BR /&gt;echo hello&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Run 1.bat and the result will be:&lt;BR /&gt;C:\&amp;gt;1.bat&lt;BR /&gt;hello&lt;BR /&gt;&lt;BR /&gt;1.bat called 2.bat&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Thu, 16 Oct 2008 05:21:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135870#M11032</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-10-16T05:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135871#M11033</link>
      <description>No question is silly as we all have those kind of days :)</description>
      <pubDate>Thu, 16 Oct 2008 05:37:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135871#M11033</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-10-16T05:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135872#M11034</link>
      <description>Kevin u are correct.. I'm still stucked up..&lt;BR /&gt;&lt;BR /&gt;D:\f1.bat&lt;BR /&gt;&lt;BR /&gt;In &lt;BR /&gt;f1.bat - u have&lt;BR /&gt;echo Hi dude u r in f1 file&lt;BR /&gt;@pause&lt;BR /&gt;f2&lt;BR /&gt;@pause&lt;BR /&gt;f3&lt;BR /&gt;@pause&lt;BR /&gt;echo all the files are executed&lt;BR /&gt;@pause&lt;BR /&gt;&lt;BR /&gt;in D:\f2.bat&lt;BR /&gt;&lt;BR /&gt;In f2.bat - u have&lt;BR /&gt;echo Hi dude u r in f2 file&lt;BR /&gt;&lt;BR /&gt;Inf f3.bat - u have&lt;BR /&gt;echo Hi dude u r in f3 file&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the above case i wanna call using the same f1.bat file to exec both f1 and f2 but how wil i do this...?</description>
      <pubDate>Thu, 16 Oct 2008 06:22:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135872#M11034</guid>
      <dc:creator>Mannoj</dc:creator>
      <dc:date>2008-10-16T06:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135873#M11035</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;though your question is faaaar from HP-UX:&lt;BR /&gt;&lt;BR /&gt;In a .bat file the variable&lt;BR /&gt;%0%&lt;BR /&gt;&lt;BR /&gt;contains the filename used at execution time.&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Thu, 16 Oct 2008 10:42:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135873#M11035</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2008-10-16T10:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135874#M11036</link>
      <description>In&lt;BR /&gt;f1.bat - u have&lt;BR /&gt;echo Hi dude u r in f1 file&lt;BR /&gt;@pause&lt;BR /&gt;call f2.bat&lt;BR /&gt;@pause&lt;BR /&gt;call f3.bat&lt;BR /&gt;@pause&lt;BR /&gt;echo all the files are executed&lt;BR /&gt;@pause&lt;BR /&gt;&lt;BR /&gt;-------------&lt;BR /&gt;Note the call statements i put in front of f1 and f2.  And added their extensions as part of normal coding technique</description>
      <pubDate>Thu, 16 Oct 2008 10:59:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135874#M11036</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-10-16T10:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135875#M11037</link>
      <description>Here it is in action....I hope i'm not doing someones homework assignment??&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type f1.bat&lt;BR /&gt;  @echo off&lt;BR /&gt;  echo Hi dude u r in f1 file&lt;BR /&gt;  @pause&lt;BR /&gt;  call f2.bat&lt;BR /&gt;  @pause&lt;BR /&gt;  call f3.bat&lt;BR /&gt;  @pause&lt;BR /&gt;  echo all the files are executed&lt;BR /&gt;  @pause&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type f2.bat&lt;BR /&gt;  @echo off&lt;BR /&gt;  echo Hi dude u r in f2 file&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;type f3.bat&lt;BR /&gt;  @echo off&lt;BR /&gt;  echo Hi dude u r in f3 file&lt;BR /&gt;&lt;BR /&gt;Now to execute f1.bat and see the result:&lt;BR /&gt;==========================================&lt;BR /&gt;C:\&amp;gt;f1.bat&lt;BR /&gt;Hi dude u r in f1 file&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;Hi dude u r in f2 file&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;Hi dude u r in f3 file&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;all the files are executed&lt;BR /&gt;Press any key to continue . . .&lt;BR /&gt;&lt;BR /&gt;NOTE:&lt;BR /&gt;Put the @echo off at the beginning of each .bat file.&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Thu, 16 Oct 2008 11:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135875#M11037</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-10-16T11:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135876#M11038</link>
      <description>Hi Mannoj,&lt;BR /&gt;&lt;BR /&gt;I'm getting in the habit of not answering questions for those who don't post points.  As there are people out there who've asked hundreds of questions and don't assign points.&lt;BR /&gt;&lt;BR /&gt;You're not one of them.  I see you're brand new to the forums and haven't assigned any points yet.&lt;BR /&gt;&lt;BR /&gt;It's good etiquette to say thank you with points.  Patrick Wallek put up some suggested etiquette guidlines for all of us.&lt;BR /&gt;&lt;BR /&gt;Here's the link&lt;BR /&gt;&lt;A href="http://66.34.90.71/ITRCForumsEtiquette/" target="_blank"&gt;http://66.34.90.71/ITRCForumsEtiquette/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also...Welcome to the ITRC forum.  Hope you enjoy it.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Also here's a linke to the HP support forums - overview and FAQs&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Which contains:&lt;BR /&gt;&lt;BR /&gt;How many points should I assign to replies?&lt;BR /&gt;&lt;BR /&gt;Every response to your question is eligible to earn between 1-10 points. No need to worry about running out of points - when a truly awesome reply rolls in that deserves a 10, you will be able to assign it a 10! However, be careful to assign points based on the value that a reply truly provides. Use the following scale as a guideline:&lt;BR /&gt;&lt;BR /&gt;o N/A: The answer was simply a point of clarification to my original question&lt;BR /&gt;&lt;BR /&gt;o 1-3: The answer didn't really help answer my question, but thanks for your assistance!&lt;BR /&gt;&lt;BR /&gt;o 4- 7: The answer helped with a portion of my question, but I still need some additional help!&lt;BR /&gt;&lt;BR /&gt;o 8-10: The answer has solved my problem completely! Now I'm a happy camper! &lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2008 11:13:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135876#M11038</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-10-16T11:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to call another batch from one batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135877#M11039</link>
      <description>Hey Thanks to all.. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Oct 2008 04:25:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/how-to-call-another-batch-from-one-batch-file/m-p/5135877#M11039</guid>
      <dc:creator>Mannoj</dc:creator>
      <dc:date>2008-10-17T04:25:55Z</dc:date>
    </item>
  </channel>
</rss>

