<?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/"
		>
<channel>
	<title>Comments on: How to Run .BAT Files Invisibly, Without Displaying the Command Prompt Window</title>
	<atom:link href="http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/</link>
	<description>Troubleshooting Windows 7/XP/Vista, Fixes &#38; Tweaks &#124; General Productivity Tips</description>
	<lastBuildDate>Fri, 20 Nov 2009 16:00:45 -0800</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Pandu</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-9360</link>
		<dc:creator>Pandu</dc:creator>
		<pubDate>Fri, 06 Nov 2009 21:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-9360</guid>
		<description>It&#039;s Perfectly Working
VBS Script is very useful</description>
		<content:encoded><![CDATA[<p>It&#8217;s Perfectly Working<br />
VBS Script is very useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gus</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-9139</link>
		<dc:creator>gus</dc:creator>
		<pubDate>Fri, 09 Oct 2009 20:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-9139</guid>
		<description>very useful indeed, but, how can i stop it now? :D</description>
		<content:encoded><![CDATA[<p>very useful indeed, but, how can i stop it now? :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wut</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-8716</link>
		<dc:creator>Wut</dc:creator>
		<pubDate>Tue, 18 Aug 2009 11:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-8716</guid>
		<description>Thank you very much !!</description>
		<content:encoded><![CDATA[<p>Thank you very much !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Njay</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-8672</link>
		<dc:creator>Njay</dc:creator>
		<pubDate>Sat, 08 Aug 2009 04:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-8672</guid>
		<description>I don&#039;t know what pane said, but this post really helps. Funny thing at school when notepad pops up every three seconds and theres apparently no reason, ahaha :). 
Thanks for the good work :D.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know what pane said, but this post really helps. Funny thing at school when notepad pops up every three seconds and theres apparently no reason, ahaha :).<br />
Thanks for the good work :D.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-8431</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 19 Jun 2009 15:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-8431</guid>
		<description>Very helpful!  I am very much a beginner, and have been trying to figure this out for a while.  :-)</description>
		<content:encoded><![CDATA[<p>Very helpful!  I am very much a beginner, and have been trying to figure this out for a while.  :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iceman</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-8075</link>
		<dc:creator>Iceman</dc:creator>
		<pubDate>Fri, 17 Apr 2009 18:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-8075</guid>
		<description>Thanks, Pane. I was jsut trying to figure that out. Works great for me.</description>
		<content:encoded><![CDATA[<p>Thanks, Pane. I was jsut trying to figure that out. Works great for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pane in the Glass</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-2/#comment-6591</link>
		<dc:creator>Pane in the Glass</dc:creator>
		<pubDate>Sat, 28 Feb 2009 22:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-6591</guid>
		<description>You can use the Arguments property to pass command line parameters:

WshShell.Run chr(34) &amp; &quot;C:\Batch Files\syncfiles.bat&quot; &amp; Chr(34) &amp; WScript.Arguments(0), 0

I found it useful to verify the command string before putting it into the script:

WScript.Echo chr(34) &amp; &quot;C:\Batch Files\syncfiles.bat&quot; &amp; Chr(34) &amp; WScript.Arguments(0)

Hope that helps!</description>
		<content:encoded><![CDATA[<p>You can use the Arguments property to pass command line parameters:</p>
<p>WshShell.Run chr(34) &amp; &#8220;C:\Batch Files\syncfiles.bat&#8221; &amp; Chr(34) &amp; WScript.Arguments(0), 0</p>
<p>I found it useful to verify the command string before putting it into the script:</p>
<p>WScript.Echo chr(34) &amp; &#8220;C:\Batch Files\syncfiles.bat&#8221; &amp; Chr(34) &amp; WScript.Arguments(0)</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Leitch</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-1/#comment-6163</link>
		<dc:creator>Keith Leitch</dc:creator>
		<pubDate>Tue, 27 Jan 2009 19:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-6163</guid>
		<description>What a good tip! Can you provide any syntax that will also pass through commandline parameters?</description>
		<content:encoded><![CDATA[<p>What a good tip! Can you provide any syntax that will also pass through commandline parameters?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirill</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-1/#comment-4861</link>
		<dc:creator>Kirill</dc:creator>
		<pubDate>Wed, 03 Dec 2008 11:53:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-4861</guid>
		<description>Man, this is just great. Thank you so much.</description>
		<content:encoded><![CDATA[<p>Man, this is just great. Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simple copy files and directories batch script &#124; Guy McDowell</title>
		<link>http://www.winhelponline.com/blog/run-bat-files-invisibly-without-displaying-command-prompt/comment-page-1/#comment-4679</link>
		<dc:creator>Simple copy files and directories batch script &#124; Guy McDowell</dc:creator>
		<pubDate>Tue, 25 Nov 2008 22:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.winhelponline.com/blog/?p=425#comment-4679</guid>
		<description>[...] script via the Windows&#8217;Script Host. This script is lifted from Ramesh Srinivasan over at WinHelpOnlineBlog. Thank you Ramesh! Sample Code Set WshShell = CreateObject(&#8221;WScript.Shell&#8221;) [...]</description>
		<content:encoded><![CDATA[<p>[...] script via the Windows&#8217;Script Host. This script is lifted from Ramesh Srinivasan over at WinHelpOnlineBlog. Thank you Ramesh! Sample Code Set WshShell = CreateObject(&#8221;WScript.Shell&#8221;) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
