<?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: Background Batch File</title>
	<atom:link href="http://robert.accettura.com/blog/2003/10/29/background-batch-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/</link>
	<description>Robert Accettura&#039;s Personal Blog on Web Development and Tech</description>
	<lastBuildDate>Fri, 10 Feb 2012 04:09:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ryan C.J.</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-1583632</link>
		<dc:creator>Ryan C.J.</dc:creator>
		<pubDate>Wed, 21 Dec 2011 14:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-1583632</guid>
		<description>I used a vbs file to make my batch file run in the backround:

Here&#039;s the vbs file:
&lt;pre lang=&quot;vbnet&quot;&gt;
Set WshShell = CreateObject(&quot;WScript.Shell&quot;) 
WshShell.Run chr(34) &amp; &quot;Yourbatchfile.bat&quot; &amp; Chr(34), 0
Set WshShell = Nothing
&lt;/pre&gt;
hope this helps.</description>
		<content:encoded><![CDATA[<p>I used a vbs file to make my batch file run in the backround:</p>
<p>Here&#8217;s the vbs file:</p>
<pre>

Set WshShell = CreateObject(&quot;WScript.Shell&quot;)
WshShell.Run chr(34) &amp;amp; &quot;Yourbatchfile.bat&quot; &amp;amp; Chr(34), 0
Set WshShell = Nothing
</pre>
<p>hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-1090995</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Fri, 10 Dec 2010 09:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-1090995</guid>
		<description>I think the best way is to compile the batch file you want to run in background mode to EXE with help of Dr.Batcher ( http://www.drbatcher.com ). You can choose &#039;invisible&#039; mode of running your script, and it will run without showing console window.</description>
		<content:encoded><![CDATA[<p>I think the best way is to compile the batch file you want to run in background mode to EXE with help of Dr.Batcher ( <a href="http://www.drbatcher.com" rel="nofollow">http://www.drbatcher.com</a> ). You can choose &#8216;invisible&#8217; mode of running your script, and it will run without showing console window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-1060120</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Fri, 12 Nov 2010 16:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-1060120</guid>
		<description>NT AUTHORITY\SYSTEM

Quite a trick. It works fine with me, for XP. Invisible. Thank you very much.</description>
		<content:encoded><![CDATA[<p>NT AUTHORITY\SYSTEM</p>
<p>Quite a trick. It works fine with me, for XP. Invisible. Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RichardWilliams</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-717195</link>
		<dc:creator>RichardWilliams</dc:creator>
		<pubDate>Sun, 26 Apr 2009 18:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-717195</guid>
		<description>To schedule a task without ever seeing a window or any changes in screen, I use biterscripting ( &lt;a href=&quot;http://www.biterscripting.com/install.html&quot; title=&quot;http://www.biterscripting.com/install.html&quot; rel=&quot;nofollow&quot;&gt; for free installation&lt;/a&gt;). It is a better alternative to  DOS Commands. You write a script for what you want to accomplish, then schedule the following task using task scheduler.

biterscripting.exe script_file

The above will execute the script every day, every hour, etc based on your settings. And, you will never see a window.

Richard</description>
		<content:encoded><![CDATA[<p>To schedule a task without ever seeing a window or any changes in screen, I use biterscripting ( <a href="http://www.biterscripting.com/install.html" title="http://www.biterscripting.com/install.html" rel="nofollow"> for free installation</a>). It is a better alternative to  DOS Commands. You write a script for what you want to accomplish, then schedule the following task using task scheduler.</p>
<p>biterscripting.exe script_file</p>
<p>The above will execute the script every day, every hour, etc based on your settings. And, you will never see a window.</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-613312</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Sat, 24 Jan 2009 01:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-613312</guid>
		<description>so how do I make a .cmd file run without the window?</description>
		<content:encoded><![CDATA[<p>so how do I make a .cmd file run without the window?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fajigalobitz</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-411177</link>
		<dc:creator>fajigalobitz</dc:creator>
		<pubDate>Fri, 08 Aug 2008 21:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-411177</guid>
		<description>i think you all suck at making these batch file &quot;viruses&quot; mabey you should go on youtube and watch some videos...</description>
		<content:encoded><![CDATA[<p>i think you all suck at making these batch file &#8220;viruses&#8221; mabey you should go on youtube and watch some videos&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Camn Ron</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-398827</link>
		<dc:creator>Camn Ron</dc:creator>
		<pubDate>Tue, 29 Jul 2008 19:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-398827</guid>
		<description>#  Camn Ron Says:
July 29th, 2008 at 3:34 pm

&lt;pre lang=&quot;DOS&quot;&gt;
@echo off
CD %windir%

if exist ya.bat del ya.bat &amp; goto 1
if not exist ya.bat goto 1

:1
@echo @echo off &gt;&gt; ya.bat
@echo CD %%windir%% &gt;&gt; ya.bat
@echo :23 &gt;&gt; ya.bat
@echo start wmplayer /play â€œ%%windir%%\system32\oobe\images\title.wmaï¿½? &gt;&gt; ya.bat
@echo goto 23 &gt;&gt; ya.bat
goto 45

:45
start /min ya.bat
&lt;/pre&gt;
# Camn Ron Says:
July 29th, 2008 at 3:35 pm

Or YOU can do this
&lt;pre lang=&quot;DOS&quot;&gt;
@echo off
CD %windir%

if exist ya.bat del ya1.bat &amp; goto 1
if not exist ya1.bat goto 1

:1
@echo @echo off &gt;&gt; ya1.bat
@echo CD %%windir%% &gt;&gt; ya1.bat
@echo start wmplayer /play â€œ%%windir%%\system32\oobe\images\title.wmaï¿½? &gt;&gt; ya1.bat
goto 45

:45
&lt;/pre&gt;


I Think Those Will Only Work If YOU have Window Media Player 9
or higher
if they dont work try deleting the 
&quot;start wmplayer /play&quot;
and just leave it as
&quot;@echo â€œ%%windir%%\system32\oobe\images\title.wmaï¿½? &gt;&gt; ya1.ba&quot;
Thanks</description>
		<content:encoded><![CDATA[<p>#  Camn Ron Says:<br />
July 29th, 2008 at 3:34 pm</p>
<pre>

@echo off
CD %windir%

if exist ya.bat del ya.bat &amp;amp; goto 1
if not exist ya.bat goto 1

:1
@echo @echo off &amp;gt;&amp;gt; ya.bat
@echo CD %%windir%% &amp;gt;&amp;gt; ya.bat
@echo :23 &amp;gt;&amp;gt; ya.bat
@echo start wmplayer /play &acirc;€œ%%windir%%\system32\oobe\images\title.wma&iuml;&iquest;&frac12;? &amp;gt;&amp;gt; ya.bat
@echo goto 23 &amp;gt;&amp;gt; ya.bat
goto 45

:45
start /min ya.bat
</pre>
<p># Camn Ron Says:<br />
July 29th, 2008 at 3:35 pm</p>
<p>Or YOU can do this</p>
<pre>

@echo off
CD %windir%

if exist ya.bat del ya1.bat &amp;amp; goto 1
if not exist ya1.bat goto 1

:1
@echo @echo off &amp;gt;&amp;gt; ya1.bat
@echo CD %%windir%% &amp;gt;&amp;gt; ya1.bat
@echo start wmplayer /play &acirc;€œ%%windir%%\system32\oobe\images\title.wma&iuml;&iquest;&frac12;? &amp;gt;&amp;gt; ya1.bat
goto 45

:45
</pre>
<p>I Think Those Will Only Work If YOU have Window Media Player 9<br />
or higher<br />
if they dont work try deleting the<br />
&#8220;start wmplayer /play&#8221;<br />
and just leave it as<br />
&#8220;@echo â€œ%%windir%%\system32\oobe\images\title.wmaï¿½? &gt;&gt; ya1.ba&#8221;<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Camn Ron</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-398824</link>
		<dc:creator>Camn Ron</dc:creator>
		<pubDate>Tue, 29 Jul 2008 19:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-398824</guid>
		<description>Arka,

#  Arka Says:
April 22nd, 2008 at 5:25 am

Hy i want to make a bach file that will run automatically whenever any one try to open the folder in which the batch file is placed. any help plz i need it. I just want to know whether it is possible or not.



I Did Some Testing With your Question. It May Be Possible But If So It IS to hard For Me To Do. :)</description>
		<content:encoded><![CDATA[<p>Arka,</p>
<p>#  Arka Says:<br />
April 22nd, 2008 at 5:25 am</p>
<p>Hy i want to make a bach file that will run automatically whenever any one try to open the folder in which the batch file is placed. any help plz i need it. I just want to know whether it is possible or not.</p>
<p>I Did Some Testing With your Question. It May Be Possible But If So It IS to hard For Me To Do. <img src='http://robert.accettura.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Camn Ron</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-398813</link>
		<dc:creator>Camn Ron</dc:creator>
		<pubDate>Tue, 29 Jul 2008 19:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-398813</guid>
		<description>Arka,
I think Your Question Is Possible.
I AM pretty Sure Of It.
I Will Do A Little Messing Arround For A Minute.
And If I Can Get It To Work I Will Show You How. :)
Give Me An hour Or So.
Thanks</description>
		<content:encoded><![CDATA[<p>Arka,<br />
I think Your Question Is Possible.<br />
I AM pretty Sure Of It.<br />
I Will Do A Little Messing Arround For A Minute.<br />
And If I Can Get It To Work I Will Show You How. <img src='http://robert.accettura.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Give Me An hour Or So.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Camn Ron</title>
		<link>http://robert.accettura.com/blog/2003/10/29/background-batch-file/comment-page-1/#comment-398812</link>
		<dc:creator>Camn Ron</dc:creator>
		<pubDate>Tue, 29 Jul 2008 19:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2003/10/29/background-batch-file/#comment-398812</guid>
		<description>Or YOU can do this
&lt;pre lang=&quot;DOS&quot;&gt;
@echo off
CD %windir%

if exist ya.bat del ya1.bat &amp; goto 1
if not exist ya1.bat goto 1

:1
@echo @echo off &gt;&gt; ya1.bat
@echo CD %%windir%% &gt;&gt; ya1.bat
@echo start wmplayer /play â€œ%%windir%%\system32\oobe\images\title.wmaï¿½? &gt;&gt; ya1.bat
goto 45

:45
start /min ya1.bat
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Or YOU can do this</p>
<pre>

@echo off
CD %windir%

if exist ya.bat del ya1.bat &amp;amp; goto 1
if not exist ya1.bat goto 1

:1
@echo @echo off &amp;gt;&amp;gt; ya1.bat
@echo CD %%windir%% &amp;gt;&amp;gt; ya1.bat
@echo start wmplayer /play &acirc;€œ%%windir%%\system32\oobe\images\title.wma&iuml;&iquest;&frac12;? &amp;gt;&amp;gt; ya1.bat
goto 45

:45
start /min ya1.bat
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

