<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2919921963438696261</id><updated>2012-02-16T19:06:28.786+08:00</updated><title type='text'>Computer Tips</title><subtitle type='html'>Computer Software, Computer Tips, Linux, Free Software &amp;amp; Anything about Computer. How to speed up your Computer using registry key. Good luck......</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2919921963438696261.post-1328622226575086749</id><published>2009-02-12T08:07:00.004+08:00</published><updated>2009-02-13T11:28:25.858+08:00</updated><title type='text'>Basic Linux Commands</title><content type='html'>TIP 1:&lt;br /&gt;All of these commands should work from your command prompt (regardless which shell you're using). Just in case some folks were not aware, you MUST press enter to invoke the command&lt;br /&gt;&lt;br /&gt;TIP 2:&lt;br /&gt;For this summary, please note that the EX: stands for example and is not part of the command. Commands are denoted in courier type font.&lt;br /&gt;&lt;br /&gt;TIP 3:&lt;br /&gt;If you need help understanding what the options are, or how to use a command, try adding this to the end of your command: --help&lt;br /&gt;&lt;br /&gt;Use &lt;span style="font-weight:bold;"&gt;cd&lt;/span&gt; to change directories:&lt;br /&gt;&lt;br /&gt;Type &lt;span style="font-weight:bold;"&gt;cd &lt;/span&gt;followed by the name of a directory to access that directory.&lt;br /&gt;Keep in mind that you are always in a directory and allowed access to any directories hierarchically above or below. Ex:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;cd&lt;/span&gt; games&lt;br /&gt;If the directory games is not located hierarchically below the current directory, then the complete path must be written out. Ex:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;cd&lt;/span&gt; /&lt;span style="font-weight:bold;"&gt;usr&lt;/span&gt;/games&lt;br /&gt;To move up one directory, use the shortcut command. Ex:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;cd&lt;/span&gt; .. &lt;br /&gt;&lt;br /&gt;Use clear to clear the command prompt:&lt;br /&gt;&lt;br /&gt;Type clear to clean up your command prompt window.&lt;br /&gt;This is especially helpful when you are typing lots of commands and need a clean window to help you focus.Ex:&lt;br /&gt;clear&lt;br /&gt;This is also useful when you are getting ready to type a rather long command and do not wish to become confused by other details on the screen.&lt;br /&gt;&lt;br /&gt;Use date to set your server's date and time:&lt;br /&gt;&lt;br /&gt;Type date followed by the two digit month, the two digit date, the two digit time, and two digit minutes. The syntax is easy enough and resembles this: &lt;span style="font-weight:bold;"&gt;MMDDhhmm&lt;/span&gt;&lt;br /&gt;This command is helpful but must be used when superuser or logged in as root. Otherwise you will get an "Operation not permitted" reply.As root user you can use the command such as:&lt;br /&gt;date 11081300&lt;br /&gt;The above command will set the server date and time to the 11th month (November), the 8th day, at 1:00pm.&lt;br /&gt;&lt;br /&gt;Use &lt;span style="font-weight:bold;"&gt;df&lt;/span&gt; to check disk space:&lt;br /&gt;&lt;br /&gt;Typing &lt;span style="font-weight:bold;"&gt;df&lt;/span&gt; provides a very quick check of your file system disk space.&lt;br /&gt;Type &lt;span style="font-weight:bold;"&gt;df&lt;/span&gt; -h to get a more easily readable version of the output. Notice that this command will include all applicable storage such as your hard disk/s (hda, hdb etc.) and your server SWAP file (shm). To list disk space including filesystem type:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;df&lt;/span&gt; -h -T.&lt;br /&gt;&lt;br /&gt;Use finger to see who's on the system:&lt;br /&gt;&lt;br /&gt;Typing finger allows you to see who else is on the system or get detailed information about a person who has access to the system.&lt;br /&gt;Type finger followed by the name of a user's account to get information about that user. Or, type finger and press enter to see who's on the system and what they are doing. Ex:&lt;br /&gt;finger johndoe.&lt;br /&gt;&lt;br /&gt;Use &lt;span style="font-weight:bold;"&gt;logout&lt;/span&gt; to quit using the system:&lt;br /&gt;&lt;br /&gt;Yep, you guessed it, typing &lt;span style="font-weight:bold;"&gt;logout&lt;/span&gt; will log your account out of the system.&lt;br /&gt;Type &lt;span style="font-weight:bold;"&gt;logout&lt;/span&gt; at the prompt to disconnect from your Linux machine or to logout a particular user session from the system. Keep in mind that although rudimentary, leaving your critical account logged on may be a security concern. We always recommend promptly using &lt;span style="font-weight:bold;"&gt;logout&lt;/span&gt; when you are finished using your root account! Ex:&lt;br /&gt;logout .&lt;br /&gt;&lt;br /&gt;Use ls  to list files and directories:&lt;br /&gt;&lt;br /&gt;Type ls  to see a list of the files and directories located in the current directory. If you’re in the directory named games  and you type ls, a list will appear that contains files in the games directory and sub-directories in the games directory. Examples:&lt;br /&gt;ls Mail&lt;br /&gt;ls /&lt;span style="font-weight:bold;"&gt;usr&lt;/span&gt;/bin&lt;br /&gt;Type ls -alt to see a list of all files (including .rc files) and all directories located in the current directory. The listing will include detailed, often useful information. Examples:&lt;br /&gt;ls -alt&lt;br /&gt;ls -alt /&lt;span style="font-weight:bold;"&gt;usr/&lt;/span&gt;bin&lt;br /&gt;If the screen flies by and you miss seeing a number of files, try using the |more at the end like:&lt;br /&gt;ls -alt |more&lt;br /&gt;&lt;br /&gt;* In Bash (Linux shell) often the abbreviated command L is available. To get a verbose listing of files and directories you could therefore simply type: l.&lt;br /&gt;&lt;br /&gt;Use man to pull up information about a Linux command:&lt;br /&gt;&lt;br /&gt;Type man followed by a command to get detailed information about how to use the command. Ex:&lt;br /&gt;man ls&lt;br /&gt;Type man -k followed by a word to list all of the commands and descriptions that contain the word you specified. Ex:&lt;br /&gt;man -k finger.&lt;br /&gt;&lt;br /&gt;Use more  to read the contents of a file:&lt;br /&gt;&lt;br /&gt;a file   Type more  followed by the name of a text file to read the file’s contents. Why do we exmphasize using this on a "text" file? Because most other types of files will look like garbage! Ex:&lt;br /&gt;more testfile.txt .&lt;br /&gt;&lt;br /&gt;Use &lt;span style="font-weight:bold;"&gt;nano&lt;/span&gt; to start a text editor:&lt;br /&gt;&lt;br /&gt;Typing &lt;span style="font-weight:bold;"&gt;nano&lt;/span&gt; will start a basic text editor on most Linux systems.&lt;br /&gt;Type nano followed by the filename you wish to edit. This basic editor is quick and easy to use for beginners. However, it is very important that you also learn about other text editors available on Linux and UNIX systems. Click on this link to learn about others like emacs, vi, and pico. Ex:&lt;br /&gt;nano /etc/security/access.conf .&lt;br /&gt;&lt;br /&gt;Use &lt;span style="font-weight:bold;"&gt;passwd&lt;/span&gt; to change your current password:&lt;br /&gt;&lt;br /&gt;Type &lt;span style="font-weight:bold;"&gt;passwd&lt;/span&gt; and press enter. You'll see the message Changing password  for yourname.&lt;br /&gt;At the Old password: prompt, type in your old password .&lt;br /&gt;Then, at the Enter new password: prompt, type in your new password .&lt;br /&gt;The system double checks your new password. Beside the Verify: prompt, type the new password and press again.&lt;br /&gt;&lt;br /&gt;Create a secure password that combines parts of words and numbers. For instance, your dog's name may be Rufus. He may have been born in 1980. Create a password that uses parts of both the name and date of birth, such as 80rufuS. Note the use of at least one capital letter. This is a fairly secure password and easy to remember. .&lt;br /&gt;&lt;br /&gt;Use &lt;span style="font-weight:bold;"&gt;pwd&lt;/span&gt; to list the name of your current directory:&lt;br /&gt;&lt;br /&gt;Type &lt;span style="font-weight:bold;"&gt;pwd &lt;/span&gt;and hit enter. You'll see the full name of the directory you are currently in. This is your directory path and is very handy. This is especially handy when you forget which directory you’ve changed to and are trying to run other commands.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2919921963438696261-1328622226575086749?l=mempaleh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.reallylinux.com/docs/basic.shtml' title='Basic Linux Commands'/><link rel='replies' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/1328622226575086749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2919921963438696261&amp;postID=1328622226575086749' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/1328622226575086749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/1328622226575086749'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/2009/02/basic-linux-commands.html' title='Basic Linux Commands'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2919921963438696261.post-716965071332486574</id><published>2007-09-14T15:48:00.001+08:00</published><updated>2009-02-13T11:29:27.293+08:00</updated><title type='text'>Reduce the size of WinXP</title><content type='html'>&lt;span style="font-family:times new roman;"&gt;1. Delete the system files' backup:sfc.exe /purgecache &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;2. Delete the system drivers' backup:Open windows\driver cache\i386, delete Driver.cab (73MB) &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;br /&gt;3. Disable System Restore&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;4. Delete Help Files (about 40MB) &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;5. Delete \WINDOWS\system32\dllcache (about 200-300MB), Here are backup dll files. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;6. Migrate My Documents &amp; IE Temporary Folder to other partition.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;7. Migrate virtual memory to other partition. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;8. Install all of the application softwares in other partition &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;9. Use NTFS File System to reduce HDD space wastage.   &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2919921963438696261-716965071332486574?l=mempaleh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/716965071332486574/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2919921963438696261&amp;postID=716965071332486574' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/716965071332486574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/716965071332486574'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/2007/09/reduce-size-of-winxp.html' title='Reduce the size of WinXP'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2919921963438696261.post-7195323549451493343</id><published>2007-09-14T15:35:00.000+08:00</published><updated>2007-09-14T15:37:57.084+08:00</updated><title type='text'>Disabling the Boot Logo</title><content type='html'>&lt;div align="justify"&gt;&lt;span style="font-family:times new roman;"&gt;You can remove the boot logo that appears when you start Windows XP. This little tweak probably shaves only a few seconds off your boot time but seconds count if you are serious about trying to get Windows XP up and running as quickly as possible. The only negative is that if you remove the boot logo, you will also not see any boot messages, such as check disk. (But if you are not having problems with your computer, this isn't such a big deal.)&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:times new roman;"&gt;To remove the boot logo, follow these steps:&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;1. Select Start/Run, type msconfig, and click OK.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;2. In the System Configuration Utility, click the BOOT.INI tab.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;3. On the BOOT.INI tab, click the NOGUIBOOT check box option. Click OK.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2919921963438696261-7195323549451493343?l=mempaleh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/7195323549451493343/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2919921963438696261&amp;postID=7195323549451493343' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/7195323549451493343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/7195323549451493343'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/2007/09/disabling-boot-logo.html' title='Disabling the Boot Logo'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2919921963438696261.post-6725380056568162853</id><published>2007-09-14T15:33:00.000+08:00</published><updated>2007-09-14T15:35:49.549+08:00</updated><title type='text'>Disabling Recent Documents History</title><content type='html'>&lt;span style="font-family:times new roman;"&gt;Windows XP includes a feature that keeps track of all recent documents you have opened or used. The idea is that you can select Start/Recent Documents History and quickly reopen any document you have recently used. I use many documents each day and never use the feature myself. In my opinion, I can keep up with what I want to use without Windows XP doing it for me.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;The bad thing about Recent Documents History is that Windows XP has to calculate what should be put there each time you boot Windows, which can slow things down. So, if you never use the Recent Documents History, it's a good idea to disable it. Here's how:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;1. Open the Registry Editor (select Start/Run, type regedit, and click OK).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;2. Navigate to HKEY_CURRENT_USER\Software\Mcft\Windows\ CurrentVersion\Policies\Explorer.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;3. Create a NoRecentDocsHistory D_WORD key. Double-click the value to open it once it is created.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;4. Set the Data Value to 1 to enable the restriction.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;5. Click OK and close the Registry Editor. You'll need to restart the computer for the change to take effect.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2919921963438696261-6725380056568162853?l=mempaleh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/6725380056568162853/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2919921963438696261&amp;postID=6725380056568162853' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/6725380056568162853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/6725380056568162853'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/2007/09/disabling-recent-documents-history.html' title='Disabling Recent Documents History'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2919921963438696261.post-6654995105163549493</id><published>2007-09-14T14:56:00.000+08:00</published><updated>2007-09-14T15:25:39.675+08:00</updated><title type='text'>Shutdown WinXp Faster</title><content type='html'>&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;span style="color:#000000;"&gt;1. Start Regedit &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;2. Navigate to HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;3. Click on the "Control" Folder &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;4. Find "WaitToKillServiceTimeout" &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:times new roman;"&gt;&lt;span style="color:#000000;"&gt;5. Select it and Modify it to a value that is lower than the default value(2000).&lt;br /&gt;     (I set mine to 400 )&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:lucida grande;"&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2919921963438696261-6654995105163549493?l=mempaleh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/6654995105163549493/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2919921963438696261&amp;postID=6654995105163549493' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/6654995105163549493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/6654995105163549493'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/2007/09/shutdown-winxp-faster.html' title='Shutdown WinXp Faster'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2919921963438696261.post-6393373159125390309</id><published>2007-09-14T14:46:00.000+08:00</published><updated>2007-09-14T15:32:15.176+08:00</updated><title type='text'>How to Boot XP faster</title><content type='html'>&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;1. Open notepad.exe, type "del c:\windows\prefetch\ntosboot-*.* /q" (without the quotes) &amp;    save as "ntosboot.bat" in c:\&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;2. From the Start menu, select "Run..." &amp; type "gpedit.msc".&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;3. Double click "Windows Settings" under "Computer Configuration" and double click again on "Shutdown" in the right window.&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;4. In the new window, click "add", "Browse", locate your "ntosboot.bat" file &amp; click "Open".&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;5. Click "OK", "Apply" &amp; "OK" once again to exit.&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;6. From the Start menu, select "Run..." &amp; type "devmgmt.msc".&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;7. Double click on "IDE ATA/ATAPI controllers".&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;8. Right click on "Primary IDE Channel" and select "Properties".&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;9. Select the "Advanced Settings" tab then on the device 0 or 1 that doesn't have 'device type' greyed out select 'none'    instead of 'autodetect' &amp; click "OK".&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;10. Right click on "Secondary IDE channel", select "Properties" and repeat step 9.&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-family:times new roman;"&gt;11. Reboot your computer.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2919921963438696261-6393373159125390309?l=mempaleh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mempaleh.blogspot.com/feeds/6393373159125390309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2919921963438696261&amp;postID=6393373159125390309' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/6393373159125390309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2919921963438696261/posts/default/6393373159125390309'/><link rel='alternate' type='text/html' href='http://mempaleh.blogspot.com/2007/09/how-to-boot-xp-faster.html' title='How to Boot XP faster'/><author><name>Mr. Too Koo</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
