<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
		>
<channel>
	<title>Comments on: Windows Tip: Create A Batch File To Open Multiple Programs At Once</title>
	<atom:link href="http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html</link>
	<description>Computer - Internet - Technology Tips And Tutorials</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:12:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: vrl</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-149370</link>
		<dc:creator>vrl</dc:creator>
		<pubDate>Sun, 05 Feb 2012 14:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-149370</guid>
		<description>I need to open many MS word and MS excel docs from a shared drive every day, these docs are password protected or read only - so a prompt window pops up forcing me to click on &quot;read only&quot; button when trying to open them using a batch file:

@echo off
start &quot;Word&quot; &quot;\\shared drive path\document name1.docx&quot;
start &quot;Word&quot; &quot;\\shared drive path\document name2.docx&quot;

i tried using read only switcher /r:
@echo off
start /r &quot;Word&quot; &quot;\\shared drive path\document name1.docx&quot;
but isn&#039;t helping me!

could you please help me to avoid clicking on the &quot;read only&quot; button using a batch file and open all these docs at once</description>
		<content:encoded><![CDATA[<p>I need to open many MS word and MS excel docs from a shared drive every day, these docs are password protected or read only &#8211; so a prompt window pops up forcing me to click on &#034;read only&#034; button when trying to open them using a batch file:</p>
<p>@echo off<br />
start &#034;Word&#034; &#034;\\shared drive path\document name1.docx&#034;<br />
start &#034;Word&#034; &#034;\\shared drive path\document name2.docx&#034;</p>
<p>i tried using read only switcher /r:<br />
@echo off<br />
start /r &#034;Word&#034; &#034;\\shared drive path\document name1.docx&#034;<br />
but isn&#039;t helping me!</p>
<p>could you please help me to avoid clicking on the &#034;read only&#034; button using a batch file and open all these docs at once</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-144929</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sat, 07 Jan 2012 16:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-144929</guid>
		<description>@&lt;a href=&quot;#comment-26788&quot; rel=&quot;nofollow&quot;&gt;Mega Muffinz&lt;/a&gt;: 
missing a space between program files</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-26788" rel="nofollow">Mega Muffinz</a>:<br />
missing a space between program files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jackson</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-142802</link>
		<dc:creator>Jackson</dc:creator>
		<pubDate>Fri, 23 Dec 2011 17:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-142802</guid>
		<description>what I would like to do is... assign an unused FNC key to a specific program say system restore...and have it avail to the keyboard poll upon startup...like with safe mode, helpfiles etc..this possible?
thx in advance...</description>
		<content:encoded><![CDATA[<p>what I would like to do is&#8230; assign an unused FNC key to a specific program say system restore&#8230;and have it avail to the keyboard poll upon startup&#8230;like with safe mode, helpfiles etc..this possible?<br />
thx in advance&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Freznel</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-89192</link>
		<dc:creator>Freznel</dc:creator>
		<pubDate>Wed, 17 Aug 2011 03:25:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-89192</guid>
		<description>Hi all,

Thank you for posting all of these tips because I am learning bat for fun and it answered a question that I couldn&#039;t find an answer to anywhere else.

Here was my question:  If the final name has a space in it, how do you program the start line below wont work:

start /d &quot;[path]&#039; File Name.exe

here is the solution that worked in XP for me:

change the /d to &quot;&quot; so it is read:

start &quot;&quot; &quot;[path]&quot; File Name.exe

This will launch the file name with the space in it instead of giving you an error stating that the first word can&#039;t be found.

Hope this helps someone else - here is how the actual code looks:

:camera
cls
start &quot;&quot; &quot;C:\Program Files\Canon\EOS Utility\EOS Utility.exe&quot;

color 2
echo  Running Command!
ping 1.0.0.0 -n 1 -w 1500 &gt;NUL

goto menu</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>Thank you for posting all of these tips because I am learning bat for fun and it answered a question that I couldn&#039;t find an answer to anywhere else.</p>
<p>Here was my question:  If the final name has a space in it, how do you program the start line below wont work:</p>
<p>start /d &#034;[path]&#039; File Name.exe</p>
<p>here is the solution that worked in XP for me:</p>
<p>change the /d to &#034;&#034; so it is read:</p>
<p>start &#034;&#034; &#034;[path]&#034; File Name.exe</p>
<p>This will launch the file name with the space in it instead of giving you an error stating that the first word can&#039;t be found.</p>
<p>Hope this helps someone else &#8211; here is how the actual code looks:</p>
<p>:camera<br />
cls<br />
start &#034;&#034; &#034;C:\Program Files\Canon\EOS Utility\EOS Utility.exe&#034;</p>
<p>color 2<br />
echo  Running Command!<br />
ping 1.0.0.0 -n 1 -w 1500 &gt;NUL</p>
<p>goto menu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lavanya</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-88847</link>
		<dc:creator>lavanya</dc:creator>
		<pubDate>Tue, 16 Aug 2011 05:02:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-88847</guid>
		<description>hi,
I want to switch between tabs using batch file commands. Can any one guide me in this. 
example: c:-&gt;systemproperties-&gt;advanced tab-&gt;performance-&gt;settings 

awaiting for reply.</description>
		<content:encoded><![CDATA[<p>hi,<br />
I want to switch between tabs using batch file commands. Can any one guide me in this.<br />
example: c:-&gt;systemproperties-&gt;advanced tab-&gt;performance-&gt;settings </p>
<p>awaiting for reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-88120</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Sun, 14 Aug 2011 04:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-88120</guid>
		<description>And when you open an internet browser tab, how do you open 2 different windows?</description>
		<content:encoded><![CDATA[<p>And when you open an internet browser tab, how do you open 2 different windows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-88112</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Sun, 14 Aug 2011 04:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-88112</guid>
		<description>Hi, i tried to open 2 applications with this code:
Start Minecraft.exe
start /d C:\desktop\dereksbackupfile\minecraftserver\minecraft_server.exe

minecraft.exe opens up fine but when it is supposed to open the other file it doesnt open, instead it opens up command prompt. Idk what is wrong</description>
		<content:encoded><![CDATA[<p>Hi, i tried to open 2 applications with this code:<br />
Start Minecraft.exe<br />
start /d C:\desktop\dereksbackupfile\minecraftserver\minecraft_server.exe</p>
<p>minecraft.exe opens up fine but when it is supposed to open the other file it doesnt open, instead it opens up command prompt. Idk what is wrong</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eliminator</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-84774</link>
		<dc:creator>Eliminator</dc:creator>
		<pubDate>Thu, 04 Aug 2011 08:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-84774</guid>
		<description>@TuanVo tried but cannot get desired output..heres what i did:
start /d &quot;D:\USERS\******\SOFTWAREZ\others&quot; Core Temp.exe

start /d &quot;D:\USERS\******\SOFTWAREZ\others\Core Temp.exe&quot;

start /d &quot;D:\USERS\******\SOFTWAREZ\others&quot; &quot;Core Temp.exe&quot;

start /d &quot;D:\USERS\******\SOFTWAREZ\others&quot; &quot;core_temp.exe&quot;

start /d &quot;D:\USERS\******\SOFTWAREZ\others&quot; &quot;Core-Temp.exe&quot;

tried but still couldnt get it!!!!</description>
		<content:encoded><![CDATA[<p>@TuanVo tried but cannot get desired output..heres what i did:<br />
start /d &#034;D:\USERS\******\SOFTWAREZ\others&#034; Core Temp.exe</p>
<p>start /d &#034;D:\USERS\******\SOFTWAREZ\others\Core Temp.exe&#034;</p>
<p>start /d &#034;D:\USERS\******\SOFTWAREZ\others&#034; &#034;Core Temp.exe&#034;</p>
<p>start /d &#034;D:\USERS\******\SOFTWAREZ\others&#034; &#034;core_temp.exe&#034;</p>
<p>start /d &#034;D:\USERS\******\SOFTWAREZ\others&#034; &#034;Core-Temp.exe&#034;</p>
<p>tried but still couldnt get it!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TuanVo</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-84701</link>
		<dc:creator>TuanVo</dc:creator>
		<pubDate>Thu, 04 Aug 2011 02:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-84701</guid>
		<description>you need to put any ONE-STRING-BUT-CONTAINS-SPACES into quote.</description>
		<content:encoded><![CDATA[<p>you need to put any ONE-STRING-BUT-CONTAINS-SPACES into quote.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eliminator</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-82254</link>
		<dc:creator>Eliminator</dc:creator>
		<pubDate>Mon, 25 Jul 2011 06:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-82254</guid>
		<description>hey it worked for me just fine but i have 2 problems&gt;&gt;&gt;Here is my command listing:

start /d &quot;C:\Users\******\Downloads&quot; netscan.exe

start  /d &quot;C:\Program Files\Ambient Design\ArtRage Studio Pro&quot; ArtRage Studio Pro.exe

start /d &quot;C:\Program Files\CCleaner&quot; CCleaner.exe

start /d  &quot;D:\USERS\******\SOFTWAREZ\others&quot; Core Temp.exe

start /d  &quot;C:\Users\********\AppData\Local\Google\Chrome\Application\&quot; chrome.exe 

start /d  &quot;C:\Program Files\Internet Explorer\&quot; iexplore.exe

exit

the problem is with Art studio pro it gives an error ..tht i think is because of spaces and the same problem with core temp again becoz of space i guess any idea how to run this program

THANKX IN ADVANCE</description>
		<content:encoded><![CDATA[<p>hey it worked for me just fine but i have 2 problems&gt;&gt;&gt;Here is my command listing:</p>
<p>start /d &#034;C:\Users\******\Downloads&#034; netscan.exe</p>
<p>start  /d &#034;C:\Program Files\Ambient Design\ArtRage Studio Pro&#034; ArtRage Studio Pro.exe</p>
<p>start /d &#034;C:\Program Files\CCleaner&#034; CCleaner.exe</p>
<p>start /d  &#034;D:\USERS\******\SOFTWAREZ\others&#034; Core Temp.exe</p>
<p>start /d  &#034;C:\Users\********\AppData\Local\Google\Chrome\Application\&#034; chrome.exe </p>
<p>start /d  &#034;C:\Program Files\Internet Explorer\&#034; iexplore.exe</p>
<p>exit</p>
<p>the problem is with Art studio pro it gives an error ..tht i think is because of spaces and the same problem with core temp again becoz of space i guess any idea how to run this program</p>
<p>THANKX IN ADVANCE</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: exactly</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-82114</link>
		<dc:creator>exactly</dc:creator>
		<pubDate>Sat, 23 Jul 2011 23:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-82114</guid>
		<description>how to &quot;install&quot; many apps at once click ,, ?? any idea ?? thanks, i think it will be make time safer for windows user</description>
		<content:encoded><![CDATA[<p>how to &#034;install&#034; many apps at once click ,, ?? any idea ?? thanks, i think it will be make time safer for windows user</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sag1v</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-72516</link>
		<dc:creator>sag1v</dc:creator>
		<pubDate>Mon, 06 Jun 2011 21:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-72516</guid>
		<description>Hi guys nice site!
is there a way to create a batch file that opens gmail or any other webmail and automaticly fill in the user name and password?
saw some people asked it here but no answer yet.
thanks</description>
		<content:encoded><![CDATA[<p>Hi guys nice site!<br />
is there a way to create a batch file that opens gmail or any other webmail and automaticly fill in the user name and password?<br />
saw some people asked it here but no answer yet.<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-69860</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 24 May 2011 12:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-69860</guid>
		<description>@&lt;a href=&quot;#comment-11853&quot; rel=&quot;nofollow&quot;&gt;Stephen Gilmartin&lt;/a&gt;: An above comment is one solution. You can still use what you have, however, please do note that /d means Directory. So with the code being:
start /d &quot;I:\Service\Service Systems\Customer Software DB\Software Sales and Billing DB 2007-2008.xls&quot;

That says &quot;I:\Service\Service Systems\Customer Software DB\Software Sales and Billing DB 2007-2008.xls&quot; is the directory. Can you spot the issue? That is a file, not a directory. I learned this the hard way by crashing my applications left and right lol...

You can use your current code, and while you are very close to correct, it should look like one of the following codes:

start &quot;&quot; /d &quot;I:\Service\Service Systems\Customer Software DB&quot; &quot;Software Sales and Billing DB 2007-2008.xls&quot;

OR

start &quot;I:\Service\Service Systems\Customer Software DB\Software Sales and Billing DB 2007-2008.xls&quot;

Any questions let me know!</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-11853" rel="nofollow">Stephen Gilmartin</a>: An above comment is one solution. You can still use what you have, however, please do note that /d means Directory. So with the code being:<br />
start /d &#034;I:\Service\Service Systems\Customer Software DB\Software Sales and Billing DB 2007-2008.xls&#034;</p>
<p>That says &#034;I:\Service\Service Systems\Customer Software DB\Software Sales and Billing DB 2007-2008.xls&#034; is the directory. Can you spot the issue? That is a file, not a directory. I learned this the hard way by crashing my applications left and right lol&#8230;</p>
<p>You can use your current code, and while you are very close to correct, it should look like one of the following codes:</p>
<p>start &#034;&#034; /d &#034;I:\Service\Service Systems\Customer Software DB&#034; &#034;Software Sales and Billing DB 2007-2008.xls&#034;</p>
<p>OR</p>
<p>start &#034;I:\Service\Service Systems\Customer Software DB\Software Sales and Billing DB 2007-2008.xls&#034;</p>
<p>Any questions let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-69857</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 24 May 2011 12:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-69857</guid>
		<description>@&lt;a href=&quot;#comment-26295&quot; rel=&quot;nofollow&quot;&gt;Brandon&lt;/a&gt;: I have come up with a few different codes that may work. Though I am unable to test these codes without the file, it has been successful in the past.

START &quot;C:\Users\Brandon\Music\Oh my gosh.mp3&quot;

Or

START &quot;&quot; /d &quot;C:\Users\Brandon\Music&quot; &quot;Oh my gosh.mp3&quot;

Why the &quot;&quot; at the beginning? Without this, the batch file will recognize &quot;Oh my gosh.mp3&quot; as the title command. Try the codes and let me know how that works for you!</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-26295" rel="nofollow">Brandon</a>: I have come up with a few different codes that may work. Though I am unable to test these codes without the file, it has been successful in the past.</p>
<p>START &#034;C:\Users\Brandon\Music\Oh my gosh.mp3&#034;</p>
<p>Or</p>
<p>START &#034;&#034; /d &#034;C:\Users\Brandon\Music&#034; &#034;Oh my gosh.mp3&#034;</p>
<p>Why the &#034;&#034; at the beginning? Without this, the batch file will recognize &#034;Oh my gosh.mp3&#034; as the title command. Try the codes and let me know how that works for you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-66602</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 04 May 2011 20:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/windows-tip-use-batch-file-to-open-multiple-programs-at-once.html#comment-66602</guid>
		<description>Any idea how to open multiple apps when one is an application hosted on a network server (e.g., if you&#039;re working for a corporation that has a dedicated server for a particular application). 

Thanks.</description>
		<content:encoded><![CDATA[<p>Any idea how to open multiple apps when one is an application hosted on a network server (e.g., if you&#039;re working for a corporation that has a dedicated server for a particular application). </p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 1.846 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 16:09:09 -->

