<?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>IT Computer Zone &#187; cmd</title>
	<atom:link href="http://itcomputerzone.com/tag/cmd/feed" rel="self" type="application/rss+xml" />
	<link>http://itcomputerzone.com</link>
	<description>All About Article Computer, Software Technology News &#38; IT Solution</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:57:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Batch File Copy Folder Tricks</title>
		<link>http://itcomputerzone.com/programming/batch-file-copy-folder-tricks.html</link>
		<comments>http://itcomputerzone.com/programming/batch-file-copy-folder-tricks.html#comments</comments>
		<pubDate>Wed, 02 Mar 2011 16:02:17 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[batch file copy folder]]></category>
		<category><![CDATA[cmd]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=1914</guid>
		<description><![CDATA[This is the simple trick of batch file code to copy folder, after you knowing more batch commands you can combine all the batch code to make a expert tool for your computer that using windows. So, you may need learn the others batch file more then to copy folder, ex.Delete folder, rename folder, hidden [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/programming/how-to-write-a-batch-file.html' rel='bookmark' title='Permanent Link: How to Write a batch File'>How to Write a batch File</a> <small>Batch (with CMD code), can do something on windows computer...</small></li><li><a href='http://itcomputerzone.com/programming/make-detection-files-with-batch.html' rel='bookmark' title='Permanent Link: Make detection Files with batch'>Make detection Files with batch</a> <small>using batch programming, we can detect a file on the...</small></li><li><a href='http://itcomputerzone.com/programming/set-or-changes-file-attributes.html' rel='bookmark' title='Permanent Link: Set or changes File Attributes'>Set or changes File Attributes</a> <small>batch programming can utilize for the purpose of the computer...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>This is the simple trick of batch file code to copy folder, after you knowing more batch commands you can combine all the batch code to make a expert tool for your computer that using windows. So, you may need learn the others batch file more then to copy folder, ex.Delete folder, rename folder<span id="more-1914"></span>, hidden folder, and etc. the following is the basic CMD code before you make batch file to copy folder/directory :</p>
<p><code>XCOPY D:\Old-Folder E:\</code></p>
<p>it&#8217;s working ? no, it is not. so,how the true code ? (this just my trick to get folder from the other drive), why you should use this trick ? I think with this trick you still get the folder that you need.</p>
<p><code>IF EXIST D:\Folder-name MD E:\</code></p>
<p>After knowing my batch code tricks you can develop the code with your best logic idea.  if you want to make tool with batch, you may write CMD code into notepad to <a href="http://itcomputerzone.com/programming/how-to-write-a-batch-file.html">make a batch file</a> that saved with .bat extension. here the example batch file code :</p>
<p><code>@echo off<br />
<code>IF EXIST D:\Folder-name MD E:\<br />
echo press any key to exit<br />
pause&gt;nul</code></code></p>
<p>save it into .bat extension (ex.CopyFolder.bat) and then double click on CopyFolder.bat file to execute and see the batch program will running to copy folder. I hope it&#8217;s useful trick. ty</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/programming/how-to-write-a-batch-file.html' rel='bookmark' title='Permanent Link: How to Write a batch File'>How to Write a batch File</a> <small>Batch (with CMD code), can do something on windows computer...</small></li><li><a href='http://itcomputerzone.com/programming/make-detection-files-with-batch.html' rel='bookmark' title='Permanent Link: Make detection Files with batch'>Make detection Files with batch</a> <small>using batch programming, we can detect a file on the...</small></li><li><a href='http://itcomputerzone.com/programming/set-or-changes-file-attributes.html' rel='bookmark' title='Permanent Link: Set or changes File Attributes'>Set or changes File Attributes</a> <small>batch programming can utilize for the purpose of the computer...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/programming/batch-file-copy-folder-tricks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Write a batch File</title>
		<link>http://itcomputerzone.com/programming/how-to-write-a-batch-file.html</link>
		<comments>http://itcomputerzone.com/programming/how-to-write-a-batch-file.html#comments</comments>
		<pubDate>Sun, 27 Feb 2011 01:32:27 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=1911</guid>
		<description><![CDATA[Batch (with CMD code), can do something on windows computer like rename files,  delete files, shutdown computer automatically and more. for some people it&#8217;s easy to make batch files, but more people don&#8217;t know how to do. so, in this tutorial we&#8217;ll post how to write a batch file, following the steps to write batch [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/programming/batch-file-copy-folder-tricks.html' rel='bookmark' title='Permanent Link: Batch File Copy Folder Tricks'>Batch File Copy Folder Tricks</a> <small>This is the simple trick of batch file code to...</small></li><li><a href='http://itcomputerzone.com/programming/make-detection-files-with-batch.html' rel='bookmark' title='Permanent Link: Make detection Files with batch'>Make detection Files with batch</a> <small>using batch programming, we can detect a file on the...</small></li><li><a href='http://itcomputerzone.com/programming/set-or-changes-file-attributes.html' rel='bookmark' title='Permanent Link: Set or changes File Attributes'>Set or changes File Attributes</a> <small>batch programming can utilize for the purpose of the computer...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>Batch (with CMD code), can do something on windows computer like rename files,  delete files, <a href="http://itcomputerzone.com/programming/automatic-shutdown-pc-with-simple-batch-programming.html">shutdown computer automatically</a> and more. for some people it&#8217;s easy to make batch files, but more people don&#8217;t know how to do. so, in this tutorial we&#8217;ll post how to write a batch file, following the steps to write batch file<span id="more-1911"></span> :</p>
<ul>
<li>- Open Notepad<br />
(Start &#8211; All program &#8211; accessories &#8211; Notepad)</li>
<li>- Write the command prompt commands, example:<br />
<code>@echo off<br />
title Batch File<br />
echo hello world, this is a batch files example<br />
echo Press any key to exit<br />
pause&gt;nul</code></li>
<li>- Save it into <strong>.bat</strong> extension, example :<br />
(<strong>file name :</strong> myTool.bat <strong>Save as type:</strong> All files)</li>
</ul>
<p>and then double click on the <em>myTool.bat</em> file to test and run batch files.</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/programming/batch-file-copy-folder-tricks.html' rel='bookmark' title='Permanent Link: Batch File Copy Folder Tricks'>Batch File Copy Folder Tricks</a> <small>This is the simple trick of batch file code to...</small></li><li><a href='http://itcomputerzone.com/programming/make-detection-files-with-batch.html' rel='bookmark' title='Permanent Link: Make detection Files with batch'>Make detection Files with batch</a> <small>using batch programming, we can detect a file on the...</small></li><li><a href='http://itcomputerzone.com/programming/set-or-changes-file-attributes.html' rel='bookmark' title='Permanent Link: Set or changes File Attributes'>Set or changes File Attributes</a> <small>batch programming can utilize for the purpose of the computer...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/programming/how-to-write-a-batch-file.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Application Based Dos Promt</title>
		<link>http://itcomputerzone.com/computer/create-application-based-dos-promt.html</link>
		<comments>http://itcomputerzone.com/computer/create-application-based-dos-promt.html#comments</comments>
		<pubDate>Wed, 05 Jan 2011 22:49:03 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[dos prompt]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=1875</guid>
		<description><![CDATA[We can use MS-DOS  to create applications on the computer. to use applications based on MS-DOS us We only need to use a text editor and the which is then stored with the format .bat, or directly using cmd/command promt the which is located on the menu (Start &#8211; Accessories &#8211; Command Prompt), or with [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/windows/enable-task-manager-cmd-and-regedit.html' rel='bookmark' title='Permanent Link: Enable Task Manager CMD and regedit'>Enable Task Manager CMD and regedit</a> <small>This article is for windows exposed by a virus which...</small></li><li><a href='http://itcomputerzone.com/software/chrome-based-computer-start-up-less-than-7-seconds.html' rel='bookmark' title='Permanent Link: Chrome Based Computer Start Up Less Than 7 Seconds'>Chrome Based Computer Start Up Less Than 7 Seconds</a> <small>Google issued their latest software (Chrome), which can start up...</small></li><li><a href='http://itcomputerzone.com/programming/introduction-batch-programming.html' rel='bookmark' title='Permanent Link: Introduction Batch Programming'>Introduction Batch Programming</a> <small>batch programming language is used by the Command Prompt (CMD),...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>We can use MS-DOS  to create applications on the computer. to use applications based on MS-DOS us We only need to use a text editor and the which is then stored with the format <em>.bat</em>, or directly using cmd/command promt the which is located on the menu (Start &#8211; Accessories &#8211; Command Prompt), or with a quick way like this: Click Start &#8211; Click Run &#8211; and then type cmd or command and press enter.</p>
<p><em>.bat</em> application is usually used for computer repair stricken destroyer programs. for example when the computer is not accessible in full, windows task manager can not be accessed, and some other access to based Windows computers<span id="more-1875"></span>.</p>
<p>batch program (. bat <a title="dos promt introduction" href="http://itcomputerzone.com/programming/introduction-batch-programming.html">dos promt</a> application) may also be used for use as a shortcut, so that we can automatically do the access, or the settings on your computer only use the program. for example, we&#8217;ll <a title="auto shutdown pc with batch" href="http://itcomputerzone.com/programming/automatic-shutdown-pc-with-simple-batch-programming.html">auto shutdown pc</a> within a certain time, restart the computer, protect an important file, <a title="bios password reset with dos promt" href="http://itcomputerzone.com/computer/ms-dos-to-reset-bios-password.html">bios password reset</a>, and other purposes you can do with application based dos promt.</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/windows/enable-task-manager-cmd-and-regedit.html' rel='bookmark' title='Permanent Link: Enable Task Manager CMD and regedit'>Enable Task Manager CMD and regedit</a> <small>This article is for windows exposed by a virus which...</small></li><li><a href='http://itcomputerzone.com/software/chrome-based-computer-start-up-less-than-7-seconds.html' rel='bookmark' title='Permanent Link: Chrome Based Computer Start Up Less Than 7 Seconds'>Chrome Based Computer Start Up Less Than 7 Seconds</a> <small>Google issued their latest software (Chrome), which can start up...</small></li><li><a href='http://itcomputerzone.com/programming/introduction-batch-programming.html' rel='bookmark' title='Permanent Link: Introduction Batch Programming'>Introduction Batch Programming</a> <small>batch programming language is used by the Command Prompt (CMD),...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/computer/create-application-based-dos-promt.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS-DOS to reset BIOS password</title>
		<link>http://itcomputerzone.com/computer/ms-dos-to-reset-bios-password.html</link>
		<comments>http://itcomputerzone.com/computer/ms-dos-to-reset-bios-password.html#comments</comments>
		<pubDate>Sat, 30 May 2009 04:58:50 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[BIOS]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=184</guid>
		<description><![CDATA[than can be used to create a detection files, changes the attribute files, shutdown automatically. CMD/BIOS also can use to reset BIOS password computer. use the CMD we do not need to open the battery CMOS to reset BIOS password. BIOS password is usually used to protect the user on the computer BIOS settings. And [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/computer/create-application-based-dos-promt.html' rel='bookmark' title='Permanent Link: Create Application Based Dos Promt'>Create Application Based Dos Promt</a> <small>We can use MS-DOS  to create applications on the computer....</small></li><li><a href='http://itcomputerzone.com/programming/how-to-write-a-batch-file.html' rel='bookmark' title='Permanent Link: How to Write a batch File'>How to Write a batch File</a> <small>Batch (with CMD code), can do something on windows computer...</small></li><li><a href='http://itcomputerzone.com/internet/new-trojan-lurking-for-password.html' rel='bookmark' title='Permanent Link: New Trojan lurking for Password'>New Trojan lurking for Password</a> <small>whether you are often exposed to the virus? be careful...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>than can be used to <a title="creat files detector" href="http://itcomputerzone.com/programming/make-detection-files-with-batch.html" target="_blank">create a detection files</a>, <a title="set or changes file attibutes " href="http://itcomputerzone.com/programming/set-or-changes-file-attributes.html" target="_blank">changes the attribute files</a>, <a title="automatic shutdown" href="http://itcomputerzone.com/programming/automatic-shutdown-pc-with-simple-batch-programming.html" target="_blank">shutdown automatically</a>. CMD/BIOS  also can use to reset BIOS password <a title="itcomputerzone" href="http://itcomputerzone.com" target="_blank">computer</a>. use the CMD we do not need to open the battery CMOS to reset BIOS password.</p>
<p>BIOS password is usually used to protect the user on the computer BIOS settings. And if you want to reset the password on the BIOS does not need to hard-to-difficult to connect its battery CMOS, with a few tricks on DOS, you can reset the BIOS password. How: reboot the computer and run with the MS-DOS mode, use the &#8220;command prompt only&#8221;. At the</p>
<blockquote><p>C: \&gt;<br />
C: \&gt;DEBUG</p></blockquote>
<p>hit/press enter on your keayboard. You will see the sign (-) at the DEBUG prompt. Then type:<br />
<strong> 0 to 70 2e DEBUG</strong> prompt will be displayed as <strong>-0 70 2e</strong>. Press enter and type: <strong>0 71 ff </strong>press enter, the last, type: <strong>Q</strong> and press enter, then you will exit from the DEBUG prompt and return to the C: \&gt; prompt. Now you try to enter the BIOS then the BIOS password has open.</p>
<p>Manual way to reset the BIOS password is a way to disassemble the BIOS battery is located on the <a title="itcomputerzone" href="http://itcomputerzone.com" target="_blank">computer</a> motherboard (at CPU). but with the way this manual is need a lot of time, because we have to open the CPU hardware first.</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/computer/create-application-based-dos-promt.html' rel='bookmark' title='Permanent Link: Create Application Based Dos Promt'>Create Application Based Dos Promt</a> <small>We can use MS-DOS  to create applications on the computer....</small></li><li><a href='http://itcomputerzone.com/programming/how-to-write-a-batch-file.html' rel='bookmark' title='Permanent Link: How to Write a batch File'>How to Write a batch File</a> <small>Batch (with CMD code), can do something on windows computer...</small></li><li><a href='http://itcomputerzone.com/internet/new-trojan-lurking-for-password.html' rel='bookmark' title='Permanent Link: New Trojan lurking for Password'>New Trojan lurking for Password</a> <small>whether you are often exposed to the virus? be careful...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/computer/ms-dos-to-reset-bios-password.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Task Manager CMD and regedit</title>
		<link>http://itcomputerzone.com/windows/enable-task-manager-cmd-and-regedit.html</link>
		<comments>http://itcomputerzone.com/windows/enable-task-manager-cmd-and-regedit.html#comments</comments>
		<pubDate>Wed, 20 May 2009 04:42:46 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[enable task manager cmd]]></category>
		<category><![CDATA[enable task manager regedit]]></category>
		<category><![CDATA[enable task manager script]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[task manager cmd]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=129</guid>
		<description><![CDATA[This article is for windows exposed by a virus which disable the &#8220;Task Manager&#8221; virus on the computer. else disable Task Manager virus on the windows also usually turn off the Registry editor (regedit). not only disable the Task Manager, regedit, a virus also disable CMD (Command Promt) because of a program purposely disable all [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/windows/disable-autoplay-from-gpedit.html' rel='bookmark' title='Permanent Link: disable autoPlay from Gpedit'>disable autoPlay from Gpedit</a> <small>if your computer have a problem on the windows (troubleshooting...</small></li><li><a href='http://itcomputerzone.com/windows/returns-the-usb-flash-in-the-disable-write-protected.html' rel='bookmark' title='Permanent Link: Returns the USB Flash in the Disable / Write Protected'>Returns the USB Flash in the Disable / Write Protected</a> <small>Have a Flash Disk or External Hardisk with the USB...</small></li><li><a href='http://itcomputerzone.com/windows/9-useful-tweaks-in-windows-vista.html' rel='bookmark' title='Permanent Link: 9 useful tweaks in Windows Vista'>9 useful tweaks in Windows Vista</a> <small>From the latest operating system, Microsoft  Windows Vista has a...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>This article is for windows exposed by a virus which disable the &#8220;Task Manager&#8221; virus on the computer.  else disable Task Manager virus on the windows also usually turn off the Registry editor (regedit).  not only disable the Task Manager, regedit, a virus also disable CMD (Command Promt) because of a program purposely disable all virus to prevent the owner can clean the computer virus. (to prevent a virus, please read the article about <a title="simple steps to anticipate virus" href="http://itcomputerzone.com/windows/simple-steps-to-anticipate-virus.html" target="_blank">simple steps to anticipate virus</a>)</p>
<p>following the steps to overcome the problems:</p>
<p><strong>To enable Task Manager:</strong><br />
1. Click Start -&gt; Run<br />
2. Then just copy-script below &#8230;</p>
<blockquote><p>Reg add HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem / v DisableTaskMgr / t REG_DWORD / d 0 / f   (written in one line)</p></blockquote>
<p>3. TaskManager usually can be opened directly, but if TaskManager you can not open, please restart your computer &#8230;</p>
<p><strong>To enable Registy Editor (regedit):</strong><br />
1. Click Start -&gt; Run<br />
2. Then just copy-script below:</p>
<blockquote><p>Reg add HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem / v DisableRegistryTools / t REG_DWORD / d 0 / f (written in one line)</p></blockquote>
<p>3. Restart your computer, if regedit is still not open</p>
<p><strong>To activate the Command Prompt:</strong><br />
1. Click Start -&gt; Run<br />
2. Then just copy-script below:</p>
<blockquote><p>Reg add HKCUSoftwarePoliciesMicrosoftWindowsSystem / v DisableCMD / t REG_DWORD / d 0 / f</p></blockquote>
<p>solutions are not necessarily 100% able to complete the problems on the computer affected by a virus program. virus programs also sometimes does not turn off all of that. because each virus has a different logic program and a different destination, as well as systems that use the virus. but most of the virus program is disable &#8220;Task Manager&#8221;, CMD (Command Promt) and Regedit. why? because, using taskManager we can see all the processes running on the computer, and using &#8220;Task Manager&#8221; usually user computer can turn off the virus process. it is one of the reasons for a virus to disable Task Manager. as well as regedit and CMD both have important roles to make the settings in the windows.</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/windows/disable-autoplay-from-gpedit.html' rel='bookmark' title='Permanent Link: disable autoPlay from Gpedit'>disable autoPlay from Gpedit</a> <small>if your computer have a problem on the windows (troubleshooting...</small></li><li><a href='http://itcomputerzone.com/windows/returns-the-usb-flash-in-the-disable-write-protected.html' rel='bookmark' title='Permanent Link: Returns the USB Flash in the Disable / Write Protected'>Returns the USB Flash in the Disable / Write Protected</a> <small>Have a Flash Disk or External Hardisk with the USB...</small></li><li><a href='http://itcomputerzone.com/windows/9-useful-tweaks-in-windows-vista.html' rel='bookmark' title='Permanent Link: 9 useful tweaks in Windows Vista'>9 useful tweaks in Windows Vista</a> <small>From the latest operating system, Microsoft  Windows Vista has a...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/windows/enable-task-manager-cmd-and-regedit.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

