<?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>TANBT</title>
	<atom:link href="http://www.tanbt.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.tanbt.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 03 Sep 2010 04:40:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Restart apache server using putty/SSH</title>
		<link>http://www.tanbt.com/?p=77</link>
		<comments>http://www.tanbt.com/?p=77#comments</comments>
		<pubDate>Fri, 03 Sep 2010 03:06:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/?p=77</guid>
		<description><![CDATA[To start apache httpd server &#8211; # service httpd start
To restart apache httpd server &#8211; # service httpd restart
To stop apache httpd server &#8211; # service httpd stop
Other putty/ssh command
To check server memory &#8211; $ vmstat    OR    #free   OR    #free -m
]]></description>
			<content:encoded><![CDATA[<p>To start apache httpd server &#8211; # service httpd start</p>
<p>To restart apache httpd server &#8211; # service httpd restart</p>
<p>To stop apache httpd server &#8211; # service httpd stop</p>
<p>Other putty/ssh command<br />
To check server memory &#8211; $ vmstat    OR    #free   OR    #free -m</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=77</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download from Live Server to Localhost in Drupal</title>
		<link>http://www.tanbt.com/?p=73</link>
		<comments>http://www.tanbt.com/?p=73#comments</comments>
		<pubDate>Wed, 18 Aug 2010 03:04:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/?p=73</guid>
		<description><![CDATA[Drupal Troubleshoot
Q1. Download from live server to localhost. When view homepage, it is different result from what we seen from server.
A1: Try to clear the cache by going to drupal admin: Site Configuration -> Performance. Click the clear cache button to clear.
Q2. When clear the cache, it displays error message regarding the memory exhausted.
A2: This [...]]]></description>
			<content:encoded><![CDATA[<p>Drupal Troubleshoot</p>
<p>Q1. Download from live server to localhost. When view homepage, it is different result from what we seen from server.<br />
A1: Try to clear the cache by going to drupal admin: Site Configuration -> Performance. Click the clear cache button to clear.</p>
<p>Q2. When clear the cache, it displays error message regarding the memory exhausted.<br />
A2: This is due to memory limit when you want to clear the cache. Go to the localhost’s apache php.ini do configuration. (php.ini file can be found at root/xampp/apache/bin)<br />
Change the line “memory_limit = 32M”  to “memory_limit = 128M” so that system has more memory to clear the cache. Restart apache server.<br />
Return to drupal admin and select menu Site Configuration -> Performance. Click the clear cache button to clear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started with YUI 3.0</title>
		<link>http://www.tanbt.com/?p=23</link>
		<comments>http://www.tanbt.com/?p=23#comments</comments>
		<pubDate>Sun, 01 Nov 2009 01:46:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/?p=23</guid>
		<description><![CDATA[Today we going to start how to implement a simple Yahoo User Interface (YUI) 3.0 frameworks. YUI 3 is basically a little bit different way to code, compare to 2.7.
YUI 3 is still under beta version, therefore, most of the modules and functions are not available. You have to use those functions/modules provided by YUI [...]]]></description>
			<content:encoded><![CDATA[<p>Today we going to start how to implement a simple Yahoo User Interface (YUI) 3.0 frameworks. YUI 3 is basically a little bit different way to code, compare to 2.7.</p>
<p>YUI 3 is still under beta version, therefore, most of the modules and functions are not available. You have to use those functions/modules provided by YUI 2.7. The YUI 2.7 code is solid and firm can be used in YUI 3.0 or the future next newer version.</p>
<p>Before we start, first of all, we go to the website to download the whole frameworks: <a href="http://yuilibrary.com/downloads">http://yuilibrary.com/downloads/#yui3</a>.</p>
<p>After downloaded, let&#8217;s get started!</p>
<p>1. In your code you should add this line to enable the YUI frameworks:<br />
<script src="[-- YUI PATH --]/yui-min.js" type="text/javascript"></script><br />
This file contains YUI class, with its constructor and core functions, which is to performs most basic functions.</p>
<p>2. YUI 3.0 code is more neat, and compact, compare to YUI 2.7. For instance, when you want to use some certain modules from library, you just code this format:</p>
<p>YUI().use(&#8221;[--  MODULE NAME(S) --]&#8220;, function(Y) {}, which the module names are actually the folder names found in YUI root files. For example:<br />
YUI().use(dd-drop&#8217;, &#8216;node&#8217;, &#8216;io&#8217;, function(Y) {start code here}; you can implement classes &#038; functions in drop, node &#038; io modules. The function &#8220;use&#8221; is actually from its core library. </p>
<p>3. To create new object/instance:<br />
     var A = new Y.(module class)({ properties });	 </p>
<p>4. In YUI, to create your function definition, you can code like this:<br />
var functionA = function (e){ your code is here };</p>
<p>When you want to call the function definition:<br />
Y.on(&#8221;click&#8221;, functionA);</p>
<p>Note that, actually Y.on can be work more arguments than it show as above.<br />
Y.on([-event name-], [-function-], [-element(s)-], [-object-], [-argument-])</p>
<p>5. YUI provides easier solution for us to get attributes value. For example when we want to get the element&#8217;s ID, we usually use getElementById(). In YUI, Y.Node.get(&#8217;#ID name&#8217;); (  make sure you add the Node modules in YUI().use()  ). Of course, getElementById still can implement in YUI library. There are a few ways we can do for get function:<br />
(a) obj.get(&#8217;node&#8217;).setStyles({ opacity: &#8216;1&#8242;});<br />
(b) Y.Node.get(&#8217;#IDName&#8217;).get(&#8221;your attribute like name, value etc&#8221;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>joomla query</title>
		<link>http://www.tanbt.com/?p=37</link>
		<comments>http://www.tanbt.com/?p=37#comments</comments>
		<pubDate>Thu, 22 Oct 2009 08:22:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/?p=37</guid>
		<description><![CDATA[Today want to show on how to manipulate data in mysql basic steps.
Example 1 (SELECT statement)
$db =&#38; JFactory::getDBO();
$query = &#8220;SELECT * FROM #__mytable&#8221;;
$db-&#62;setQuery( $query );
$db-&#62;query();
To retrieve 1 data from mysql use this code below:
$obj_row = $db-&#62;loadObject();
This will only return the objects. You need to use foreach to get the data.
For example:
foreach($obj_row as $a){
echo $a-&#62;id;
}
Tips: var_dump() [...]]]></description>
			<content:encoded><![CDATA[<p>Today want to show on how to manipulate data in mysql basic steps.</p>
<p><strong>Example 1</strong> (SELECT statement)</p>
<p>$db =&amp; JFactory::getDBO();<br />
$query = &#8220;SELECT * FROM #__mytable&#8221;;<br />
$db-&gt;setQuery( $query );<br />
$db-&gt;query();</p>
<p>To retrieve 1 data from mysql use this code below:</p>
<p>$obj_row = $db-&gt;loadObject();</p>
<p>This will only return the objects. You need to use foreach to get the data.</p>
<p>For example:</p>
<p>foreach($obj_row as $a){</p>
<p>echo $a-&gt;id;</p>
<p>}</p>
<p>Tips: <strong>var_dump()</strong> would be an excellent assistance to know how the raw data is stored.</p>
<p>To load the lists of data from a table,  we do not use $db-&gt;loadObject();. Instead we use $db-&gt;loadObjectList();</p>
<p><strong>Example 2</strong>: To insert/update data</p>
<p>$db =&amp; JFactory::getDBO();<br />
$query = &#8221; (update/insert mysql query statement)&#8221;;<br />
$db-&gt;setQuery( $query );<br />
$db-&gt;query();<br />
OR</p>
<p>$__data =new stdClass();<br />
$__data-&gt;id = null;<br />
$__data-&gt;field1 = var1;<br />
$__data-&gt;field2 = var2;<br />
$__data-&gt;field3 = var3;<br />
$__data-&gt;field4 = var4;<br />
$__data-&gt;field5 = var5;<br />
$db = JFactory::getDBO();</p>
<p>$db-&gt;insertObject( &#8216;#__mytable&#8217;, $__data, id );   (if you want to insert data)</p>
<p>$db-&gt;updateObject( &#8216;#__mytable&#8217;, $__data, id );   (if you want to insert data)</p>
<p>If we use insertObject/updateObject then we no need to put the mysql command, and the code would looks neater.</p>
<p>All the functions which are to manipulate data can be found in this class: JDatabase, which located at &lt;root&gt;/libraries/joomla/database/database.php</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=37</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use joomla calendar library.</title>
		<link>http://www.tanbt.com/?p=31</link>
		<comments>http://www.tanbt.com/?p=31#comments</comments>
		<pubDate>Tue, 13 Oct 2009 08:54:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/?p=31</guid>
		<description><![CDATA[Add joomla calendar from its library is pretty easy.
First of all, add this JHTML::_(&#8217;behavior.calendar&#8217;); code line in your class view (view.html.php) extends JView.
Then go to your form page include this:
&#60;input type=&#8221;text&#8221; name=&#8221;start_date&#8221; id=&#8221;start_date&#8221; size=&#8221;20&#8243; maxlength=&#8221;19&#8243; value=&#8221;" /&#62;
&#60;input type=&#8221;reset&#8221; value=&#8221;&#8230;&#8221; onclick=&#8221;return showCalendar(&#8217;start_date&#8217;,'%Y-%m-%d&#8217;);&#8221; /&#62;
Then it should be done.  
]]></description>
			<content:encoded><![CDATA[<p>Add joomla calendar from its library is pretty easy.</p>
<p>First of all, add this JHTML::_(&#8217;behavior.calendar&#8217;); code line in your class view (view.html.php) extends JView.</p>
<p>Then go to your form page include this:</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;start_date&#8221; id=&#8221;start_date&#8221; size=&#8221;20&#8243; maxlength=&#8221;19&#8243; value=&#8221;" /&gt;</p>
<p>&lt;input type=&#8221;reset&#8221; value=&#8221;&#8230;&#8221; onclick=&#8221;return showCalendar(&#8217;start_date&#8217;,'%Y-%m-%d&#8217;);&#8221; /&gt;</p>
<p>Then it should be done. <img src='http://www.tanbt.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vernessa wedding</title>
		<link>http://www.tanbt.com/?p=27</link>
		<comments>http://www.tanbt.com/?p=27#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:42:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/?p=27</guid>
		<description><![CDATA[Times flies. Vernessa&#8217;s wedding has passed. First of all, want to congrats her and thank her to give this opportunity to meet old friends again. Felt so happy. This was the perfect time for gathering for everyone. 
Meeting old friends made me felt in university life again.
The exciting and happy feeling leave so fast. 
 [...]]]></description>
			<content:encoded><![CDATA[<p>Times flies. Vernessa&#8217;s wedding has passed. First of all, want to congrats her and thank her to give this opportunity to meet old friends again. Felt so happy. This was the perfect time for gathering for everyone. </p>
<p>Meeting old friends made me felt in university life again.</p>
<p>The exciting and happy feeling leave so fast. </p>
<p> Hope to meet them again soon. <img src='http://www.tanbt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrate posts, comments, tags from blogger (ftp based) to wordpress</title>
		<link>http://www.tanbt.com/?p=15</link>
		<comments>http://www.tanbt.com/?p=15#comments</comments>
		<pubDate>Tue, 14 Jul 2009 09:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/wp/?p=15</guid>
		<description><![CDATA[Blogger is one of the popular blog publishing tool, which quite numbers of people are using it. I had been the blogger user since 2008, the first blog service I had ever used. My first impression for the blogger is good, very easy to use, especially at the beginning, when you only have a few [...]]]></description>
			<content:encoded><![CDATA[<p>Blogger is one of the popular blog publishing tool, which quite numbers of people are using it. I had been the blogger user since 2008, the first blog service I had ever used. My first impression for the blogger is good, very easy to use, especially at the beginning, when you only have a few posts.</p>
<p>Blogger generally will create the new files once you posted your subject(s).  When your posts are to begin to grow eventually, your files will be flooded in one folder. You will find hard to locate &amp; maintain your files in your folder. Therefore, I had made my mind to switch my blog tools to wordpress, which all the comments, posts, etc are manage in the database. It will be more organized.</p>
<p>However, blogger is still excellent criteria to be used for the new starters to establish their blogs.</p>
<p>Well, here is the useful steps share by benfrain and it is really helpful to me.<br />http://benfrain.com/notepad/2009/04/migrating-from-ftp-based-blogger-to-wordpress.html aaa</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UNversion your svn work</title>
		<link>http://www.tanbt.com/?p=14</link>
		<comments>http://www.tanbt.com/?p=14#comments</comments>
		<pubDate>Fri, 05 Jun 2009 07:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/wp/?p=14</guid>
		<description><![CDATA[Tips: this is mean for Tortoise svn.
Step 1: Go to your desired path folder like shown on below image.

From the icons you can see the green tick on one folder which means this folder is subversioned (svn-ed).
Step 2: Click the folders button beside the Search button. You will see the list of folders and files [...]]]></description>
			<content:encoded><![CDATA[<p>Tips: this is mean for Tortoise svn.</p>
<p>Step 1: Go to your desired path folder like shown on below image.</p>
<div style="text-align: center;"><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/image1-776559.jpg"><img style="cursor: pointer; width: 400px; height: 299px;" src="http://tanbt.com/uploaded_images/image1-776555.jpg" alt="" border="0" /></a></p>
<div style="text-align: left;">From the icons you can see the green tick on one folder which means this folder is subversioned (svn-ed).</p>
<p>Step 2: Click the folders button beside the Search button. You will see the list of folders and files listed on your left.</p>
<p>Step 3: Drag the svn folder to your directories on your left to your same folder as shown below. While drag the folder, make sure you use right-click. It will show the options. Choose the option &#8220;SVN Export versioned items here&#8221;. Then your task is already done.</p>
<div style="text-align: center;"><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/image2-715524.jpg"><img style="cursor: pointer; width: 400px; height: 304px;" src="http://tanbt.com/uploaded_images/image2-715520.jpg" alt="" border="0" /></a></div>
<p>Step 4: You can see your all hidden .svn files has already removed, which means that you already unversioned your work files.</div>
</div>
<div style="text-align: center;">
<div style="text-align: left;"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merry Christmas</title>
		<link>http://www.tanbt.com/?p=12</link>
		<comments>http://www.tanbt.com/?p=12#comments</comments>
		<pubDate>Fri, 26 Dec 2008 05:39:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/wp/?p=12</guid>
		<description><![CDATA[During Christmas Eve, after work (half day), I had strolled around Orchard in Sg to take some pictures. Before that, I was very hungry&#8230; looking for food, so find nearby food court.. after observing every stalls, I had decided to order the Seafood Spicy Spaghetti. The spaghetti looks delicious&#8230;.

Nice isn&#8217;t it?  

After finishing the [...]]]></description>
			<content:encoded><![CDATA[<p>During Christmas Eve, after work (half day), I had strolled around Orchard in Sg to take some pictures. Before that, I was very hungry&#8230; looking for food, so find nearby food court.. after observing every stalls, I had decided to order the Seafood Spicy Spaghetti. The spaghetti looks delicious&#8230;.</p>
<div style="text-align: center;"><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC240056-746953.jpg"><img style="cursor: pointer; width: 320px; height: 240px;" src="http://tanbt.com/uploaded_images/PC240056-746673.jpg" alt="" border="0" /></a></div>
<div style="text-align: center;"><span style="font-weight: bold;font-size:85%;" >Nice isn&#8217;t it? <img src='http://www.tanbt.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </span></div>
<div style="text-align: center;">
<div style="text-align: left;">After finishing the food, I started walk around the city in Orchard. Well, unsurprisingly, the city has filled with legion of people who also go there to celebrate the xmas eve. I had took some photos of the xmas decoration&#8230;&#8230;&#8230;..</p>
<div style="text-align: center;"><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC24-710409.jpg"><img style="cursor: pointer; width: 240px; height: 320px;" src="http://tanbt.com/uploaded_images/PC24-710093.jpg" alt="" border="0" /></a></div>
<div style="text-align: center;"></div>
</div>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC25-799898.jpg"><img style="cursor: pointer; width: 240px; height: 320px;" src="http://tanbt.com/uploaded_images/PC25-799519.jpg" alt="" border="0" /></a></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC240060-762910.jpg"><img style="cursor: pointer; width: 320px; height: 240px;" src="http://tanbt.com/uploaded_images/PC240060-762575.jpg" alt="" border="0" /></a></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC240065-771743.jpg"><img style="cursor: pointer; width: 320px; height: 240px;" src="http://tanbt.com/uploaded_images/PC240065-771389.jpg" alt="" border="0" /></a></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC240059-783064.jpg"><img style="cursor: pointer; width: 320px; height: 240px;" src="http://tanbt.com/uploaded_images/PC240059-782700.jpg" alt="" border="0" /></a></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tanbt.com/uploaded_images/PC240074-752971.jpg"><img style="cursor: pointer; width: 320px; height: 320px;" src="http://tanbt.com/uploaded_images/PC240074-752232.jpg" alt="" border="0" /></a><br /><span style="font-size:85%;"><span style="font-weight: bold;">Merry Christmas Everyone <img src='http://www.tanbt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></span>
<div style="text-align: left;"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Cancel Check Disk for Consistency</title>
		<link>http://www.tanbt.com/?p=10</link>
		<comments>http://www.tanbt.com/?p=10#comments</comments>
		<pubDate>Fri, 24 Oct 2008 08:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tanbt.com/wp/?p=10</guid>
		<description><![CDATA[Basically, there are 2 ways to solve this problem.
My 1st best suggestion; manually check the disk volume.
1. Start->My Computer2. Select the Drive you want to perform the check by right click, select properties.3. Choose the tools tab and then press the Check Now button.4. Check 2 checkboxes then proceed the check.5. It may take some [...]]]></description>
			<content:encoded><![CDATA[<p>Basically, there are 2 ways to solve this problem.</p>
<p>My 1st best suggestion; manually check the disk volume.</p>
<p>1. Start->My Computer<br />2. Select the Drive you want to perform the check by right click, select properties.<br />3. Choose the tools tab and then press the Check Now button.<br />4. Check 2 checkboxes then proceed the check.<br />5. It may take some minutes to be done.<br />6. Restart your computer and see if there is still got the auto check disk in windows.</p>
<p>If the 1st suggestion is not the way, there is still got another way to solve it.</p>
<p>2nd suggestion; manually cancel the auto check disk by run command.</p>
<p>1. Start-> Run&#8230;<br />2. Type this command <strong style="font-weight: normal;"><span style="font-weight: bold;">chkntfs /x c: </span>. The</strong> /x probably means cancel the desired auto check disk, where c: is the drive to be cancel the auto check disk. You will see the command prompt appear few seconds and disappear.<br />3. When it is disappear it is done.<br />4. After you perform this task, the cpu register changed. You can go to the registry editor to view by press Start-> Run&#8230; , type <span style="font-weight: bold;">regedit</span>. Then find the path HKEY_LOCAL_MACHINE\SYSTEM\CURRENTCONTROLSET\CONTROL\Session Manager.<br />5. You can see that there is the registry BootExecute changed its data to <strong><span style="font-weight: bold;">autocheck autochk /k:c *. </span><br /><span style="font-weight: normal;">6. Restart your computer and see the results.</p>
<p><span style="font-weight: bold;"></span><span style="font-weight: bold;"> </span></span></strong>Thanks to <span style="font-weight: bold;">Raymond</span> that I finally settle this problem.<br /><strong><span style="font-weight: normal;"><span style="font-weight: bold;">Reference</span>: http://www.raymond.cc/blog/archives/2008/02/23/disable-or-stop-auto-chkdsk-during-windows-startup/<br /></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tanbt.com/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
