<?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: WaitForExit method, running command line args in c#, and other hacks</title>
	<atom:link href="http://blog.cnizz.com/2007/02/12/simple-hack-for-monitoring-processes-in-c-other-hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cnizz.com/2007/02/12/simple-hack-for-monitoring-processes-in-c-other-hacks/</link>
	<description>my little notepad</description>
	<lastBuildDate>Mon, 06 Feb 2012 06:05:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: gvg</title>
		<link>http://blog.cnizz.com/2007/02/12/simple-hack-for-monitoring-processes-in-c-other-hacks/comment-page-1/#comment-151866</link>
		<dc:creator>gvg</dc:creator>
		<pubDate>Mon, 06 Feb 2012 06:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.cnizz.com/blog/?p=5#comment-151866</guid>
		<description>C# commandline argument example

http://csharp.net-informations.com/overview/csharp-commandline-arguments.htm

gvg</description>
		<content:encoded><![CDATA[<p>C# commandline argument example</p>
<p><a href="http://csharp.net-informations.com/overview/csharp-commandline-arguments.htm" rel="nofollow">http://csharp.net-informations.com/overview/csharp-commandline-arguments.htm</a></p>
<p>gvg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://blog.cnizz.com/2007/02/12/simple-hack-for-monitoring-processes-in-c-other-hacks/comment-page-1/#comment-2589</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Thu, 11 Oct 2007 10:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.cnizz.com/blog/?p=5#comment-2589</guid>
		<description>I think this works as well..

StartInfo.CreateNoWindow = true;</description>
		<content:encoded><![CDATA[<p>I think this works as well..</p>
<p>StartInfo.CreateNoWindow = true;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oliver</title>
		<link>http://blog.cnizz.com/2007/02/12/simple-hack-for-monitoring-processes-in-c-other-hacks/comment-page-1/#comment-822</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Wed, 25 Jul 2007 19:51:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.cnizz.com/blog/?p=5#comment-822</guid>
		<description>Thanks for comment.... It helped me : )</description>
		<content:encoded><![CDATA[<p>Thanks for comment&#8230;. It helped me : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balavic</title>
		<link>http://blog.cnizz.com/2007/02/12/simple-hack-for-monitoring-processes-in-c-other-hacks/comment-page-1/#comment-21</link>
		<dc:creator>Balavic</dc:creator>
		<pubDate>Thu, 03 May 2007 21:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cnizz.com/blog/?p=5#comment-21</guid>
		<description>Try this

ProcessStartInfo startInfo = new ProcessStartInfo(&quot;cmd.exe&quot;);
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.WorkingDirectory = myDirectory; // Directory for cmd file
startInfo.Arguments = &quot;/c mybat.cmd&quot;;
Process.Start(startInfo);

This simple example hides the command window when mybat.cmd is executed. Hope this helps!</description>
		<content:encoded><![CDATA[<p>Try this</p>
<p>ProcessStartInfo startInfo = new ProcessStartInfo(&#8220;cmd.exe&#8221;);<br />
startInfo.WindowStyle = ProcessWindowStyle.Hidden;<br />
startInfo.WorkingDirectory = myDirectory; // Directory for cmd file<br />
startInfo.Arguments = &#8220;/c mybat.cmd&#8221;;<br />
Process.Start(startInfo);</p>
<p>This simple example hides the command window when mybat.cmd is executed. Hope this helps!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

