<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Quickpost: GUI vs. CUI</title>
	<atom:link href="http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/</link>
	<description>(blog 'DidierStevens)</description>
	<lastBuildDate>Wed, 08 Feb 2012 19:23:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: jolly jumper</title>
		<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-45614</link>
		<dc:creator><![CDATA[jolly jumper]]></dc:creator>
		<pubDate>Sun, 28 Aug 2011 08:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-45614</guid>
		<description><![CDATA[@Didier Stevens : thank you for your quick answer ! It&#039;s very nice.]]></description>
		<content:encoded><![CDATA[<p>@Didier Stevens : thank you for your quick answer ! It&#8217;s very nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-45598</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Sat, 27 Aug 2011 18:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-45598</guid>
		<description><![CDATA[@jolly jumper Try with a PE editor instead of a hex editor, or use a hex editor that understands the PE file format, like 010 Editor with a PE template.]]></description>
		<content:encoded><![CDATA[<p>@jolly jumper Try with a PE editor instead of a hex editor, or use a hex editor that understands the PE file format, like 010 Editor with a PE template.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jolly jumper</title>
		<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-45593</link>
		<dc:creator><![CDATA[jolly jumper]]></dc:creator>
		<pubDate>Sat, 27 Aug 2011 13:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-45593</guid>
		<description><![CDATA[Hi, It seems to be obvious to change the SUBSYSTEM parameter from 2 to 3. But when I use XVI32, I don&#039;t know where is this value.
Would you help me ? Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi, It seems to be obvious to change the SUBSYSTEM parameter from 2 to 3. But when I use XVI32, I don&#8217;t know where is this value.<br />
Would you help me ? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-26913</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Tue, 29 Jan 2008 20:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-26913</guid>
		<description><![CDATA[CreateProcess has the same option: flag CREATE_NO_WINDOW]]></description>
		<content:encoded><![CDATA[<p>CreateProcess has the same option: flag CREATE_NO_WINDOW</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregg</title>
		<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-26837</link>
		<dc:creator><![CDATA[Gregg]]></dc:creator>
		<pubDate>Sat, 26 Jan 2008 08:17:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-26837</guid>
		<description><![CDATA[Use vbscript to start console programs with the console window hidden, not just minimized.

CreateObject(&quot;Wscript.Shell&quot;).Run &quot;&quot;&quot;&quot; &amp; WScript.Arguments(0) &amp; &quot;&quot;&quot;&quot;, 0, True

The 0 sets the windowstyle to hidden, and the True tells it to wait for the window to return.
Put the code into a single line and save it as invis.vbs or something.  Then run the program 

%windir%\wscript.exe invis.vbs hiddenprogram.exe

hiddenprogram.exe better not wait for user input, or else it&#039;s a leaked process and your script hangs, since GUI windows and not just console windows are hidden with this script.]]></description>
		<content:encoded><![CDATA[<p>Use vbscript to start console programs with the console window hidden, not just minimized.</p>
<p>CreateObject(&#8220;Wscript.Shell&#8221;).Run &#8220;&#8221;"&#8221; &amp; WScript.Arguments(0) &amp; &#8220;&#8221;"&#8221;, 0, True</p>
<p>The 0 sets the windowstyle to hidden, and the True tells it to wait for the window to return.<br />
Put the code into a single line and save it as invis.vbs or something.  Then run the program </p>
<p>%windir%\wscript.exe invis.vbs hiddenprogram.exe</p>
<p>hiddenprogram.exe better not wait for user input, or else it&#8217;s a leaked process and your script hangs, since GUI windows and not just console windows are hidden with this script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-26399</link>
		<dc:creator><![CDATA[Anz]]></dc:creator>
		<pubDate>Mon, 14 Jan 2008 18:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/2008/01/14/quickpost-gui-vs-cui/#comment-26399</guid>
		<description><![CDATA[This can indeed be verry usefull.

The following site has another nice example :
http://www.nirsoft.net/vb/console_application_visual_basic.html

It also has this little tool to easely make the switch to CUI :
http://www.nirsoft.net/vb/appmodechange.html

Nice blog!]]></description>
		<content:encoded><![CDATA[<p>This can indeed be verry usefull.</p>
<p>The following site has another nice example :<br />
<a href="http://www.nirsoft.net/vb/console_application_visual_basic.html" rel="nofollow">http://www.nirsoft.net/vb/console_application_visual_basic.html</a></p>
<p>It also has this little tool to easely make the switch to CUI :<br />
<a href="http://www.nirsoft.net/vb/appmodechange.html" rel="nofollow">http://www.nirsoft.net/vb/appmodechange.html</a></p>
<p>Nice blog!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

