<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Paul Gu&#124;blog &#187; DOS</title>
	<atom:link href="http://blog.paulgu.com/tag/dos/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.paulgu.com</link>
	<description>Sharing my world with the world</description>
	<lastBuildDate>Tue, 17 Jan 2012 13:41:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Change User Password at Command Prompt</title>
		<link>http://blog.paulgu.com/windows/change-user-password-at-command-prompt/</link>
		<comments>http://blog.paulgu.com/windows/change-user-password-at-command-prompt/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 14:15:10 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[DOS]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2011/10/03/change-user-password-at-command-prompt/</guid>
		<description><![CDATA[How to use the net user command to change the user password at a Windows command prompt. Only administrators can change domain passwords at the Windows command prompt. To change a user&#8217;s password at the command prompt, log on as an administrator and type: net user user_name * /domain When you are prompted to type [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/windows/change-user-password-at-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Dos DateTime Format Utility</title>
		<link>http://blog.paulgu.com/windows/windows-dos-datetime-format-utility/</link>
		<comments>http://blog.paulgu.com/windows/windows-dos-datetime-format-utility/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 13:19:26 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[DOS]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2011/09/29/windows-dos-datetime-format-utility/</guid>
		<description><![CDATA[Many time, you might need to display or print formatted date now it comes so simple with this utility called “dtfmt.exe”. Examples: dtfmt.exe ? Usage Example: dtfmt.exe dddd, MMMM d, yyyy, HH:mm:ss:fff Please refer to DateTime Format Strings on MSDN. Author: Paul Gu, http://paulgu.com dtfmt.exe dddd Thursday dtfmt.exe MMMM d, yyyy September 29, 2011 dtfmt.exe [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/windows/windows-dos-datetime-format-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Windows batch script minimized</title>
		<link>http://blog.paulgu.com/windows/how-to-run-a-windows-dos-batchcmd-script-minimized/</link>
		<comments>http://blog.paulgu.com/windows/how-to-run-a-windows-dos-batchcmd-script-minimized/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 18:50:28 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[DOS]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2009/07/13/how-to-run-a-windows-dos-batchcmd-script-minimized/</guid>
		<description><![CDATA[The code below that will force a Windows batch script to run in a minimized window. Insert it at the beginning of the script: if not &#34;%minimized%&#34;==&#34;&#34; goto :minimized set minimized=true start /min cmd /C &#34;%~dpnx0&#34; goto :EOF :minimized rem Anything after here will run in a minimized window It works by having the script [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/windows/how-to-run-a-windows-dos-batchcmd-script-minimized/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the DOS Prompt Color in a Batch File in XP</title>
		<link>http://blog.paulgu.com/windows/change-the-dos-prompt-color-in-a-batch-file-in-xp/</link>
		<comments>http://blog.paulgu.com/windows/change-the-dos-prompt-color-in-a-batch-file-in-xp/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 15:24:50 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/04/03/change-the-dos-prompt-color-in-a-batch-file-in-xp/</guid>
		<description><![CDATA[Grab the user&#8217;s attention if a batch file running underneath Windows XP&#8217;s DOS fails by changing the text color. If you need a batch file to really grab your attention, such as when an error condition occurs, try changing the DOS prompt&#8217;s colors. The COLOR command changes the colors of the DOS prompt text and [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/windows/change-the-dos-prompt-color-in-a-batch-file-in-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dos command run background</title>
		<link>http://blog.paulgu.com/windows/dos-command-run-background/</link>
		<comments>http://blog.paulgu.com/windows/dos-command-run-background/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 17:19:21 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/04/02/dos-command-run-background/</guid>
		<description><![CDATA[Usually we run a command in dos, it stays peacefully until it is complete. You cannot run any other commands during the process unless you open another command window. For example, ftp bla bla bla, then you will be in ftp session. If you change that to start /min ftp bla bla bla or start [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/windows/dos-command-run-background/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Windows Command Prompt To Look Like A Bash Shell Prompt</title>
		<link>http://blog.paulgu.com/blogroll/customize-windows-command-prompt-to-look-like-a-bash-shell-prompt/</link>
		<comments>http://blog.paulgu.com/blogroll/customize-windows-command-prompt-to-look-like-a-bash-shell-prompt/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 14:54:23 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/02/14/customize-windows-command-prompt-to-look-like-a-bash-shell-prompt/</guid>
		<description><![CDATA[I use both Linux and Windows Computers at work and have a need to use the command prompt on Windows. By default, Windows command prompt displays the current directory path. One problem with this is when you switch to a directory that has a long name, the prompt can end up half way across the [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/blogroll/customize-windows-command-prompt-to-look-like-a-bash-shell-prompt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to delete GPT Protective Partition</title>
		<link>http://blog.paulgu.com/windows/delete-gpt-protective-partition/</link>
		<comments>http://blog.paulgu.com/windows/delete-gpt-protective-partition/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 02:57:56 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/01/06/how-to-delete-gpt-protective-partition/</guid>
		<description><![CDATA[Why we need to delete GPT protective partition? In Windows XP Professional, you cannot access or modify GPT disk, but you can convert a GPT disk to MBR by using the clean command in DiskPart, which will delete GPT protective partition and remove all data and partition structures from the disk. Warning: The steps below [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/windows/delete-gpt-protective-partition/feed/</wfw:commentRss>
		<slash:comments>701</slash:comments>
		</item>
	</channel>
</rss>

