<?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-4000110939734403975</id><updated>2012-02-16T19:31:33.963-08:00</updated><title type='text'>Mr.Mohan's Tips and Tricks</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>67</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6998325632152442040</id><published>2011-01-03T21:03:00.000-08:00</published><updated>2011-01-03T21:03:30.014-08:00</updated><title type='text'>How to Verify an Email Address?</title><content type='html'>&lt;strong&gt;How do you verify if a given email address is real or fake?&lt;/strong&gt; Well an obvious solution is that you send a test mail to that email address and if your message doesn’t &lt;a href="http://img.labnol.org/files/bounce-mail.pdf" target="_blank" title="Delivery Status Notification (Failure)"&gt;bounce&lt;/a&gt;, it is safe to assume* that the address is real.&lt;br /&gt;[*] Some web domains may have configured a &lt;a href="http://www.labnol.org/internet/email-aliases-in-google-apps/17870/" target="_blank"&gt;catch-all email address&lt;/a&gt; meaning that messages addressed to a non-existent mailbox will not be returned to the sender but in most cases, such email messages will bounce.&lt;br /&gt;&lt;h2&gt;Ping an Email Address to Validate it!&lt;/h2&gt;When you send an email to someone, the message goes to an SMTP server which then looks for the MX (Mail Exchange) records of the email recipient’s domain.&lt;br /&gt;For instance, when you send an email to &lt;em&gt;hello@gmail.com&lt;/em&gt;, the mail server will try to find the MX records for the gmail.com domain. If the records exist, the next step would be to determine whether that email username (&lt;em&gt;hello in our example&lt;/em&gt;) is present or not.&lt;br /&gt;Using a similar logic, we can verify an email address from the computer without actually sending a test message. Here’s how:&lt;br /&gt;Let say that we want to verify if the address &lt;strong&gt;billgates@gmail.com&lt;/strong&gt; exists or not?&lt;br /&gt;&lt;strong&gt;Step 1.&lt;/strong&gt; Enable &lt;a href="http://www.labnol.org/software/windows-telnet-command/18222/" target="_blank" title="http://www.labnol.org/software/windows-telnet-command/18222/"&gt;telnet in Windows&lt;/a&gt;. Or if you already have the PuTTY utility, skip this step.&lt;br /&gt;&lt;strong&gt;Step 2.&lt;/strong&gt; Open the command prompt and type the following command:&lt;br /&gt;&lt;pre&gt;nslookup –type=mx gmail.com&lt;/pre&gt;This command will extract and list the MX records of a domain as shown below. Replace gmail.com with the domain of the email address that you are trying to verify.&lt;br /&gt;&lt;pre&gt;gmail.com MX preference=30, exchanger = alt3.gmail-smtp-in.l.google.com&lt;br /&gt;gmail.com MX preference=20, exchanger = alt2.gmail-smtp-in.l.google.com&lt;br /&gt;gmail.com MX preference=5,  exchanger = &lt;strong&gt;gmail-smtp-in.l.google.com&lt;/strong&gt;&lt;br /&gt;gmail.com MX preference=10, exchanger = alt1.gmail-smtp-in.l.google.com&lt;br /&gt;gmail.com MX preference=40, exchanger = alt4.gmail-smtp-in.l.google.com&lt;/pre&gt;&lt;strong&gt;Step 3.&lt;/strong&gt; As you may have noticed, it is not uncommon to have multiple MX records for a domain. Pick any one of the servers mentioned in the MX records, may be the one with the lowest preference level number (in our example, gmail-smtp-in.l.google.com), and “pretend” to send a test message to that server from you computer.&lt;br /&gt;For that, go to command prompt window and type the following commands in the listed sequence:&lt;br /&gt;3a: Connect to the mail server:&lt;br /&gt;&lt;pre&gt;telnet &lt;strong&gt;gmail-smtp-in.l.google.com&lt;/strong&gt; 25&lt;/pre&gt;3b: Say hello to the other server&lt;br /&gt;&lt;pre&gt;HELO&lt;/pre&gt;3c: Identify yourself with some fictitious email address&lt;br /&gt;&lt;pre&gt;mail from:&amp;lt;labnol@labnol.org&amp;gt;&lt;/pre&gt;3d: Type the recipient’s email address that you are trying to verify:&lt;br /&gt;&lt;pre&gt;rcpt to:&amp;lt;billgates@gmail.com&amp;gt;&lt;/pre&gt;The server response for ‘rcpt to’ command will give you an idea whether an email address is valid or not. You’ll get an “OK” if the address exists else a 550 error like:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;abc@gmail.com -- &lt;em&gt;The email account that you tried to reach does not exist&lt;/em&gt;.&lt;/li&gt;&lt;li&gt;support@gmail.com -- &lt;em&gt;The email account that you tried to reach is disabled&lt;/em&gt;.&lt;/li&gt;&lt;/ul&gt;That’s it! If the address is valid, you may perform &lt;a href="http://www.labnol.org/internet/find-person-by-email-address/13913/" title="How to Find the Person behind an Email Address - Reverse Email Search"&gt;reverse email search&lt;/a&gt; to find the person behind the address. And if you get stuck somewhere, this step-by-step video should help:&lt;br /&gt;&lt;span class="youtube"&gt;&lt;br /&gt;&lt;object height="350" width="575"&gt; &lt;param name="movie" value="http://www.youtube.com/v/5ZMylpizXWY&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=0&amp;amp;fs=1&amp;amp;hl=en&amp;amp;autoplay=0&amp;amp;showinfo=0&amp;amp;iv_load_policy=3&amp;amp;showsearch=0?rel=0"/&gt;&lt;param name="allowFullScreen" value="true"/&gt;&lt;embed wmode="transparent" src="http://www.youtube.com/v/5ZMylpizXWY&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=0&amp;amp;fs=1&amp;amp;hl=en&amp;amp;autoplay=0&amp;amp;showinfo=0&amp;amp;iv_load_policy=3&amp;amp;showsearch=0?rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350"&gt;&lt;/embed&gt; &lt;param name="wmode" value="transparent"/&gt;&lt;/object&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6998325632152442040?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6998325632152442040/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2011/01/how-to-verify-email-address.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6998325632152442040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6998325632152442040'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2011/01/how-to-verify-email-address.html' title='How to Verify an Email Address?'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-5100480588721296123</id><published>2011-01-03T21:00:00.000-08:00</published><updated>2011-01-03T21:00:44.652-08:00</updated><title type='text'>How to Make your Windows Start-up Faster</title><content type='html'>&lt;img align="right" alt="Slow Windows Startup" height="128" src="http://img.labnol.org/files/windows-startup.png" width="128" /&gt;Does your Windows computer take really long to start-up?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Well, you are not alone with this problem but fortunately, with some minor tweaks, you can get your sluggish Windows to start much faster without re-installing Windows or adding any new hardware.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The logic is fairly simple. Your computer loads quite a few software programs and services during start-up (look at all the icons in your Windows System tray). If you can trim this list, your computer’s boot time will decrease.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I have been testing a free utility called Soluto and it helped &lt;strong&gt;reduce the start-up time of my Windows computer from 3.15 minutes to around 1.25 minutes&lt;/strong&gt;. All this with a few easy clicks and without confusing the user with any technical jargon.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="soluto boot problems" height="241" src="http://img.labnol.org/di/soluto_boot.png" width="540" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;After you install Soluto, it sorts your start-up programs list into three categories:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;No-brainer &lt;/strong&gt;– remove these programs from start-up with giving a second thought.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Potentially removable &lt;/strong&gt;– another list of start-up programs that may also be removed provided you know what these programs do.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Required &lt;/strong&gt;– Certain programs and services are required to run Windows properly and therefore should not be removed.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Depending upon the software app, you may then either choose “Pause” to completely remove that app from the start-up queue or choose “Delay” when you want the app to run automatically but not immediately at start-up. Soluto will launch the “delayed” app once the boot up is over and your system is idle.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can also hover the mouse over any program name and Soluto will display the number of seconds that the app adds to the start-up time. And don’t bother about making mistakes because Soluto has a useful “Undo all” feature that will restore the start-up list to the original state with a click.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="system boot time" height="150" src="http://img.labnol.org/di/boot_time.png" width="540" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Once you are done classifying your start-up programs list, reboot the computer and you should notice a difference between the start-up time.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Where to download Soluto?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The official site for Soluto is &lt;a href="http://www.soluto.com/" target="_blank"&gt;soluto.com&lt;/a&gt; but in order to download the program, you should head over to &lt;a href="http://updater.prodenv1.mysoluto.com/updates/solutoinstaller.exe" target="_blank"&gt;mysoluto.com&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Alternatives to Soluto &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you are tech-savvy, you can also use a utility like &lt;a href="http://www.labnol.org/software/tutorials/fix-slow-windows-startup-boot-process/1955/"&gt;Sysinternals Autoruns&lt;/a&gt; to manually prevent all the non-essential Windows processes and programs from running at start-up.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Just uncheck all the Autorun entries and Services that you don’t wish to load at startup and reboot your system. You’ll however need a &lt;a href="http://labnol.blogspot.com/2007/07/start-up-woes-decrease-boot-time-of.html"&gt;separate program&lt;/a&gt; to get the “delay” feature which is so handy in Solute.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="autoruns" height="226" src="http://img.labnol.org/di/autoruns.png" width="540" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-5100480588721296123?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/5100480588721296123/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2011/01/how-to-make-your-windows-start-up.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5100480588721296123'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5100480588721296123'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2011/01/how-to-make-your-windows-start-up.html' title='How to Make your Windows Start-up Faster'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7911636522878652578</id><published>2010-02-24T23:46:00.000-08:00</published><updated>2010-04-18T08:00:05.752-07:00</updated><title type='text'></title><content type='html'>&lt;script&gt;function showHide(obj){ var maindiv=obj.parentNode.parentNode.parentNode; var objDiv=document.getElementById('div1'); if(objDiv.style.display=="none")   objDiv.style.display="block"; else   objDiv.style.display="none";}&lt;/script&gt;&lt;br /&gt;&lt;h3 class='post-title entry-title'&gt;&lt;a href='javascript:void(0)' onclick='showHide(this)'&gt;Increase DSL Speed&lt;/a&gt;&lt;br /&gt;&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="display:none;" id="div1"&gt;&lt;div style="color: #444444;" &gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;This tweak is for broad  band     cable connections on stand alone machines with WinXP professional  version -     might work on Home version also. It will probably work with  networked     machines as well but I haven't tried it in that configuration. This  is for     windows XP only, it does not work on win2000.&lt;br /&gt;I use 3 Com cards so I don't know how it works on others at this  point. It     does not involve editing the registry. This tweak assumes that you  have let     WinXP create a connection on install for your cable modem/NIC  combination     and that your connection has tcp/ip - QoS - file and print sharing -  and     client for Microsoft networks , only, installed. It also assumes  that WinXP     will detect your NIC and has in-box drivers for it. If it doesn't do  not try     this.&lt;br /&gt;In the "My Network Places" properties (right click on the desktop     icon and choose properties), highlight the connection then at the  menu bar     choose "Advanced" then "Advanced Settings". Uncheck the     two boxes in the lower half for the bindings for File and Printer  sharing     and Client for MS networks. Click OK&lt;/span&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;1. From the windows  XP cd in         the support directory from the support cab, extract the file  netcap.exe         and place it in a directory on your hard drive or even in the  root of         your C:\ drive.&lt;/span&gt; &lt;span style="font-family: Tahoma; font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;2. next, open  up a command         prompt window and change directories to where you put  netcap.exe. then         type "netcap/?". It will list some commands that are available         for netcap and a netmon driver will be installed. At the bottom  you will         see your adapters. You should see two of them if using a 3Com  card. One         will be for LAN and the other will be for WAN something or  other.&lt;/span&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;3. Next type  "netcap/Remove".         This will remove the netmon driver.&lt;/span&gt;&lt;/div&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;4. Open up  control panel /         system / dev man and look at your network adapters. You should  now see         two of them and one will have a yellow ! on it. Right click on  the one         without the yellow ! and choose uninstall. YES! you are  uninstalling         your network adapter, continue with the uninstall. Do not  restart yet.&lt;/span&gt; &lt;span style="font-family: Tahoma; font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;5. Check your  connection         properties to make sure that no connection exists. If you get a  wizard         just cancel out of it.&lt;/span&gt; &lt;span style="font-family: Tahoma; font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;6. Now re-start  the machine.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;7. After  re-start go to your         connection properties again and you should have a new connection  called         "Local area connection 2". Highlight the connection then at         the menu bar choose "Advanced" then "Advanced         Settings". Uncheck the two boxes in the lower half for the  bindings         for File and Printer sharing and Client for MS networks. Click  OK.&lt;/span&gt; &lt;span style="font-family: Tahoma; font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;8. Choose  connection         properties and uncheck the "QOS" box&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;9. Re-start the  machine&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;10. After  restart enjoy the         increased responsiveness of IE, faster page loading, and a  connection         speed boost.&lt;/span&gt;&lt;br /&gt;&lt;ol style="color: #444444; font-family: Tahoma;"&gt;&lt;/ol&gt;&lt;div style="color: #444444;"&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;Why it works, it seems  that     windows XP, in its zeal to make sure every base is covered installs  two separate     versions of the NIC card. One you do not normally see in any  properties.     Remember the "netcap/?" command above showing two different     adapters? The LAN one is the one you see. The invisible one loads  everything     down and its like your running two separate cards together, sharing a     connection among two cards, this method breaks this "bond" and     allows the NIC to run un-hindered.&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7911636522878652578?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7911636522878652578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/increase-dsl-speed.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7911636522878652578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7911636522878652578'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/increase-dsl-speed.html' title=''/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-2638291958107675794</id><published>2010-02-24T23:43:00.003-08:00</published><updated>2010-07-15T10:02:42.614-07:00</updated><title type='text'>Driver Rollback Feature</title><content type='html'>Windows XP instability is  often caused by corrupt or   out-of-date  drivers. I know I like to keep my system with updated  drivers    whenever possible. But, there are times when updating the driver you   find   yourself in a blue screen. Well, this situation used to cause all  kinds  of   problems for users until the Driver Rollback Feature came.  Now, if you  are   faced with a driver that fails to update, or became  corrupt, you can  roll   back to the previous driver version very  easily. Here's how:  Be sure to log in as Administrator. Go to Start&amp;gt;&amp;gt; Control Panel&amp;gt;&amp;gt;  Administrative Tools Double click "Computer Management" Double click "Device Manager" Click the plus (+) symbol next to the device title  to   expose the  device you were trying to update Now, right click on the device and select  "Properties" Click the "Driver" tab Select the "Roll Back driver" button Follow the on-screen  instructions to complete this task.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-2638291958107675794?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/2638291958107675794/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/driver-rollback-feature.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/2638291958107675794'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/2638291958107675794'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/driver-rollback-feature.html' title='Driver Rollback Feature'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1851001508471940945</id><published>2010-02-24T23:43:00.001-08:00</published><updated>2010-02-24T23:43:11.498-08:00</updated><title type='text'>Disable certain services</title><content type='html'>&lt;span style="color: black; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif; font-size: small;"&gt;&lt;/span&gt;&lt;div style="color: black; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;span style="font-size: small;"&gt;Many of the services  provided in Windows XP are not needed and   in many cases can either slow down your system or add certain security   risks. Below, is a list of services that you can disable to create a  safer   and faster system. You can access the listed services through the  Computer   management Console:&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: black; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;span style="font-size: small;"&gt;Go to Start&amp;gt;&amp;gt; Right click My   Computer&amp;gt;&amp;gt; Select 'Manage' from the resulting menu. Then, open  Services and   Applications and click Services. Now the right pane will have all of  the   services listed in alphabetical order. To disable a service, right  click the   entry and select "Stop" from the resulting menu. If it is already  disabled,   then "Stop" will be greyed out.&lt;br /&gt;&lt;br /&gt;Note: Disable only if your computer is not networked and you are the  sole   user.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Services:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Alerter &lt;br /&gt;Clipbook &lt;br /&gt;Computer Browser &lt;br /&gt;Fast User Switching &lt;br /&gt;Human Interface Access Devices &lt;br /&gt;Indexing Service (slows the hard drive) &lt;br /&gt;Messenger &lt;br /&gt;Net Logon (not necessary unless networked on a domain) &lt;br /&gt;Netmeeting Remote Desktop Sharing (disabled for added security) &lt;br /&gt;Remote Desktop Help Session Manager (disabled for added security) &lt;br /&gt;Remote Procedure Call Locator &lt;br /&gt;Remote Registry (disabled for added security) &lt;br /&gt;Routing &amp;amp; Remote Access (disabled for added security) &lt;br /&gt;Server &lt;br /&gt;SSDP Discovery Service (this leaves TCP Port 5000 open) &lt;br /&gt;TCP/IP NetBIOS Helper &lt;br /&gt;Telnet (disabled for added security) &lt;br /&gt;Universal Plug and Play Device Host &lt;br /&gt;Upload Manager &lt;br /&gt;Windows Time &lt;br /&gt;Wireless Zero Configuration (for wireless networks) &lt;br /&gt;Workstation &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/4000110939734403975-1851001508471940945?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1851001508471940945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/disable-certain-services.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1851001508471940945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1851001508471940945'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/disable-certain-services.html' title='Disable certain services'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4625622051108853491</id><published>2010-02-24T23:26:00.001-08:00</published><updated>2010-02-24T23:26:34.476-08:00</updated><title type='text'>Clearing the Page File on Shutdown</title><content type='html'>&lt;span style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif; font-size: small;"&gt;&lt;/span&gt;&lt;div style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;span style="font-size: small;"&gt;To save on Random Access   Memory (RAM), Windows uses your Page File as a sort of cache. This can  slow   down your PC's overall performance. To remedy this situation, Windows  XP has   an option that allows users to clear the Page File when you shut down   Windows. While this tweak tends to lengthen the shutdown time, it does  have   its performance benefits. &lt;/span&gt;  &lt;/div&gt;&lt;div style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;span style="font-size: small;"&gt;To     set the computer to clear the page file without directly editing the  registry     is: &lt;/span&gt;&lt;/div&gt;&lt;ol style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Click         on the Start button         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Go         to the Control Panel         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Administrative         Tools         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Local         Security Policy         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Local         Policies         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Click         on Security Options         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Right         hand menu - right click on "Shutdown: Clear Virtual Memory  Pagefile"         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Select         "Enable"         &lt;/span&gt;       &lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;Reboot         &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div align="left" style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;span style="font-size: small;"&gt;To  clear the   page file using the &lt;a class="iAs" classname="iAs" href="http://www.5starsupport.com/xp-tips/xp-performance.htm#" itxtdid="7145673" style="background-color: transparent ! important; background-image: none; border-bottom: 0.2em dotted rgb(43, 101, 176) ! important; font-weight: normal ! important; padding-bottom: 0px ! important; padding-left: 0pt; padding-right: 0pt; padding-top: 0pt; text-decoration: none ! important;" target="_blank"&gt;Windows &lt;nobr id="itxt_nobr_59_0" style="font-weight: normal;"&gt;Registry&lt;img name="itxt-icon-0" src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" style="border: 0pt none; display: inline ! important; float: none; height: 10px; left: 1px; margin: 0pt; padding: 0pt; position: relative; top: 1px; width: 10px;" /&gt;&lt;/nobr&gt;&lt;/a&gt;:&lt;/span&gt;&lt;/div&gt;&lt;div align="left" style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;  &lt;span style="font-size: small;"&gt;Be sure to make a backup  copy of your registry prior to making any changes   to it.&lt;/span&gt;&lt;/div&gt;&lt;ol style="color: purple; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;   &lt;div align="left"&gt;&lt;span style="font-size: small;"&gt;Go to  Start&amp;gt;&amp;gt; Run. Type in: regedit [Enter] or click OK.&lt;/span&gt;   &lt;/div&gt;&lt;/li&gt;&lt;li&gt;   &lt;div align="left"&gt;&lt;span style="font-size: small;"&gt;Navigate  to the following registry key:&lt;br /&gt;&lt;br /&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session  Manager\Memory   Management &lt;br /&gt;&lt;/span&gt;   &lt;/div&gt;&lt;/li&gt;&lt;li&gt;   &lt;div align="left"&gt;&lt;span style="font-size: small;"&gt;Click  once on the entry titled: "Memory Management". Its contents will   now appear in the right pane.&lt;/span&gt;   &lt;/div&gt;&lt;/li&gt;&lt;li&gt;   &lt;div align="left"&gt;&lt;span style="font-size: small;"&gt;In the  right pane. Locate an entry titled: "ClearPageFileAtShutdown".   Right click this entry and select "Modify".&lt;/span&gt;   &lt;/div&gt;&lt;/li&gt;&lt;li&gt;   &lt;div align="left"&gt;&lt;span style="font-size: small;"&gt;Chance  the Value to "1". This will enable this feature.   &lt;/span&gt;   &lt;/div&gt;&lt;/li&gt;&lt;li&gt;   &lt;div align="left"&gt;&lt;span style="font-size: small;"&gt;Exit the  Windows Registry and reboot your system    when prompted.&lt;/span&gt;  &lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4625622051108853491?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4625622051108853491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/clearing-page-file-on-shutdown.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4625622051108853491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4625622051108853491'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/clearing-page-file-on-shutdown.html' title='Clearing the Page File on Shutdown'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1013401076556802665</id><published>2010-02-24T23:25:00.000-08:00</published><updated>2010-02-24T23:25:47.828-08:00</updated><title type='text'>Programs Running at System StartupPrograms Running at System Startup</title><content type='html'>&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="color: #666666; font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;When people write programs,  most of them design their product to  automatically launch at the systems startup. Is it really necessary for  these  programs to be running? Only key programs  such as anti-virus and firewall programs need to be running at system  startup.  The other programs should be re-configured to start only when needed. &lt;br /&gt;&lt;br /&gt;Having a lot of programs running at once is very taxing to your system  resources  and if enough of them are running can cause errors in your operating  system,  usually memory type errors. Another noticeable problem is a slowing in  your boot  process. Do you have a computer that is taking a couple of minutes to  boot up?&lt;br /&gt;&lt;br /&gt;To stop these programs from running at startup, locate the program and  re-configure it to NOT run at startup. This is usually found in the  programs  Properties. Or alternately, you can use Microsoft's System Configuration  Utility  to accomplish this. Here's how:&lt;/span&gt;&lt;/div&gt;&lt;ol style="color: #666666; font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Go to Start&amp;gt;&amp;gt;  Run. Type in: msconfig [Enter] or Click OK.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Click the Startup tab.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Uncheck any program  listed here to stop it from running.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Exit the Configuration  Utility and reboot your system.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: #f3e9cd; font-family: Tahoma; font-size: small;"&gt; &lt;img alt="Microsoft System Configuration Utility" border="0" height="376" src="http://www.5starsupport.com/images/mscu.jpg" width="572" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;span style="color: black;"&gt;Note: Make sure that you do not disable your anti-virus or firewall  software.&lt;/span&gt;&lt;br style="color: black;" /&gt; &lt;br style="color: black;" /&gt;&lt;span style="color: black;"&gt; Depending on how many you had to uncheck, you could notice much better  performance from your operating system. &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/4000110939734403975-1013401076556802665?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1013401076556802665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/programs-running-at-system.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1013401076556802665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1013401076556802665'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/programs-running-at-system.html' title='Programs Running at System StartupPrograms Running at System Startup'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1898476296532051747</id><published>2010-02-24T07:32:00.000-08:00</published><updated>2010-02-24T07:33:13.448-08:00</updated><title type='text'>Windows cannot initialize the device driver for this hardware</title><content type='html'>&lt;div style="color: #444444;"&gt;&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #444444;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;&lt;span style="font-family: Tahoma;"&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=4000110939734403975&amp;amp;postID=1898476296532051747" name="1-111"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=4000110939734403975&amp;amp;postID=1898476296532051747" name="1-111"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #444444;"&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;&lt;b&gt;Question:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Neither my CD Rom nor DVD-Rom drives show up under 'My Computer' in &lt;a class="iAs" classname="iAs" href="http://www.5starsupport.com/xp-faq/1-111.htm#" itxtdid="7145663" style="background-color: transparent ! important; background-image: none; border-bottom: 0.2em dotted rgb(43, 101, 176) ! important; font-weight: normal ! important; padding-bottom: 0px ! important; padding-left: 0pt; padding-right: 0pt; padding-top: 0pt; text-decoration: none ! important;" target="_blank"&gt;Windows &lt;nobr id="itxt_nobr_1_0" style="font-weight: normal;"&gt; Explorer&lt;img name="itxt-icon-0" src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" style="border: 0pt none; display: inline ! important; float: none; height: 10px; left: 1px; margin: 0pt; padding: 0pt; position: relative; top: 1px; width: 10px;" /&gt;&lt;/nobr&gt;&lt;/a&gt;. Attempts to run software that needs to access either drive results in  a message that says 'No CD-Rom drive detected'. In the Control  Panel/System/Hardware/Device Manager the CD and DVD drives have yellow icons  with exclamation points next to them. Clicking on 'Properties' brings up this  message: 'Windows cannot initialize the device driver for this hardware. (Code  37)'.&lt;br /&gt;&lt;br /&gt;I uninstalled and reinstalled the drivers twice. I went into set-up and switched  from auto detect to a manual setting. I even bought a new combination CD/DVD rom  drive, but the computer wouldn't detect it. In fact, it didn't even seem to be  getting power. However, when I reinstalled the old drives, they were detected  immediately and had power. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The fix involves editing the &lt;a class="iAs" classname="iAs" href="http://www.5starsupport.com/xp-faq/1-111.htm#" itxtdid="7145673" style="background-color: transparent ! important; background-image: none; border-bottom: 0.2em dotted rgb(43, 101, 176) ! important; font-weight: normal ! important; padding-bottom: 0px ! important; padding-left: 0pt; padding-right: 0pt; padding-top: 0pt; text-decoration: none ! important;" target="_blank"&gt;Windows &lt;nobr id="itxt_nobr_3_0" style="font-weight: normal;"&gt;Registry&lt;img name="itxt-icon-0" src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" style="border: 0pt none; display: inline ! important; float: none; height: 10px; left: 1px; margin: 0pt; padding: 0pt; position: relative; top: 1px; width: 10px;" /&gt;&lt;/nobr&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;WARNING:&lt;/b&gt; THE NEXT STEPS INVOLVE EDITING YOUR SYSTEM REGISTRY. WE STRONGLY RECOMMEND YOU EXPORT YOUR REGISTRY BEFORE ATTEMPTING ANY EDITING. EDITING YOUR REGISTRY INCORRECTLY CAN CAUSE IRREPARABLE SYSTEM DAMAGE. WE RECOMMEND THAT IF YOU DO NOT FEEL COMFORTABLE EDITING YOUR REGISTRY THAT YOU SKIP THE FOLLOWING STEPS.&lt;br /&gt;&lt;br /&gt;Open the Registry Editor: - Click on Start then select Run - Type in: regedit  and click OK.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&amp;lt;&amp;gt;Backup your registry by:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1. Highlight My Computer by clicking on it once.&lt;br /&gt;2. At the top of the page you should see File, click on this and then select  Export Registry File.&lt;br /&gt;3. The following screen will allow you to select where you would like to save  this backup and what file name you would like to save it as.&lt;br /&gt;Please note at the bottom of the screen where it says export range All; this  should be selected to ensure your entire registry is backed up completely.&lt;br /&gt;5. Give the File a name and click on the SAVE button (this will bring you back  to the registry editor)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&amp;lt;&amp;gt;Remove the UpperFilters and LowerFilters values by:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #444444;"&gt;&lt;span style="font-family: Tahoma; font-size: small;"&gt;1. Expand the HKEY_LOCAL_MACHINE key (looks like a folder) by double clicking it  (or clicking the + next to it.) Expand the SYSTEM Key&lt;br /&gt;2. Expand the CurrentControlSet Key&lt;br /&gt;3. Expand the Control Key&lt;br /&gt;4. Expand the Class Key&lt;br /&gt;5. Please look for a key containing the following string of letter and numbers:&lt;br /&gt;&lt;br /&gt;{4D36E965-E325-11CE-BFC1-08002BE10318}&lt;br /&gt;&lt;br /&gt;6. Highlight this key by left clicking once on it.&lt;br /&gt;7. On the right hand side you are looking for UpperFilters and LowerFilters,  once you find these please delete them - Highlight them (clicking on them once)  and then delete them by right-clicking on them and choosing delete (or pressing  Delete on your keyboard.)&lt;br /&gt;8. Close the Registry Editor, click on File and then click on Exit&lt;br /&gt;9. Restart your computer. Your CD/DVD Drives should be back and functioning.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #444444;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;&lt;span style="font-family: Tahoma;"&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=4000110939734403975&amp;amp;postID=1898476296532051747" name="1-111"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&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/4000110939734403975-1898476296532051747?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1898476296532051747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/windows-cannot-initialize-device-driver.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1898476296532051747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1898476296532051747'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/windows-cannot-initialize-device-driver.html' title='Windows cannot initialize the device driver for this hardware'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-2794955456655301614</id><published>2010-02-24T07:31:00.000-08:00</published><updated>2010-02-24T07:31:10.650-08:00</updated><title type='text'>I/O device error when trying to use your CD or DVD drive</title><content type='html'>&lt;span style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif; font-size: small;"&gt;&lt;/span&gt;&lt;div style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;Question:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;When trying to install software using my DVD-Drive, I insert the disk in to the  drive and it just spins and does nothing else. I then get an error message:&lt;br /&gt;&lt;br /&gt;"Only part of a ReadProcessMemory or WriteProcessMemory request was completed."&lt;br /&gt;&lt;br /&gt;What could be causing this and how can I fix it?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The error message is caused from Windows trying to use a transfer mode that your  CD/DVD drive cannot recognize.&lt;br /&gt;&lt;br /&gt;A more common error message that is seen when this issue arises is:&lt;br /&gt;&lt;br /&gt;"The request could not be performed because of an I/O device error."&lt;br /&gt;&lt;br /&gt;However, both error messages yield the same solution.&lt;br /&gt;&lt;br /&gt;To resolve this issue, you will need to change the transfer mode in your IDE  channel properties. Here's how:&lt;/span&gt;&lt;/div&gt;&lt;ol style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Go to Start&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Right click My Computer&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Select Manage from the resulting menu&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;In the Computer Management window, select   Device Manager&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;In the right pane, click to expand IDE ATA/ATAPI   controllers&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Identify your CD/DVD drive in the expanded   menu and right click the appropriate drive&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Select Properties&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;In the Properties windows, click the   Advanced Settings tab&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;In the Transfer Mode box that represents   your CD/DVD drive (typically Device 1), open the drop down menu and select   PIO Only&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: small;"&gt;Click OK and exit all windows.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;If this does not resolve your issue, then you  will need to go back using the above procedure and change the Device 1 in step  #9 back to "DMA if available". Then, change Device 0 to "PIO Only" in the  Transfer Mode box.&lt;br /&gt;&lt;br /&gt;Device 0: Primary IDE Channel&lt;br /&gt;Device 1: Secondary IDE Channel&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/4000110939734403975-2794955456655301614?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/2794955456655301614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/io-device-error-when-trying-to-use-your.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/2794955456655301614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/2794955456655301614'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/io-device-error-when-trying-to-use-your.html' title='I/O device error when trying to use your CD or DVD drive'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4846038590393678349</id><published>2010-02-24T07:26:00.001-08:00</published><updated>2010-02-24T07:26:57.762-08:00</updated><title type='text'>Not a valid win32 application</title><content type='html'>&lt;i style="color: #444444;"&gt;&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;/i&gt;&lt;div style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;Error message: This program   is not a valid Win32 application&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt; &lt;i&gt;&lt;span style="font-size: small;"&gt;If you receive the subject error message while trying to install a program   from a CD, this may be due to corrupt installation media or corrupt   installation files.&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;  Possible Solution:&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;Clean the installation media   (CD) and the drive. If after cleaning the problem still arises, consider   replacing the CD.&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4846038590393678349?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4846038590393678349/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/not-valid-win32-application.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4846038590393678349'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4846038590393678349'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/not-valid-win32-application.html' title='Not a valid win32 application'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4335249272161032342</id><published>2010-02-24T07:25:00.001-08:00</published><updated>2010-02-24T07:25:56.390-08:00</updated><title type='text'>Cannot access Add/Remove Window Components in Control Panel</title><content type='html'>&lt;i style="color: #444444;"&gt;&lt;span style="font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif; font-size: small;"&gt;&lt;/span&gt;&lt;/i&gt;&lt;div style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;Problem:    &lt;/span&gt;&lt;/i&gt;    &lt;/div&gt;&lt;div style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;"I get an error message:    Setup was unable to open information file netoc.inf. &amp;nbsp;Contact your    system administrator."&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;I am the sys admin.&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;Possible Solution:&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;ol style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;Insert the Windows XP       CD&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;Go to Start&amp;gt;&amp;gt; Run.       Type in: Expand C:\i386\NETOC.IN_ -rC:\Windows\Inf&amp;nbsp;&amp;nbsp; [Enter]&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="color: #444444; font-family: Georgia,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;i&gt;&lt;span style="font-size: small;"&gt;Note: C:\ is used if that is    where &lt;a class="iAs" classname="iAs" href="http://www.5starsupport.com/xp-faq/1-17.htm#" itxtdid="6666372" style="background-color: transparent ! important; background-image: none; border-bottom: 0.2em dotted rgb(43, 101, 176) ! important; font-weight: normal ! important; padding-bottom: 0px ! important; padding-left: 0pt; padding-right: 0pt; padding-top: 0pt; text-decoration: none ! important;" target="_blank"&gt;Windows &lt;nobr id="itxt_nobr_7_0" style="font-weight: normal;"&gt;XP&lt;img name="itxt-icon-0" src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" style="border: 0pt none; display: inline ! important; float: none; height: 10px; left: 1px; margin: 0pt; padding: 0pt; position: relative; top: 1px; width: 10px;" /&gt;&lt;/nobr&gt;&lt;/a&gt; is installed.&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4335249272161032342?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4335249272161032342/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/cannot-access-addremove-window.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4335249272161032342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4335249272161032342'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/cannot-access-addremove-window.html' title='Cannot access Add/Remove Window Components in Control Panel'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6011370783002489278</id><published>2010-02-24T07:23:00.001-08:00</published><updated>2010-02-24T07:24:14.792-08:00</updated><title type='text'>16 bit Windows Subsystem Error</title><content type='html'>&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;    Error Message:    &lt;/span&gt;    &lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;"C:\WINDOWS\SYSTEM32\AUTOEXEC.NT. The system file is not suitable for running MS-DOS and Microsoft Windows applications. Choose "Close" to terminate the application."&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Solution:&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Go to    Start&amp;gt;&amp;gt; Run, type in: cmd&amp;nbsp; [Enter]&lt;br /&gt;&lt;br /&gt;In the resulting command prompt window, copy the following:&lt;br /&gt;&lt;br /&gt;c:\windows\repair\autoexec.nt c:\windows\system32&lt;br /&gt;c:\windows\repair\config.nt c:\windows\system32&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;You    will need to press Enter after each line. Try to run your program. The issue should be    resolved. Additional troubleshooting information can be found in the MSKB    articles listed below:&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Error message when you    install or start an MS-DOS or 16-bit Windows-based program&lt;br /&gt;&lt;a href="http://support.microsoft.com/?kbid=324767"&gt;http://support.microsoft.com/?kbid=324767&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;How to Troubleshoot 16-Bit    Windows Programs in Windows XP&lt;br /&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;314495" target="_blank"&gt;  http://support.microsoft.com/d­efault.aspx?scid=kb;en-us;3144­95&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;"&gt;  &lt;/span&gt;    &lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;How to use the Program    Compatibility Wizard in Windows XP&lt;br /&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;324767" target="_blank"&gt;  http://support.microsoft.com/d­efault.aspx?scid=kb;en-us;3247­67&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Additional Action:&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;The likely cause of this    error message is a Trojan virus infection. The Trojan is thought to be:    TrojanDownloader.Win32.Dia.a&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Be sure to update all of your    spyware/anti-virus scanners and run complete system scans.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;Recommended Scanners:&lt;/span&gt;&lt;/div&gt;&lt;table border="0" cellpadding="4" cellspacing="0" style="color: black; font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;tbody&gt;&lt;tr&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://free.grisoft.com/freeweb.php/doc/2/"&gt;   AVG         7.0&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;Anti-Virus&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt;&lt;tr&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://www.5starsupport.com/info/virusinfo.htm#adaware"&gt;   Ad-aware         SE&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;Spyware&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt;&lt;tr&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://www.5starsupport.com/info/virusinfo.htm#spybot"&gt;   Spybot         Search &amp;amp; Destroy&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;Spyware&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt;&lt;tr&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://www.5starsupport.com/info/virusinfo.htm#cwshredder"&gt;   CWShredder&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;       &lt;td width="50%"&gt;&lt;span style="font-size: small;"&gt;Spyware&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6011370783002489278?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6011370783002489278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/16-bit-windows-subsystem-error.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6011370783002489278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6011370783002489278'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/16-bit-windows-subsystem-error.html' title='16 bit Windows Subsystem Error'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4428058911321335420</id><published>2010-02-24T07:22:00.000-08:00</published><updated>2010-02-24T07:22:25.238-08:00</updated><title type='text'>How can I recover emptied items from my recycle bin?</title><content type='html'>&lt;div style="color: #444444; font-family: Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;There is nothing within Windows that will recover a deleted file after the    recycle bin is emptied. So the use of a third party software must be used.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;  The recycle bin is essentially a holding area. People often delete files accidentally which was one of the reasons why the recycle bin was created. It gives a file and a user a second chance.&lt;br /&gt;&lt;br /&gt;When the recycle bin is emptied, the area occupied by the file or files is then marked available by the operating system. Theoretically, until the area is overwritten, the file can be recovered intact by a third party application. So, once you have discovered that you've deleted a file or files in error, you should stop writing data to your hard drive until your file or files are successfully retrieved.    &lt;/span&gt;    &lt;/div&gt;&lt;div style="color: #444444; font-family: Arial,Helvetica,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;    You can try any of the following    links for help:    &lt;/span&gt;    &lt;/div&gt;&lt;ul style="color: maroon;"&gt;&lt;li&gt;&lt;a href="http://www.execsoft.com/undelete/undelete.asp"&gt;  &lt;span style="font-family: Tahoma; font-size: x-small;"&gt;http://www.execsoft.com/undelete/undelete.asp&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www3.telus.net/mikebike/RESTORATION.html"&gt;  &lt;span style="font-family: Tahoma; font-size: x-small;"&gt;http://www3.telus.net/mikebike/RESTORATION.html&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.file-saver.com/undelete/menu.aspx?afl=7673"&gt;  &lt;span style="font-family: Tahoma; font-size: x-small;"&gt;http://www.file-saver.com/undelete/menu.aspx?afl=7673&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.recovermyfiles.com/"&gt;  &lt;span style="font-family: Tahoma; font-size: x-small;"&gt;http://www.recovermyfiles.com/&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: #f3e9cd; font-family: Tahoma; font-size: x-small;"&gt;  &lt;a href="http://www.snapfiles.com/Freeware/system/fwdatarecovery.html"&gt;  http://www.snapfiles.com/Freeware/system/fwdatarecovery.html&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: #f3e9cd; font-family: Tahoma; font-size: x-small;"&gt;  &lt;a href="http://www.diskeeper.com/downloads/menu.asp"&gt;http://www.diskeeper.com/downloads/menu.asp&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4428058911321335420?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4428058911321335420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/how-can-i-recover-emptied-items-from-my.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4428058911321335420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4428058911321335420'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/how-can-i-recover-emptied-items-from-my.html' title='How can I recover emptied items from my recycle bin?'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6275916674040298591</id><published>2010-02-24T07:20:00.000-08:00</published><updated>2010-02-24T07:20:43.896-08:00</updated><title type='text'>Corrupted or Missing \WINDOWS\SYSTEM32\CONFIG</title><content type='html'>&lt;b style="color: #444444;"&gt;&lt;span style="font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif; font-size: small;"&gt;&lt;/span&gt;&lt;/b&gt;&lt;div style="color: #444444; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;&lt;a href="" name="1-11"&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;"&gt;&lt;a href="" name="1-11"&gt; If you get the error:          &lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;&lt;i&gt;Windows could not start     because the following files is missing or corrupt&lt;br /&gt;&lt;/i&gt;\WINDOWS\SYSTEM32\CONFIG\SYSTEM or \WINDOWS\SYSTEM32\CONFIG\SOFTWARE&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol style="color: #444444; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Insert and boot from your         Windows XP CD.&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;At the first R=Repair         option, press the R key&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Press the number that         corresponds to the correct location for the installation of Windows you         want to repair.&lt;br /&gt;Typically this will be #1&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Enter in the         administrator password when requested&lt;/span&gt;&lt;span style="font-size: small;"&gt;   &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;cd \windows\system32\config&lt;/span&gt;&lt;span style="font-size: small;"&gt;   &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Depending on which         section was corrupted:&lt;br /&gt;ren software software.bad or ren system system.bad&lt;/span&gt;&lt;span style="font-size: small;"&gt;   &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Depending on which         section was corrupted&lt;br /&gt;copy \windows\repair\system&lt;br /&gt;copy \windows\repair\software&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Take out the CD ROM and         type exit&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="color: #444444; font-family: Times,&amp;quot;Times New Roman&amp;quot;,serif;"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;&lt;a href="" name="1-11"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: small;"&gt;&lt;a href="" name="1-11"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6275916674040298591?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6275916674040298591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/corrupted-or-missing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6275916674040298591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6275916674040298591'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/corrupted-or-missing.html' title='Corrupted or Missing \WINDOWS\SYSTEM32\CONFIG'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-5610494565117832180</id><published>2010-02-24T07:19:00.001-08:00</published><updated>2010-02-24T07:19:26.052-08:00</updated><title type='text'>HAL.DLL Missing or Corrupt</title><content type='html'>&lt;b style="color: black;"&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif; font-size: small;"&gt;&lt;/span&gt;&lt;/b&gt;&lt;div style="color: black; font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;If you get an error regarding a     missing or corrupt hal.dll file, it might simply be the BOOT.INI file on the     root of the C: drive that is misconfigured&lt;/span&gt;&lt;span style="font-size: small;"&gt;     &lt;/span&gt;&lt;/b&gt;     &lt;/div&gt;&lt;ol style="color: black; font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Insert and boot from your         WindowsXP CD.&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;At the first R=Repair         option, press the R key&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Press the number that         corresponds to the correct location for the installation of Windows you         want to repair.&lt;br /&gt;Typically this will be #1&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Type bootcfg /list to         show the current entries in the BOOT.INI file&lt;/span&gt;&lt;span style="font-size: small;"&gt;   &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Type bootcfg /rebuild to         repair it&lt;/span&gt;&lt;span style="font-size: small;"&gt; &lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Take out the CD ROM and         type exit&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-5610494565117832180?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/5610494565117832180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/haldll-missing-or-corrupt.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5610494565117832180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5610494565117832180'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/haldll-missing-or-corrupt.html' title='HAL.DLL Missing or Corrupt'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-2076204576302556669</id><published>2010-02-24T07:18:00.000-08:00</published><updated>2010-02-24T07:18:29.808-08:00</updated><title type='text'>NTOSKRNL Missing or Corrupt</title><content type='html'>&lt;b style="color: black;"&gt;&lt;span style="font-family: Verdana,sans-serif; font-size: small;"&gt;&lt;/span&gt;&lt;/b&gt;&lt;div style="color: black; font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;If you get an error that     NTOSKRNL not found:&lt;/span&gt;&lt;/b&gt;     &lt;/div&gt;&lt;ol style="color: black; font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Insert and boot from your         WindowsXP CD.&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;At the first R=Repair         option, press the R key&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Press the number that         corresponds to the correct location for the installation of Windows you         want to repair.&lt;br /&gt;Typically this will be #1&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Change to the drive that         has the CD ROM.&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;CD i386&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;expand ntkrnlmp.ex_         C:\Windows\System32\ntoskrnl.exe&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;If WindowsXP is installed         in a different location, just make the necessary change to &lt;i&gt;C:\Windows&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;       &lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Take out the CD ROM and         type exit&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-2076204576302556669?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/2076204576302556669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/ntoskrnl-missing-or-corrupt.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/2076204576302556669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/2076204576302556669'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/ntoskrnl-missing-or-corrupt.html' title='NTOSKRNL Missing or Corrupt'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4852732130332142886</id><published>2010-02-24T07:15:00.001-08:00</published><updated>2010-02-24T07:17:23.529-08:00</updated><title type='text'>If you get an error that NTLDR is not found during bootup</title><content type='html'>&lt;div align="left" style="color: black; font-family: Verdana,sans-serif;"&gt;     &lt;b&gt;&lt;span style="font-size: small;"&gt;If you have FAT32 partitions, it is much simpler than with NTFS.&amp;nbsp;Just boot with a Win98 floppy and copy the NTLDR or NTDETECT.COM files&amp;nbsp;from the i386 directory to the root of the C:\ drive.&lt;br /&gt;&lt;br /&gt;For NTFS:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol style="color: black; font-family: Verdana,sans-serif;"&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Insert and boot from your &lt;a class="iAs" classname="iAs" href="http://www.5starsupport.com/xp-faq/1-8.htm#" itxtdid="6666372" style="background-color: transparent ! important; background-image: none; border-bottom: 0.2em dotted rgb(43, 101, 176) ! important; font-weight: normal ! important; padding-bottom: 0px ! important; padding-left: 0pt; padding-right: 0pt; padding-top: 0pt; text-decoration: none ! important;" target="_blank"&gt;Windows &lt;nobr id="itxt_nobr_3_0" style="font-weight: normal;"&gt;XP&lt;img name="itxt-icon-0" src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" style="border: 0pt none; display: inline ! important; float: none; height: 10px; left: 1px; margin: 0pt; padding: 0pt; position: relative; top: 1px; width: 10px;" /&gt;&lt;/nobr&gt;&lt;/a&gt; CD.&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;At the first R=Repair option, press the R key&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Press the number that corresponds to the correct location for the installation of Windows you want to repair.     Typically this will be #1&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Enter in the administrator password when requested&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Enter in the following commands (X: is replaced by the actual drive letter that is assigned to the CD ROM     drive)&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul style="color: black; font-family: Verdana,sans-serif;"&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;COPY X:\i386\NTLDR C\:&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;COPY X:\i386\NTDETECT.COM C:\&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ol start="6" style="color: black; font-family: Verdana,sans-serif;"&gt;&lt;li&gt;  &lt;div align="left"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;Take out the CD and type exit &lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="color: black; font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4852732130332142886?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4852732130332142886/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/if-you-get-error-that-ntldr-is-not.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4852732130332142886'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4852732130332142886'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2010/02/if-you-get-error-that-ntldr-is-not.html' title='If you get an error that NTLDR is not found during bootup'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8031720461537612468</id><published>2009-12-21T06:13:00.000-08:00</published><updated>2009-12-21T06:15:01.667-08:00</updated><title type='text'>Windows 7 tips and tricks</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_jdDLDrHRjBk/Sy-C1n6gorI/AAAAAAAAAQw/Sl4xpN0XIkM/s1600-h/ms_win7.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 113px; height: 99px;" src="http://4.bp.blogspot.com/_jdDLDrHRjBk/Sy-C1n6gorI/AAAAAAAAAQw/Sl4xpN0XIkM/s320/ms_win7.gif" alt="" id="BLOGGER_PHOTO_ID_5417692734509064882" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Get Quick Launch toolbar back&lt;/b&gt;&lt;br /&gt;&lt;ol type="'1'"&gt;&lt;li&gt; Right-click the &lt;a id="KonaLink0" target="undefined" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.neowin.net/news/main/09/01/14/windows-7-tips-and-tricks#"&gt;&lt;span style="color: rgb(0, 150, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;color:#009600;"   &gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;taskbar&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;, choose Toolbars / New Toolbar&lt;/li&gt;&lt;li&gt;In the folder selection dialog, enter the following string and hit OK:&lt;br /&gt;    %userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch&lt;/li&gt;&lt;li&gt;Turn off the "lock the taskbar" setting, and right-click on the divider. Make sure that "Show text" and "Show title" are disabled and the view is set to "small icons".&lt;/li&gt;&lt;li&gt;Use the dividers to rearrange the toolbar ordering to choice, and then lock the taskbar again.&lt;/li&gt;&lt;/ol&gt;&lt;b&gt;&lt;a id="KonaLink1" target="undefined" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.neowin.net/news/main/09/01/14/windows-7-tips-and-tricks#"&gt;&lt;span style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;color:#009600;"   &gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;Windows &lt;/span&gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;Vista&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; taskbar&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Right-click on the taskbar and choose the properties dialog. Select the "small &lt;a id="KonaLink2" target="undefined" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.neowin.net/news/main/09/01/14/windows-7-tips-and-tricks#"&gt;&lt;span style="color: rgb(0, 150, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;color:#009600;"   &gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; font-weight: 400; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;icons&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;" checkbox and under the "taskbar buttons" setting, choose "combine when taskbar is full".&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Starting explorer from "My &lt;a id="KonaLink3" target="undefined" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.neowin.net/news/main/09/01/14/windows-7-tips-and-tricks#"&gt;&lt;span style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;color:#009600;"   &gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;Computer&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;"&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;To do this, navigate to Windows Explorer in the Start Menu (it's in the Accessories folder). Then edit the properties and change the target to read:&lt;br /&gt;%SystemRoot%\explorer.exe ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Old behaviour for &lt;a id="KonaLink4" target="undefined" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.neowin.net/news/main/09/01/14/windows-7-tips-and-tricks#"&gt;&lt;span style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;color:#009600;"   &gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;Windows &lt;/span&gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;Live &lt;/span&gt;&lt;span class="kLink" style="color: rgb(0, 150, 0) ! important; position: static;font-family:Verdana,Helvetica,Arial,sans-serif;font-size:12px;"  &gt;Messenger&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Navigate to C:\Program Files\Windows Live\Messenger\ and set the properties of msnmsgr.exe to Vista compatibility mode. This will place the Messenger icon back in your system tray and remove the 2 annoying tabs on the taskbar.&lt;br /&gt;&lt;br /&gt;If you're wondering about the fish in the Windows 7 fish then it's a &lt;a href="http://en.wikipedia.org/wiki/Betta" target="_blank"&gt;Betta Fish&lt;/a&gt; and also has 7 bubbles to signify Windows 7.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.neowin.net/images/uploaded/215509_windows-desktop.png" alt="" class="linked-image" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;Brandon Paddock has posted a full list of the Winkey combinations for Windows 7 &lt;a href="http://brandonlive.com/2009/01/10/windows-7-beta-hotkey-cheat-sheet/" target="_blank"&gt;on his blog too.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.neowin.net/images/uploaded/98_cheatsheat.png" alt="" class="linked-image" border="0" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-8031720461537612468?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8031720461537612468/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/12/windows-7-tips-and-tricks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8031720461537612468'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8031720461537612468'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/12/windows-7-tips-and-tricks.html' title='Windows 7 tips and tricks'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_jdDLDrHRjBk/Sy-C1n6gorI/AAAAAAAAAQw/Sl4xpN0XIkM/s72-c/ms_win7.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-9075637926055727020</id><published>2009-12-04T00:00:00.000-08:00</published><updated>2009-12-04T06:42:20.111-08:00</updated><title type='text'>Assign Drive Letters to your Frequently Used Folders</title><content type='html'>&lt;p&gt;If there are specific folders on your hard-drive that you access frequently, here’s a simple tip that will help you quickly reach these folders inside Windows Explorer without having to type the full folder path.&lt;/p&gt; &lt;p&gt;&lt;img style="border-width: 0px; display: inline;" title="virtual folder drives" alt="virtual folder drives" src="http://img.labnol.org/di/virtual_drives.png" width="538" border="0" height="252" /&gt;  &lt;/p&gt; &lt;p&gt;There’s an old DOS command called &lt;a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/subst.mspx" target="_blank"&gt;subst&lt;/a&gt; that you may use to assign easy-to-remember drive letters to any local folder in Windows. &lt;/p&gt; &lt;p&gt;Let’s assume that you have iTunes on your computer and it downloads all music, podcasts, movies, etc. in the following folder – C:\Users\labnol\Music\iTunes. Open the command prompt window and type the following command to associate drive "Y" with that folder.&lt;/p&gt; &lt;pre&gt;&lt;strong&gt;subst y: &lt;span style="color: rgb(0, 128, 0);"&gt;C:\Users\labnol\Music\iTunes&lt;/span&gt;&lt;/strong&gt;&lt;/pre&gt; &lt;p&gt;Now the next time you open Windows Explorer, you’ll see a new drive labeled Y: under My Computer that will directly open your iTunes folder. &lt;/p&gt; &lt;p&gt;You can repeat this process and assign different drives to all your other frequently used directories (the subst command cannot be used with mapped network folders though).&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Screencast: How to use SUBST&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;img title="SUBST Command Demo" alt="SUBST Command Demo" src="http://farm3.static.flickr.com/2747/4154830795_c7d449fbc4_o.gif" /&gt;&lt;/p&gt; &lt;p&gt;The downside is that these virtual drives are temporary and will be removed as soon as you shutdown or restart the computer. &lt;/p&gt; &lt;p&gt;In that case, you may either put all the subst commands in your autoexec.bat file or download the free &lt;a href="http://www2.alter.org.ua/en/soft/win/psubst/" target="_blank"&gt;psubst utility&lt;/a&gt; – its just like the subst command but creates permanent virtual drives that will live even after a reboot. If you find the command prompt a little geeky, check the &lt;a href="http://download.cnet.com/Visual-Subst/3000-2248_4-10598834.html" target="_blank"&gt;Visual Subst&lt;/a&gt; tool that not only adds a nice GUI to subst but also create persistent drives.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-9075637926055727020?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/9075637926055727020/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/12/assign-drive-letters-to-your-frequently.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/9075637926055727020'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/9075637926055727020'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/12/assign-drive-letters-to-your-frequently.html' title='Assign Drive Letters to your Frequently Used Folders'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-221833877964302191</id><published>2009-11-30T07:16:00.001-08:00</published><updated>2009-11-30T07:16:25.699-08:00</updated><title type='text'>FDISK Tutorial</title><content type='html'>&lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;The                            Basics of Fdisk:&lt;/span&gt;&lt;span style="font-size:100%;"&gt;                           &lt;br /&gt;                          Primary partitions are the only one that are bootable.                            They're always the C: drive when active. Normally you                            can only have one (more with some special tricks etc.)                            Extended partitions are needed when you want more than                            one partition. You can only have ONE Extended partition.                            Logical Drives come into the Extended partition. They                            are handy since you know that you can only have one                            Primary and one Extended so you can get more than only                            two partitions. They                            would be your D:, E:, etc. drives.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;First                            you need to reboot your system with the Boot Disk inserted.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;1.At                            the A: prompt start "FDISK."&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;2.If                            asked to use Large Disc support say Yes.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;3.The                            first screen looks like this:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Create                            Dos Partition or Logical Drive&lt;br /&gt;                          Set Active Partition&lt;br /&gt;                          Delete Partitions or Logical DOS Drives&lt;br /&gt;                          Display Partition Information&lt;br /&gt;                          Change current fixed drive. (In case you have two or                            more Hard Drivess)&lt;br /&gt;                          So, to prepare you hopefully did a backup from your                            data. You did, didn't you ?!&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;4.Next                            we need to remove the existing partitions. So go to                            3.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;5.Next                            screen like this:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Delete                            Primary DOS&lt;br /&gt;                          Delete Extended DOS&lt;br /&gt;                          Delete Logical Drives&lt;br /&gt;                          Delete Non-DOS&lt;br /&gt;                          Delete always in the following order&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Logical                            (All) &gt; Extended &gt; Primary (Last)&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;6.Go                            back to first screen after all partitions have been                            removed.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;7.Now                            we need to setup our new partitions. Go to 1.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;This                            screen looks like this:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Create                            Primary DOS&lt;br /&gt;                          Create Extended DOS&lt;br /&gt;                          Create Logical DOS Drives&lt;br /&gt;                          Here we create in the following order&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Primary                            &gt; Extended &gt; Logical Drives.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;8.First                            create the Primary. If asked to use all space say No                            and enter the amount you wish for the C: drive. It should                            be set automatically to be the (only) Active partition.                            If not it may ask you or you have to select "2.                            Set active partition" from the main menu.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;9.Next                            create the Extended Partition. Use all space left.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;It                            probably advances automatically to the next step, creating                            the Logical DOS Drives.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;10.Enter                            the amount you wish for the D: partition and than the                            rest for the third partition.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Think                            first about the size for the partitions.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;OK                            now we're finished with FDISK so just exit it. Next                            you need to reboot with the disc still inserted and                            Format all partitions (the C: partition might need to                            be formatted with "format c: /s", check the                            Win95 tip). Another reboot and you can go ahead and                            install  Windows.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;When                            your system supports booting from CD just insert the                            Windows CD and reboot. The setup will start.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;If                            not, follow these steps:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="left"&gt;&lt;span style="font-size:100%;"&gt;Win98:                            insert Boot Disk and CD, reboot, choose "2. boot                            with CDROM support" and once you're at the prompt                            change to your CD-drive letter (depends on your partition                            setup) and enter "setup".&lt;br /&gt;                          Win95: You must format the C: partition with "Format                            C: /s"!. Next install your CDROM driver, reboot,                            insert the Win95 CD, change to the CD-driveletter, enter                            "setup".&lt;br /&gt;                          I hope I made no mistakes.&lt;br /&gt;                          &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-221833877964302191?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/221833877964302191/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/fdisk-tutorial.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/221833877964302191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/221833877964302191'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/fdisk-tutorial.html' title='FDISK Tutorial'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8921805438798553329</id><published>2009-11-30T07:13:00.002-08:00</published><updated>2009-11-30T07:14:16.221-08:00</updated><title type='text'>Use System Restore to Undo Changes if Problems Occur</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Windows XP Professional makes it easier to resolve                            problems if they occur in your system. You can use System                            Restore to remove any system changes that were made                            since the last time you remember your computer working                            correctly. System Restore does not affect your personal                            data files (such as Microsoft Word documents, browsing                            history, drawings, favorites, or e–mail) so you won’t                            lose changes made to these files. Windows XP creates                            “restore points” every day, as well as at the time of                            significant system events (such as when an application                            or driver is installed). You can also create and name                            your own restore points at any time. Creating a restore                            point can be useful any time you anticipate making changes                            to your computer that are risky or might make your computer                            unstable. If something goes wrong, you select a restore                            point and Windows XP undoes any system changes made                            since that time.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;When                            you run System Restore, a calendar is displayed to help                            you find restore points. If you don't use your computer                            every day, some days might not have any restore points.                            If you use your computer frequently, you might have                            restore points almost every day, and some days might                            have several restore points.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;To                            create a Restore Point&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;                         &lt;div style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;1.                            Access the System Restore Wizard through Help and Support                            Center. (Click Start, and then click Help                            and Support. Click Performance and Maintenance,                            click Using System Restore to undo changes, and                            then click Run the System Restore Wizard.&lt;br /&gt;                           2. Click Create a restore point, and then                            click Next.&lt;br /&gt;                           3. In the Restore point description box,                            type a name to identify this restore point. System Restore                            automatically adds to this name the date and time that                            this Restore Point is created.&lt;br /&gt;                          &lt;/span&gt;                            &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;To                                finish creating this restore point, click Create.                               &lt;br /&gt;                                &lt;/span&gt;                             &lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;To                                cancel restore point creation and return to the                                Welcome to System Restore screen, click Back.                               &lt;br /&gt;                                &lt;/span&gt;                             &lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;To                                cancel restore point creation and exit the System                                Restore Wizard, click Cancel. &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;                           &lt;p&gt;                           &lt;span style="font-size:100%;"&gt;&lt;img alt="Create a restore point" src="http://www.freepctech.com/pc/xp/sysrestore.gif" width="365" height="269" /&gt;&lt;br /&gt;                         &lt;br /&gt;                          &lt;/span&gt; &lt;/p&gt;&lt;/div&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                            view or to return to this restore point, from the Welcome                            to System Restore screen of the System Restore Wizard                            select Restore my computer to an earlier time.                            Then select the date when the restore point was created                            from the calendar in the Select a Restore Point                            screen. All of the restore points that were created                            on the selected date are listed by name in the list                            box to the right of the calendar.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;To                            set advanced restore options&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;                         &lt;div style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;1.                            Open Backup. (Click Start, point to All Programs,                            point to Accessories, point to System Tools,                            and then click Backup.) The Backup Utility Wizard                            starts by default, unless it is disabled.&lt;br /&gt;                         &lt;br /&gt;                          2. Click                            the Advanced Mode button in the Backup Utility                            Wizard.&lt;br /&gt;                          &lt;br /&gt;                          3. Click                            the Restore and Manage Media menu and select                            the files to restore.&lt;br /&gt;                          &lt;br /&gt;                          4. Click                            the Start Restore button.&lt;br /&gt;                         &lt;br /&gt;                          5. On                            the Confirm Restore dialog box, click Advanced.                           &lt;br /&gt;                          &lt;br /&gt;                          6. Set                            the advanced restore options you want, and then click                            OK. See the Notes section for a description of                            each option. &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/4000110939734403975-8921805438798553329?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8921805438798553329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/use-system-restore-to-undo-changes-if.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8921805438798553329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8921805438798553329'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/use-system-restore-to-undo-changes-if.html' title='Use System Restore to Undo Changes if Problems Occur'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6956075190790046248</id><published>2009-11-30T07:13:00.001-08:00</published><updated>2009-11-30T07:13:26.398-08:00</updated><title type='text'>Ping</title><content type='html'>&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                           In a previous tip, it was revealed how to continuously                            ping a host until stopped. Here are all of the ping                            options: &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;example                            .. In DOS .. c:&gt;ping 192.168.0.1 -t &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-t                            Ping the specifed host until interrupted &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-a                            Resolve addresses to hostnames &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-n                            count Number of echo requests to send &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-l                            size Send buffer size &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-f                            Set Don't Fragment flag in packet &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-i                            TTL Time To Live&lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt; -v TOS Type Of Service &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-r                            count Record route for count hops &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-s                            count Timestamp for count hops &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-j                            host-list Loose source route along host-list &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-k                            host-list Strict source route along host-list &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-w                            timeout Timeout in milliseconds to wait for each reply                            &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Experiment                            to see how helpful these can be! &lt;/span&gt;&lt;/p&gt;                         &lt;/blockquote&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6956075190790046248?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6956075190790046248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/ping.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6956075190790046248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6956075190790046248'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/ping.html' title='Ping'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6991277051512148603</id><published>2009-11-30T07:11:00.000-08:00</published><updated>2009-11-30T07:12:18.445-08:00</updated><title type='text'>What are XP powerToys</title><content type='html'>&lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;PowerToys                            are additional programs that developers work on after                            the product has been released to manufacturing, but                            before the next project has begun. These toys add fun                            and functionality to the Windows experience.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;We've                            taken great care to ensure that PowerToys operate as                            they should. But please note that these programs are                            not part of Windows and are not supported by Microsoft.                            For this reason, Microsoft Technical Support is unable                            to answer questions about PowerToys&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;The                            PowerToys are installed into the directory you specify                            during setup. Typically this is the system32 directory.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                            uninstall the PowerToys, Open the control Panel. Launch                            the Add/Remove Programs control panel applet. Find the                            PowerToys for Windows XP entry, and choose Modify/Remove.                            From here you can remove specific toys or all of them.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Faster                            User Switcher&lt;br /&gt;                          Note: You cannot use this toy if fast user switching                            is not enabled.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;What                            it is: With Fast User Switching enabled on Windows XP,                            this PowerToy allows you to switch users without having                            to use the logon screen.&lt;br /&gt;                          Special requirements: This PowerToy requires a Windows                            key on your keyboard.&lt;br /&gt;                          How to use: Press the Windows key then the Q key to                            activate; release and press Q to switch to a different                            user tile, then release both Q and Windows key to switch                            to that user.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Shell Player&lt;br /&gt;                          What it is: This PowerToy plays MP3 files and WMA files                            from the taskbar.&lt;br /&gt;                          How to use: Right click on the taskbar, click toolbars,                            then click "Audio Player." If the taskbar                            is locked and you want to resize the player, you will                            have to unlock it. This will allow you to access the                            play list editor and view all the buttons.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Task Switcher&lt;br /&gt;                          What it is: Replaces the existing Alt + Tab application                            switching mechanism of Windows XP. It provides a thumbnail                            preview of windows in the task list and is compliant                            with the new Windows XP visual style.&lt;br /&gt;                          How to use: (NOTE: You must log off and then log on                            again for the changes to take effect). Use just as you                            do the existing Alt + Tab mechanism by pressing the                            Alt key and the Tab key to activate. While holding down                            the Alt key, press the Tab key to cycle through running                            applications. To move backwards, press Shift + Alt +                            Tab. Release all keys when the desired application is                            highlighted.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Open Command Window Here&lt;br /&gt;                          What it is: This PowerToy adds an "Open Command                            Window Here" context menu option on file system                            folders. This gives users a quick way to open a command                            window (cmd.exe) pointing at a selected folder in the                            Explorer UI.&lt;br /&gt;                          How to use: After installation, right click on the folder                            you would like to have a quick launch command window                            for.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Tweak                            UI&lt;br /&gt;                          What it is: Provides access to system settings that                            are not exposed in the Windows XP default user interface.&lt;br /&gt;                          How to use: Go to Start, All Programs, Accessories,                            TweakUI for Windows XP.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         PowerToy                            Calc&lt;br /&gt;                          What it is: Graphing calculator&lt;br /&gt;                          How to use: Go to Start, All Programs, Accessories,                            PowerToy Calc&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Bulk                            Resize for Photos&lt;br /&gt;                          What it is: Allows you to make a new, resized copy of                            your selected pictures in the same folder they are currently                            located in. You can opt to resize one or many pictures                            (as a batch).&lt;br /&gt;                          How to use: Right click any image(s) and select Resize                            Pictures in the context menu. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         ISO                            Image Burner&lt;br /&gt;                          What it is: Allows you to burn an ISO Image using a                            CD-ROM burner that is compatible with Windows XP&lt;br /&gt;                          How to use: Go to Start, All Programs, Accessories,                            ISO Burner&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Slide Show Generator&lt;br /&gt;                          What it is: Generate a slideshow when burning a CD&lt;br /&gt;                          How to use: Add only images to a CD-ROM using Windows                            XP Explorer, then Write these files to disk. A new task                            is presented in the wizard for generating the autorun                            for the slideshow.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Virtual                            Desktop Manager&lt;br /&gt;                          What it is: Manage up to 4 desktops from the Windows                            Shell Taskbar.&lt;br /&gt;                          How to use:Right click on the taskbar, click toolbars,                            then click "Desktop Manager." If the taskbar                            is locked and you want to resize the manager, you will                            have to unlock it. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Background                            Wallpaper switcher&lt;br /&gt;                          What it is: Allows you to switch the background image                            periodically.&lt;br /&gt;                          How to use: Access this PowerToy by right clicking the                            desktop, click properties. It has added a new tab that                            will allow you to specify the interval as well as the                            directory to obtain the images from. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Taskbar                            Magnifier&lt;br /&gt;                          What it is: Allows you to magnify part of the screen                            from the taskbar.&lt;br /&gt;                          How to use:Right click on the taskbar, click toolbars,                            then click "Taskbar Magnifier." If the taskbar                            is locked and you want to resize the magnifier, you                            will have to unlock it. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         Slide                            Show Wizard&lt;br /&gt;                          What it is: This wizard helps you create a slide show                            of your digital pictures. When you're done, you can                            put your slide show on the Web so that your family and                            friends can view it.&lt;br /&gt;                          How to use: Launch the Wizard from the Start Menu under                            All ProgramsPowertoys for Windows XPSlide Show Wizard.                            Follow the steps of the wizard to select and arrange                            your pictures, choose from a few simple options, and                            then save a Web-ready HTML slide show to a folder.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6991277051512148603?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6991277051512148603/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/what-are-xp-powertoys.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6991277051512148603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6991277051512148603'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/what-are-xp-powertoys.html' title='What are XP powerToys'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8711855426083491767</id><published>2009-11-30T07:10:00.002-08:00</published><updated>2009-11-30T07:11:42.729-08:00</updated><title type='text'>XP Animations</title><content type='html'>&lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;You                            can turn off window animation ("exploding"                            windows), displayed when you play around with minimizing/maximizing                            open windows. This makes navigating Windows 95/98/ME/NT4/2000/XP                            a lot quicker, especially if you don't have a fast video                            controller, or if you got tired of seeing it all the                            time (like I did). :)&lt;br /&gt;                          To do this, run Regedit (or Regedt32) and go to:&lt;br /&gt;                          HKEY_CURRENT_USER | Control Panel | Desktop | WindowMetrics&lt;br /&gt;                          or if you are the only user of your Windows computer                            go to:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;HKEY_USERS                          | .Default | Control                            Panel | Desktop | WindowMetrics&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt;Right-click                            on an empty spot in the right hand pane. Select New                            -&gt; String [REG_SZ] Value. Name it MinAnimate. Click                            OK. Double-click on "MinAnimate" and type                            0 to turn OFF window animation or 1 to turn it ON. Click                            OK. Close the Registry Editor and restart Windows. Done.&lt;/span&gt;&lt;/p&gt;                         &lt;span style="font-family: times new roman;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;TweakUI,                            the famous Microsoft Power Toy [110 KB, free, unsupported]                            can also turn off animated windows.&lt;br /&gt; Just remove the                            check mark from the "Window Animation" box                            under the General tab.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-8711855426083491767?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8711855426083491767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/xp-animations.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8711855426083491767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8711855426083491767'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/xp-animations.html' title='XP Animations'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1474770709904967149</id><published>2009-11-30T07:10:00.001-08:00</published><updated>2009-11-30T07:10:55.426-08:00</updated><title type='text'>XP Network Protocols</title><content type='html'>&lt;table style="font-family: times new roman;" width="98%" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Im                                  not going to explain everything about Protocols                                  that is way out of scope of this guide.&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;There                                  are three main Protocols : TCP/IP, IPX/SPX and                                  NETBEUI&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#000000;"&gt;TCP/IP                                  :&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;                               &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;Is                                  automatically installed, can't be un-installed,                                  and is used by default for all networking functions.Windows                                  XP provides one other supported protocol -- IPX/SPX                                  -- and one unsupported protocol, NetBEUI.&lt;br /&gt;                                &lt;/span&gt;&lt;/p&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;By                                  default, XP configures TCP/IP to obtain an IP                                  address automatically. If there's a DHCP server                                  on the network, it will assign the IP address                                  and other TCP/IP settings to the connection. Otherwise,                                  Windows XP will use Automatic Private IP Addressing                                  to assign an IP address to the connection. &lt;/span&gt;                                &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td align="middle"&gt;                                &lt;div align="center"&gt;                                 &lt;span style="font-size:100%;"&gt;&lt;a href="http://www.freepctech.com/www.xp-erience.org/images/network/8.gif" target="_blank"&gt;&lt;br /&gt;                                &lt;img src="http://www.freepctech.com/pc/xp/8.gif" width="150" border="0" height="169" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;                               &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;By                                  default, XP configures TCP/IP to obtain an IP                                  address automatically. If there's a DHCP server                                  on the network, it will assign the IP address                                  and other TCP/IP settings to the connection. Otherwise,                                  Windows XP will use Automatic Private IP Addressing                                  to assign an IP address to the connection.&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;This                                  default configuration should work, unchanged,                                  to connect a Windows XP computer to a network                                  that uses TCP/IP for File and Printer Sharing                                  in these common configurations:&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Using                                  an Internet sharing program or a hardware router                                  protects the local area network from access by                                  other Internet users, so it's safe to use TCP/IP                                  for File and Printer Sharing on the LAN. The computers                                  have private IP addresses that aren't accessible                                  from the Internet. No other protocol is needed.                                  &lt;/span&gt;&lt;/div&gt;                               &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;If                                  your network uses static IP addresses, click Use                                  the following IP address -- 192.168.0.3 and enter                                  the configuration information. For example, here                                  are settings for a network that uses a proxy server                                  at IP address 192.168.0.1 for Internet access.&lt;/span&gt;&lt;/p&gt;                                                            &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td align="middle"&gt;                                &lt;div align="center"&gt;                                 &lt;span style="font-size:100%;"&gt;&lt;a href="http://www.freepctech.com/www.xp-erience.org/images/network/9.gif" target="_blank"&gt;&lt;br /&gt;                                &lt;img src="http://www.freepctech.com/pc/xp/9.gif" width="150" border="0" height="169" /&gt;&lt;br /&gt;                                &lt;/a&gt;&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#000000;"&gt;IPX/SPX&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;color:#000000;"&gt;&lt;br /&gt;                               &lt;br /&gt;                                &lt;/span&gt;&lt;span style="font-size:100%;"&gt;If                                  the existing network uses IPX/SPX for File and                                  Printer Sharing, you can add that protocol to                                  the Windows XP computer. IPX/SPX is fully supported                                  in XP. In the connection's Properties, click the                                  Install button to add a network component. XP                                  will ask what type of network component to install.                                  &lt;/span&gt; &lt;/div&gt;                                                            &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td align="middle"&gt;                                &lt;div align="center"&gt;                                 &lt;span style="font-size:100%;"&gt;&lt;a href="http://www.freepctech.com/www.xp-erience.org/images/network/10.gif" target="_blank"&gt;&lt;img src="http://www.freepctech.com/pc/xp/10.gif" width="140" border="0" height="129" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;                               &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Click                                  Protocol and Add.&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td align="middle"&gt;                                &lt;div align="center"&gt;                                 &lt;span style="font-size:100%;"&gt;&lt;a href="http://www.freepctech.com/www.xp-erience.org/images/network/11.gif" target="_blank"&gt;&lt;br /&gt;                                &lt;img src="http://www.freepctech.com/pc/xp/11.gif" width="140" border="0" height="104" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;                               &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Click                                  NWLink IPX/SPX/NetBIOS Compatible Transport Protocol                                  and click OK. Two NWLink items are added to the                                  connection's Properties &lt;/span&gt; &lt;/div&gt;                                                              &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Have                                  your winXP CD handy.&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:#000000;"&gt;NetBEUI&lt;br /&gt;                                &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;NetBEUI                                  was the default protocol in Windows 95, but Microsoft                                  has been moving away from NetBEUI ever since.                                  Starting with Windows 98, TCP/IP has been the                                  default protocol, and NetBEUI has been available                                  for installation as a supported protocol. &lt;/span&gt;                                &lt;/div&gt;                               &lt;p align="center"&gt;                                &lt;/p&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Starting                                    with Windows XP, NetBEUI is unsupported. This                                    doesn't mean that NetBEUI won't work! It means                                    that: &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Microsoft                                    recommends against using it. &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;It                                    doesn't appear in the list of protocols that                                    can be installed. &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Microsoft's                                    technical support staff won't answer questions                                    about NetBEUI or help solve problems with it.                                   &lt;br /&gt;                                  Because it's been around for so long, some people                                    think that NetBEUI is required, and they install                                    it on all Windows networks. Actually, nothing                                    in Windows networking has ever required NetBEUI.                                    You can even un-install NetBEUI in Windows 95                                    and use a different protocol. &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;If                                    your existing network uses NetBEUI for File                                    and Printer Sharing, consider changing to a                                    different protocol. Most networks can safely                                    use TCP/IP. The main exceptions to this rule                                    are when: &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;All                                    of the networked computers are connected directly                                    to a cable or DSL modem and receive public IP                                    addresses from an Internet service provider.                                    &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;You've                                    separated your LAN from the Internet, but you've                                    opened ports or have placed a computer outside                                    the firewall to use certain applications or                                    services.&lt;br /&gt;                                  &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;If,                                    after considering all the options, you decide                                    to install NetBEUI on Windows XP, you can do                                    it using files on the Windows XP CD-ROM. Follow                                    the instructions in the article HOW TO:                                    &lt;a href="http://www.freepctech.com/support.microsoft.com/support/kb/articles/q301/0/41.asp" target="_blank"&gt;Install NetBEUI on Windows XP&lt;/a&gt; in the                                    Microsoft Knowledge Base. These tips will help                                    with the installation process: &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;If                                    the Welcome to Microsoft Windows XP screen appears                                    when you insert the CD-ROM, click Perform additional                                    tasks followed by Browse this CD. &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Where                                    the article refers to %SYSTEMROOT%, substitute                                    the name of the Windows XP installation folder,                                    which is typically C:Windows. &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;li&gt;                                  &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;To                                    see the hidden INF directory, go to My Computer                                    | Tools | Folder Options | View. Scroll down                                    the list of Advanced settings, and un-check                                    Hide protected operating system files.&lt;br /&gt;                                  If you have a new computer that didn't come                                    with a Windows XP CD-ROM, see if the computer                                    manufacturer will send you the CD-ROM or the                                    necessary NetBEUI files. If that isn't possible,                                    you'll have to use a different protocol on your                                    network. &lt;/span&gt; &lt;/div&gt;                                                                &lt;/li&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-1474770709904967149?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1474770709904967149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/xp-network-protocols.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1474770709904967149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1474770709904967149'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/xp-network-protocols.html' title='XP Network Protocols'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4864744991347103282</id><published>2009-11-30T07:09:00.000-08:00</published><updated>2009-11-30T07:10:06.711-08:00</updated><title type='text'>Set up and Use Internet Connection Sharing</title><content type='html'>&lt;table style="font-family: times new roman; font-weight: bold;" width="96%" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width="96%"&gt;&lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                               &lt;br /&gt;                                With Internet Connection Sharing (ICS) in Windows                                  XP, you can connect one computer to the Internet,                                  then share the Internet service with several computers                                  on your home or small office network. The Network                                  Setup Wizard in Windows XP Professional will automatically                                  provide all of the network settings you need to                                  share one Internet connection with all the computers                                  in your network. Each computer can use programs                                  such as Internet Explorer and Outlook Express                                  as if they were directly connected to the Internet.                                  &lt;/span&gt;&lt;/div&gt;                               &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;You                                  should not use this feature in an existing network                                  with Windows 2000 Server domain controllers, DNS                                  servers, gateways, DHCP servers, or systems configured                                  for static IP addresses.&lt;/span&gt;&lt;/p&gt;                                                            &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                                Enabling ICS&lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;The                                  ICS host computer needs two network connections.                                  The local area network connection, automatically                                  created by installing a network adapter, connects                                  to the computers on your home or small office                                  network. The other connection, using a 56k modem,                                  ISDN, DSL, or cable modem, connects the home or                                  small office network to the Internet. You need                                  to ensure that ICS is enabled on the connection                                  that has the Internet connection. By doing this,                                  the shared connection can connect your home or                                  small office network to the Internet, and users                                  outside your network are not at risk of receiving                                  inappropriate addresses from your network. &lt;/span&gt;                                &lt;/div&gt;                               &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;When                                  you enable ICS, the local area network connection                                  to the home or small office network is given a                                  new static IP address and configuration. Consequently,                                  TCP/IP connections established between any home                                  or small office computer and the ICS host computer                                  at the time of enabling ICS are lost and need                                  to be reestablished. For example, if Internet                                  Explorer is connecting to a Web site when Internet                                  Connection Sharing is enabled, refresh the browser                                  to reestablish the connection. You must configure                                  client machines on your home or small office network                                  so TCP/IP on the local area connection obtains                                  an IP address automatically. Home or small office                                  network users must also configure Internet options                                  for Internet Connection Sharing. To enable Internet                                  Connection Sharing (ICS) Discovery and Control                                  on Windows 98, Windows 98 Second Edition, and                                  Windows Millennium Edition computers, run the                                  Network Setup Wizard from the CD or floppy disk                                  on these computers. For ICS Discovery and Control                                  to work on Windows 98, Windows 98 Second Edition,                                  and Windows Millennium Edition computers, Internet                                  Explorer version 5.0 or later must be installed.&lt;/span&gt;&lt;/p&gt;                                                            &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                                                                  To enable Internet Connection Sharing on a network                                  connection &lt;/span&gt; &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;You                                  must be logged on to your computer with an owner                                  account in order to complete this procedure. &lt;/span&gt;                                &lt;/div&gt;                               &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;Open                                  Network Connections. (Click Start, click Control                                  Panel, and then double–click Network Connections.)                                 &lt;br /&gt;                               &lt;br /&gt;                                Click the dial–up, local area network, PPPoE,                                  or VPN connection you want to share, and then,                                  under Network Tasks, click Change settings of                                  this connection.&lt;br /&gt;                               &lt;br /&gt;                                On the Advanced tab, select the Allow other network                                  users to connect through this computer's Internet                                  connection check box.&lt;br /&gt;                                If you want this connection to dial automatically                                  when another computer on your home or small office                                  network attempts to access external resources,                                  select the Establish a dial–up connection whenever                                  a computer on my network attempts to access the                                  Internet check box.&lt;br /&gt;                               &lt;br /&gt;                                If you want other network users to enable or disable                                  the shared Internet connection, select the Allow                                  other network users to control or disable the                                  shared Internet connection check box.&lt;br /&gt;                               &lt;br /&gt;                                Under Internet Connection Sharing, in Home networking                                  connection, select any adapter that connects the                                  computer sharing its Internet connection to the                                  other computers on your network. The Home networking                                  connection is only present when two or more network                                  adapters are installed on the computer.&lt;br /&gt;                                &lt;/span&gt; &lt;/p&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;To                                  configure Internet options on your client computers                                  for Internet Connection Sharing &lt;/span&gt; &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;Open                                  Internet Explorer. Click Start, point to All Programs,                                  and then click Internet Explorer.)&lt;br /&gt;                               &lt;br /&gt;                                On the Tools menu, click Internet Options.&lt;br /&gt;                               &lt;br /&gt;                                &lt;img src="http://www.freepctech.com/pc/xp/icsconnections.gif" width="384" height="339" /&gt;&lt;br /&gt;                               &lt;br /&gt;                                On the Connections tab, click Never dial a connection,                                  and then click LAN Settings.&lt;br /&gt;                                &lt;/span&gt; &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                           &lt;tr&gt;                              &lt;td width="96%"&gt;                                &lt;div align="center"&gt;&lt;span style="font-size:100%;"&gt;In                                  Automatic configuration, clear the Automatically                                  detect settings and Use automatic configuration                                  script check boxes.&lt;br /&gt;                               &lt;br /&gt;                                In Proxy Server, clear the Use a proxy server                                  check box.&lt;br /&gt;                                &lt;/span&gt; &lt;/div&gt;                             &lt;/td&gt;                           &lt;/tr&gt;                         &lt;/tbody&gt;&lt;/table&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4864744991347103282?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4864744991347103282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-up-and-use-internet-connection.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4864744991347103282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4864744991347103282'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-up-and-use-internet-connection.html' title='Set up and Use Internet Connection Sharing'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7740477533825314654</id><published>2009-11-30T07:08:00.001-08:00</published><updated>2009-11-30T07:08:17.776-08:00</updated><title type='text'>Where has Scan Disk Gone</title><content type='html'>&lt;blockquote style="font-weight: bold; font-family: times new roman;"&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                           Scandisk is not a part of Windows XP - instead you get                            the improved CHKDSK. You can use the Error-checking                            tool to check for file system errors and bad sectors                            on your hard disk.&lt;br /&gt;                         &lt;br /&gt;                          1: Open My Computer, and then select the local disk                            you want to check.&lt;br /&gt;                          2: On the File menu, click Properties.&lt;br /&gt;                          3: On the Tools tab, under Error-checking, click Check                            Now.&lt;br /&gt;                          4: Under Check disk options, select the Scan for and                            attempt recovery of bad sectors check box.&lt;br /&gt;                          · All files must be closed for this process to                            run. If the volume is currently in use, a message box                            will appear prompting you to indicate whether or not                            you want to reschedule the disk checking for the next                            time you restart your system. Then, the next time you                            restart your system, disk checking will run. Your volume                            will not be available to perform other tasks while this                            process is running.&lt;br /&gt;                          · If your volume is formatted as NTFS, Windows                            automatically logs all file transactions, replaces bad                            clusters, and stores copies of key information for all                            files on the NTFS volume. &lt;/span&gt;&lt;/p&gt; &lt;/blockquote&gt;                         &lt;p style="font-weight: bold; font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7740477533825314654?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7740477533825314654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/where-has-scan-disk-gone.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7740477533825314654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7740477533825314654'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/where-has-scan-disk-gone.html' title='Where has Scan Disk Gone'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-886046329958181146</id><published>2009-11-30T07:07:00.001-08:00</published><updated>2009-11-30T07:07:52.386-08:00</updated><title type='text'>Keyboard Shortcuts</title><content type='html'>&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                           When speed counts, the keyboard is still king. Almost                            all the actions and commands you can perform with a                            mouse you can perform faster using combinations of keys                            on your keyboard. These simple keyboard shortcuts can                            get you where you want to go faster than several clicks                            of a mouse. You'll work faster on spreadsheets and similar                            documents, too, because you won't lose your place switching                            back and forth between mouse and keys.&lt;br /&gt;                         &lt;br /&gt;                          Here are some of the most useful keyboard shortcuts:&lt;br /&gt;                                                    &lt;br /&gt;                          Copy. CTRL+C&lt;br /&gt;                          Cut. CTRL+X&lt;br /&gt;                          Paste. CTRL+V&lt;br /&gt;                          Undo. CTRL+Z&lt;br /&gt;                          Delete. DELETE&lt;br /&gt;                         &lt;br /&gt;                          Delete selected item permanently without placing the                            item in the Recycle Bin. SHIFT+DELETE&lt;br /&gt;                          Copy selected item. CTRL while dragging an item&lt;br /&gt;                          Create shortcut to selected item. CTRL+SHIFT while dragging                            an item&lt;br /&gt;                          Rename selected item. F2&lt;br /&gt;                          Move the insertion point to the beginning of the next                            word. CTRL+RIGHT ARROW&lt;br /&gt;                          Move the insertion point to the beginning of the previous                            word. CTRL+LEFT ARROW&lt;br /&gt;                          Move the insertion point to the beginning of the next                            paragraph. CTRL+DOWN ARROW&lt;br /&gt;                          Move the insertion point to the beginning of the previous                            paragraph. CTRL+UP ARROW&lt;br /&gt;                          Highlight a block of text. CTRL+SHIFT with any of the                            arrow keys&lt;br /&gt;                          Select more than one item in a window or on the desktop,                            or select text within a document. SHIFT with any of                            the arrow keys&lt;br /&gt;                          Select all. CTRL+A&lt;br /&gt;                          Search for a file or folder. F3&lt;br /&gt;                          View properties for the selected item. ALT+ENTER&lt;br /&gt;                          Close the active item, or quit the active program. ALT+F4                           &lt;br /&gt;                          Opens the shortcut menu for the active window. ALT+SPACEBAR                           &lt;br /&gt;                          Close the active document in programs that allow you                            to have multiple documents open simultaneously. CTRL+F4                           &lt;br /&gt;                          Switch between open items. ALT+TAB&lt;br /&gt;                          Cycle through items in the order they were opened. ALT+ESC                           &lt;br /&gt;                          Cycle through screen elements in a window or on the                            desktop. F6&lt;br /&gt;                          Display the Address bar list in My Computer or Windows                            Explorer. F4&lt;br /&gt;                          Display the shortcut menu for the selected item. SHIFT+F10                           &lt;br /&gt;                          Display the System menu for the active window. ALT+SPACEBAR                           &lt;br /&gt;                          Display the Start menu. CTRL+ESC&lt;br /&gt;                          Display the corresponding menu. ALT+Underlined letter                            in a menu name&lt;br /&gt;                          Carry out the corresponding command. Underlined letter                            in a command name on an open menu&lt;br /&gt;                          Activate the menu bar in the active program. F10&lt;br /&gt;                          Open the next menu to the right, or open a submenu.                            RIGHT ARROW&lt;br /&gt;                          Open the next menu to the left, or close a submenu.                            LEFT ARROW&lt;br /&gt;                          Refresh the active window. F5&lt;br /&gt;                          View the folder one level up in My Computer or Windows                            Explorer. BACKSPACE&lt;br /&gt;                          Cancel the current task. ESC&lt;br /&gt;                          SHIFT when you insert a CD into the CD-ROM drive Prevent                            the CD from automatically playing.&lt;br /&gt;                           &lt;/span&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;   Use these keyboard shortcuts for dialog boxes:&lt;br /&gt;                         &lt;br /&gt;                          Move forward through tabs. CTRL+TAB&lt;br /&gt;                          Move backward through tabs. CTRL+SHIFT+TAB&lt;br /&gt;                          Move forward through options. TAB&lt;br /&gt;                          Move backward through options. SHIFT+TAB&lt;br /&gt;                          Carry out the corresponding command or select the corresponding                            option. ALT+Underlined letter&lt;br /&gt;                          Carry out the command for the active option or button.                            ENTER&lt;br /&gt;                          Select or clear the check box if the active option is                            a check box. SPACEBAR&lt;br /&gt;                          Select a button if the active option is a group of option                            buttons. Arrow keys&lt;br /&gt;                          Display Help. F1&lt;br /&gt;                          Display the items in the active list. F4&lt;br /&gt;                          Open a folder one level up if a folder is selected in                            the Save As or Open dialog box. BACKSPACE&lt;br /&gt;                         &lt;br /&gt;                          If you have a Microsoft Natural Keyboard, or any other                            compatible keyboard that includes the Windows logo key                            and the Application key , you can use these keyboard                            shortcuts:&lt;br /&gt;                         &lt;br /&gt;                          Display or hide the Start menu.&lt;br /&gt;                          Display the System Properties dialog box. +BREAK&lt;br /&gt;                          Show the desktop. +D&lt;br /&gt;                          Minimize all windows. +M&lt;br /&gt;                          Restores minimized windows. +Shift+M&lt;br /&gt;                          Open My Computer. +E&lt;br /&gt;                          Search for a file or folder. +F&lt;br /&gt;                          Search for computers. CTRL+ +F&lt;br /&gt;                          Display Windows Help. +F1&lt;br /&gt;                          Lock your computer if you are connected to a network                            domain, or switch users if you are not connected to                            a network domain. + L&lt;br /&gt;                          Open the Run dialog box. +R&lt;br /&gt;                          Display the shortcut menu for the selected item.&lt;br /&gt;                          Open Utility Manager. +U&lt;br /&gt;                           &lt;/span&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;   Helpful accessibility keyboard shortcuts:&lt;br /&gt;                         &lt;br /&gt;                          Switch FilterKeys on and off. Right SHIFT for eight                            seconds&lt;br /&gt;                          Switch High Contrast on and off. Left ALT +left SHIFT                            +PRINT SCREEN&lt;br /&gt;                          Switch MouseKeys on and off. Left ALT +left SHIFT +NUM                            LOCK&lt;br /&gt;                          Switch StickyKeys on and off. SHIFT five times&lt;br /&gt;                          Switch ToggleKeys on and off. NUM LOCK for five seconds                           &lt;br /&gt;                          Open Utility Manager. +U&lt;br /&gt;                         &lt;br /&gt;                          Keyboard shortcuts you can use with Windows Explorer:&lt;br /&gt; &lt;br /&gt;                          Display the bottom of the active window. END&lt;br /&gt;                          Display the top of the active window. HOME&lt;br /&gt;                          Display all subfolders under the selected folder. NUM                            LOCK+ASTERISK on numeric keypad (*)&lt;br /&gt;                          Display the contents of the selected folder. NUM LOCK+PLUS                            SIGN on numeric keypad (+)&lt;br /&gt;                          Collapse the selected folder. NUM LOCK+MINUS SIGN on                            numeric keypad (-)&lt;br /&gt;                          Collapse current selection if it's expanded, or select                            parent folder. LEFT ARROW&lt;br /&gt;                          Display current selection if it's collapsed, or select                            first subfolder. RIGHT ARROW                           &lt;/span&gt; &lt;/p&gt; &lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-886046329958181146?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/886046329958181146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/keyboard-shortcuts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/886046329958181146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/886046329958181146'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/keyboard-shortcuts.html' title='Keyboard Shortcuts'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6141947519763281749</id><published>2009-11-30T07:06:00.001-08:00</published><updated>2009-11-30T07:06:44.548-08:00</updated><title type='text'>Disable Error Reporting</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;1. Open Control Panel&lt;br /&gt;                          2. Click on Performance and Maintenance.&lt;br /&gt;                          3. Click on System.&lt;br /&gt;                          4. Then click on the Advanced tab&lt;br /&gt;                          5. Click on the error-reporting button on the bottom                            of the windows.&lt;br /&gt;                          6. Select Disable error reporting.&lt;br /&gt;                          7. Click OK&lt;br /&gt;                          8. Click OK                           &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6141947519763281749?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6141947519763281749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/disable-error-reporting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6141947519763281749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6141947519763281749'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/disable-error-reporting.html' title='Disable Error Reporting'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-3504820069814941074</id><published>2009-11-30T07:05:00.000-08:00</published><updated>2009-11-30T07:06:14.862-08:00</updated><title type='text'>WinXP Clear Page file on shutdown</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;Go to Control panel Administrative tools, local security                            policy. then goto local policies ---&gt; security options.&lt;br /&gt;                          Then change the option for "Shutdown: Clear Virtual                            Memory Pagefile"                           &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-3504820069814941074?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/3504820069814941074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/winxp-clear-page-file-on-shutdown.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3504820069814941074'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3504820069814941074'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/winxp-clear-page-file-on-shutdown.html' title='WinXP Clear Page file on shutdown'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6871602864255224526</id><published>2009-11-30T07:04:00.002-08:00</published><updated>2009-11-30T07:05:47.797-08:00</updated><title type='text'>Win XP Won’t Completely Shutdown</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;&lt;br /&gt;                          - Goto Control Panel, then goto Power Options.&lt;br /&gt;                          - Click on the APM Tab, then check the "Enable                            Advanced Power Management support."&lt;br /&gt;                          - Shut down your PC. It should now successfully complete                            the Shut Down process. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6871602864255224526?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6871602864255224526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/win-xp-wont-completely-shutdown.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6871602864255224526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6871602864255224526'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/win-xp-wont-completely-shutdown.html' title='Win XP Won’t Completely Shutdown'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6417999818592680935</id><published>2009-11-30T07:04:00.001-08:00</published><updated>2009-11-30T07:04:53.327-08:00</updated><title type='text'>Reduce Temporary Internet F ile Space</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          The temporary internet files clutter your hard drive                            with copies of each page visited. These can build up                            over time and take up disk space. Even more bothersome                            is that instead of getting new pages each time IE often                            takes the page out the temp internet files. This can                            be a problem if you are viewing a website that is updated                            all the time. If you are on a slow connection such as                            a 56K or lower then this can be good but if you are                            on a fast broadband connection, like me, then you can                            get away with decreasing the size of your temp internet                            files to just one meg without any performance decrease.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;Launch                            Internet Explorer.&lt;br /&gt;                          Select the Tools from the menu bar.&lt;br /&gt;                          Then select Internet Options... from the drop down menu.&lt;br /&gt;                          Once the internet options has loaded click on the general                            tab.&lt;br /&gt;                          Under the temporary internet files section click the                            settings button.&lt;br /&gt;                          A settings window will load. Slide the slider all the                            way to the left so the size indicated in the text box                            on the right is one.&lt;br /&gt;                          Click OK&lt;br /&gt;                          Click Ok&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6417999818592680935?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6417999818592680935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/reduce-temporary-internet-f-ile-space.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6417999818592680935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6417999818592680935'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/reduce-temporary-internet-f-ile-space.html' title='Reduce Temporary Internet F ile Space'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4258885948099261193</id><published>2009-11-30T07:03:00.000-08:00</published><updated>2009-11-30T07:04:23.320-08:00</updated><title type='text'>Change the text in Internet Explorers title bar to anything you want</title><content type='html'>&lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:130%;"&gt;In                            regedit navigate to this key:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:130%;"&gt;HKEY_CURRENT_USERSoftwareMicrosoftInternet                            ExplorerMain&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:130%;"&gt;change                            the value of the string "Window Title" to                            whatever you want on the title bar of Internet Explorer                            - to have no title except the title of the web pages                            you are browsing do not enter anything for a value.                           &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman;" align="center"&gt;&lt;span style="font-size:130%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4258885948099261193?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4258885948099261193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/change-text-in-internet-explorers-title.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4258885948099261193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4258885948099261193'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/change-text-in-internet-explorers-title.html' title='Change the text in Internet Explorers title bar to anything you want'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8690986314822355379</id><published>2009-11-30T07:02:00.002-08:00</published><updated>2009-11-30T07:03:32.139-08:00</updated><title type='text'></title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;How                            to create a boot disk&lt;br /&gt;                         &lt;br /&gt;                          This is quite simple.&lt;br /&gt;                          1: Go into MY COMPUTER&lt;br /&gt;                          2: Have a floppy disk in your drive and then RIGHT click                            on on the floppy drive and then click on FORMAT&lt;br /&gt;                          3: You will be greeted with a number of options. The                            one you need to select is "Create an MS-DOS start                            up disk".&lt;br /&gt;                          4: Click ok&lt;br /&gt;                         &lt;br /&gt;                          &lt;img src="http://www.freepctech.com/pc/xp/tip022.jpg" width="298" border="0" height="492" /&gt;&lt;br /&gt;                         &lt;br /&gt;                          Note: This requires up to 5 floppy disks and DOES NOT                            contain ANY CD-ROM drivers to boot from. A proper CD-ROM                            boot up disk is going to be release by Microsoft after                            the Windows XP public release. You can however use you                            old Windows Me start-up disk if you would prefer, as                            long as you have not upgraded to an NTFS drive.&lt;/span&gt;&lt;/p&gt; &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;a target="_blank" href="http://www.freepctech.com/pc/002/files010.shtml"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-8690986314822355379?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8690986314822355379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-create-boot-disk-this-is-quite.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8690986314822355379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8690986314822355379'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-create-boot-disk-this-is-quite.html' title=''/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6531788328043292670</id><published>2009-11-30T07:02:00.001-08:00</published><updated>2009-11-30T07:02:36.939-08:00</updated><title type='text'>How To Enable Hibernation</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Under Windows 98, Me, or 2000 there was an option in                            the shutdown dialog box to enter the computer into hibernation                            (where all the content of the RAM is copied to the hard                            disk). The shutdown dialog box of Windows XP doesn't                            offer any longer the hibernation button. Some users                            may get confused about how to enable the hibernation                            mode. If this mode is supported by your motherboard                            (ACPI) you have to do the following:&lt;/span&gt;&lt;/p&gt; &lt;ol style="font-size: 8pt; font-weight: bold; font-family: times new roman;"&gt;&lt;li&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Click Start and Shut Down,&lt;/span&gt;   &lt;/p&gt;&lt;/li&gt;&lt;li&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Point the standby button and maintain the shift key                            pushed,&lt;/span&gt;   &lt;/p&gt;&lt;/li&gt;&lt;li&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;A    new hibernation button appears: click it while still holding the shift key:    voila your PC will hibernate.&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6531788328043292670?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6531788328043292670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-enable-hibernation.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6531788328043292670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6531788328043292670'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-enable-hibernation.html' title='How To Enable Hibernation'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-800412895965619510</id><published>2009-11-30T07:01:00.000-08:00</published><updated>2009-11-30T07:02:02.655-08:00</updated><title type='text'>On Screen Keyboard</title><content type='html'>&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;   &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;Want to use an on screen keyboard? Well it is this simple                            - Click on the start button and select run. Then type                            in osk in the box and click OK.&lt;/span&gt;&lt;/p&gt; &lt;/blockquote&gt; &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;img src="http://www.freepctech.com/pc/xp/tip019.gif" width="612" border="0" height="195" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-800412895965619510?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/800412895965619510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/on-screen-keyboard.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/800412895965619510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/800412895965619510'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/on-screen-keyboard.html' title='On Screen Keyboard'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8893377449499430061</id><published>2009-11-30T07:00:00.002-08:00</published><updated>2009-11-30T07:01:11.857-08:00</updated><title type='text'>My Computer Won't Shut Down Itself After Installing XP</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;There are a number of users who are noticing that their                            PC will no longer automatically power down/shut off                            without pressing the power off button on the computers                            unlike in Windows Me/95/2000. There could be a number                            of reasons for this - but the main one seems to be that                            ACPI is not enabled on the computer or in Windows XP.                            Here is how to try that out:&lt;/span&gt;&lt;/p&gt; &lt;ol style="font-size: 8pt; font-weight: bold; font-family: times new roman;"&gt;&lt;li&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Click - Start - Control Panel - Performance and Maintenance                            - Power Options Tab&lt;/span&gt;   &lt;/p&gt;&lt;/li&gt;&lt;li&gt;   &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Then click APM - Enable Advanced Power Management                            Support&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-8893377449499430061?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8893377449499430061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/my-computer-wont-shut-down-itself-after.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8893377449499430061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8893377449499430061'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/my-computer-wont-shut-down-itself-after.html' title='My Computer Won&apos;t Shut Down Itself After Installing XP'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4120721214632940876</id><published>2009-11-30T07:00:00.001-08:00</published><updated>2009-11-30T07:00:39.983-08:00</updated><title type='text'>To change drive letters</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                            change drive letters (useful if you have two drives                            and have partitioned the boot drive, but the secondary                            drive shows up as "D")&lt;br /&gt;                         &lt;br /&gt;                          Go to Start &gt; Control Panel &gt; Administrative Tools                            &gt; Computer Management, Disk Management, then right-click                            the partition whose name you want to change (click in                            the white area just below the word "Volume")                            and select "change drive letter and paths."                           &lt;br /&gt;                          From here you can add, remove or change drive letters                            and paths to the partition.                           &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4120721214632940876?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4120721214632940876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/to-change-drive-letters.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4120721214632940876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4120721214632940876'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/to-change-drive-letters.html' title='To change drive letters'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1993936887515240636</id><published>2009-11-30T06:59:00.001-08:00</published><updated>2009-11-30T07:00:15.982-08:00</updated><title type='text'>Licensing Issues</title><content type='html'>&lt;blockquote  style="font-weight: bold;font-family:times new roman;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Here you can find a Description of the things which                            are done by the Program or you can manually change the                            following settings to have the same effect:&lt;/span&gt;&lt;/p&gt;                         &lt;/blockquote&gt; &lt;ul  style="font-weight: bold;font-family:times new roman;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            MediaPlayer: Don't Acquire licenses automatically - Open                            the MediaPlayer-Extras - Options... Click the tab 'Player',                            look at the groupbox 'Internetsettings' and uncheck                            'Acquire licenses automatically'.&lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            MediaPlayer: No identification by internetsites - Open                            the MediaPlayer-Extras-Options... Click the tab ‘Player’,                            look at the groupbox 'Internet settings' and uncheck                            'Allow identification by internet sites'&lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            MediaPlayer: don't download codecs automatically - Open                            the MediaPlayer-Extras-Options... Click the tab 'Player',                            look at the groupbox 'Automatic Updates' and uncheck                            'Download Codecs Automatically' &lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            Error report: Don't report errors - Open the Explorer,                            right-click on 'My Computer' and select 'Properties',                            click on the Tab 'Advanced' and click the button 'Errorreports',                            in the upcoming dialog uncheck all 3 items and select                            'Disable Errorreports'&lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;/ul&gt; &lt;p  style="font-weight: bold;font-family:times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-1993936887515240636?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1993936887515240636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/licensing-issues_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1993936887515240636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1993936887515240636'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/licensing-issues_30.html' title='Licensing Issues'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8837401306289924673</id><published>2009-11-30T06:59:00.000-08:00</published><updated>2009-11-30T07:00:04.520-08:00</updated><title type='text'>Licensing Issues</title><content type='html'>&lt;blockquote style="font-weight: bold; font-family: times new roman;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Here you can find a Description of the things which                            are done by the Program or you can manually change the                            following settings to have the same effect:&lt;/span&gt;&lt;/p&gt;                         &lt;/blockquote&gt; &lt;ul style="font-weight: bold; font-family: times new roman;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            MediaPlayer: Don't Acquire licenses automatically - Open                            the MediaPlayer-Extras - Options... Click the tab 'Player',                            look at the groupbox 'Internetsettings' and uncheck                            'Acquire licenses automatically'.&lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            MediaPlayer: No identification by internetsites - Open                            the MediaPlayer-Extras-Options... Click the tab ‘Player’,                            look at the groupbox 'Internet settings' and uncheck                            'Allow identification by internet sites'&lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            MediaPlayer: don't download codecs automatically - Open                            the MediaPlayer-Extras-Options... Click the tab 'Player',                            look at the groupbox 'Automatic Updates' and uncheck                            'Download Codecs Automatically' &lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;-                            Error report: Don't report errors - Open the Explorer,                            right-click on 'My Computer' and select 'Properties',                            click on the Tab 'Advanced' and click the button 'Errorreports',                            in the upcoming dialog uncheck all 3 items and select                            'Disable Errorreports'&lt;/span&gt;&lt;/p&gt;                         &lt;/li&gt;&lt;/ul&gt; &lt;p style="font-weight: bold; font-family: times new roman;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-8837401306289924673?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8837401306289924673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/licensing-issues.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8837401306289924673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8837401306289924673'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/licensing-issues.html' title='Licensing Issues'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6989740250101029344</id><published>2009-11-30T06:58:00.002-08:00</published><updated>2009-11-30T06:59:27.111-08:00</updated><title type='text'>Rename a Series of Files</title><content type='html'>&lt;p style="text-align: left; font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;When                            you download photos from your digital camera, they often                            have unrecognizable names. You can rename several similar                            files at once with the following procedure. This also                            works for renaming other types of files.&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left; font-family: times new roman; font-weight: bold;"&gt;                         &lt;/div&gt;&lt;p style="text-align: left; font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;1.Open                            the My Pictures folder. (Click Start, and then click                            My Pictures.) Or open another folder containing files                            that you want to rename.&lt;br /&gt;                          2.Select the files you want to rename. If the files                            you want are not adjacent in the file list, press and                            hold CTRL, and then click each item to select it.&lt;br /&gt;                          3.On the File menu, click Rename.&lt;br /&gt;                          4.Type the new name, and then press ENTER. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left; font-family: times new roman; font-weight: bold;"&gt;                         &lt;/div&gt;&lt;p style="text-align: left; font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          All of the files in the series will be named in sequence                            using the new name you type. For example, if you type                            Birthday, the first will be named Birthday and subsequent                            files in the series will be named Birthday (1), Birthday                            (2), and so on. To specify the starting number for the                            series, type the starting number in parentheses after                            the new file name. The files in the series will be numbered                            in sequence starting with the number you type. For example,                            if you type Birthday (10), the other files will be named                            Birthday (11), Birthday (12), and so on.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6989740250101029344?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6989740250101029344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/rename-series-of-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6989740250101029344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6989740250101029344'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/rename-series-of-files.html' title='Rename a Series of Files'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6239216906675232589</id><published>2009-11-30T06:58:00.001-08:00</published><updated>2009-11-30T06:58:55.448-08:00</updated><title type='text'>Using Remote Desktop</title><content type='html'>&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                         You must first enable the Remote Desktop feature on your                          office computer so that you can control it remotely from                          another computer. You must be logged on as an                          administrator or a member of the Administrators group to                          enable Remote Desktop on your Windows XP                          Professional-based computer. &lt;/span&gt;&lt;/p&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                         To setup your office computer to use Remote Desktop: &lt;/span&gt;&lt;/p&gt;                       &lt;/blockquote&gt; &lt;ul style="font-family: times new roman; font-weight: bold;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Open the System folder in Control Panel. Click Start,                            point to Settings, click Control Panel, and then double-click                            the System icon. &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                         On the Remote tab, select the Allow users to connect                          remotely to this computer check box, as shown below. &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Ensure that you have the proper permissions                            to connect to your computer remotely, and click OK.                                                        &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Leave your computer running and connected to the company                            network with Internet access. Lock your computer, and                            leave your office.&lt;br /&gt;                         &lt;br /&gt;                          The Remote Desktop Connection client software allows                            a computer running Windows 95, Windows 98, Windows 98                            Second Edition, Windows Me, Windows NT 4.0 or Windows                            2000 to control your Windows XP Professional computer                            remotely. The client software is available on the installation                            CD for Windows XP Professional and Windows XP Home Edition.                            The client software is installed by default on computers                            running Windows XP Professional and Windows XP Home                            Edition.&lt;br /&gt;                           &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;/ul&gt; &lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;To install Remote Desktop Connection software on a client                            computer  &lt;/span&gt;&lt;/p&gt;                       &lt;/blockquote&gt; &lt;ul style="font-family: times new roman; font-weight: bold;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Insert the Windows XP compact disc into your                            CD-ROM drive.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;When the Welcome page appears, click                            Perform additional tasks, and then click Setup Remote                            Desktop Connection as shown below.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;When the installation                            wizard starts, follow the directions that appear on                            your screen.&lt;br /&gt;                         &lt;br /&gt;                          Once you have enabled your Windows XP Professional computer                            to allow remote connections, and installed client software                            on a Windows-based client computer, you are ready to                            start a Remote Desktop session. &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;/ul&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="left"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;                       &lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          To create a new Remote Desktop Connection  &lt;/span&gt;&lt;/p&gt;                       &lt;/blockquote&gt; &lt;ul style="font-family: times new roman; font-weight: bold;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Open Remote                            Desktop Connection. (Click Start, point to Programs                            or All Programs, point to Accessories, point to Communications,                            and then click Remote Desktop Connection.)  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;In Computer,                            type the computer name for your computer running Windows                            XP Professional that has Remote Desktop enabled and                            for which you have Remote Desktop permissions &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Click Connect.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;The Log On to Windows dialog box appears.                                                        &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;In the Log On to Windows dialog box, type your user                            name, password, and domain (if required), and then click                            OK. The Remote Desktop window will open and you will                            see the desktop settings, files, and programs that are                            on your office computer. Your office computer will remain                            locked.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Nobody will be able to work at your office                            computer without a password, nor will anyone see the                            work you are doing on your office computer remotely.                            Note: To change your connection settings, (such as screen                            size, automatic logon information, and performance options),                            click Options before you connect.&lt;br /&gt;                           &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;/ul&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="left"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;                       &lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                         To open a saved connection &lt;/span&gt;&lt;/p&gt;                       &lt;/blockquote&gt; &lt;ul style="font-family: times new roman; font-weight: bold;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;In Windows Explorer, open                            the My DocumentsRemote Desktops folder.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;Click the .Rdp                            file for the connection you want to open. Note: A Remote                            Desktop file (.rdp) file contains all of the information                            for a connection to a remote computer, including the                            Options settings that were configured when the file                            was saved. You can customize any number of .rdp files,                            including files for connecting to the same computer                            with different settings. For example, you can save a                            file that connects to MyComputer in full screen mode                            and another file that connects to the same computer                            in 800×600 screen size. By default, .rdp files                            are saved in the My DocumentsRemote Desktops folder.                            To edit an .rdp file and change the connections settings                            it contains, right-click the file and then click Edit. &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;/ul&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="left"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;                       &lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;                           &lt;br /&gt;                          To log off and end the session  &lt;/span&gt;&lt;/p&gt;                       &lt;/blockquote&gt; &lt;ul style="font-family: times new roman; font-weight: bold;"&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;In the Remote Desktop                            Connection window, click Start, and then click Shut                            Down.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;The Shut Down Windows dialog box appears.  &lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;li&gt;                         &lt;p align="left"&gt;&lt;span style="font-size:100%;"&gt;In                            the drop-down menu, select Log Off , and then click                            OK.&lt;br /&gt;                           &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;                       &lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6239216906675232589?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6239216906675232589/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/using-remote-desktop.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6239216906675232589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6239216906675232589'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/using-remote-desktop.html' title='Using Remote Desktop'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1187372751484158941</id><published>2009-11-30T06:57:00.002-08:00</published><updated>2009-11-30T06:58:23.648-08:00</updated><title type='text'>Slow Shutdown</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Some people have noticed that they are experiencing                            a really slow shutdown after installing Windows XP Home                            or Professional. Although this can be caused a number                            of ways, the most clear cut one so far is happening                            on systems with an NVidia card installed with the latest                            set of drivers. A service called NVIDIA Driver Helper                            Service is loading up on start up and for whatever reason                            doesn't shut itself down properly. The service isn't                            needed and can also increase the amount of memory available                            to your system. Here is how to disable it.&lt;br /&gt;                         &lt;br /&gt;                          1: Go into your Control Panel&lt;br /&gt;                          2: Select Administrative Tools and then click on Services&lt;br /&gt;                          3: Right click on the file "NVIDIA Driver Helper                            Service" and then select STOP.&lt;br /&gt;                          4: To stop this loading up every time you boot up your                            PC Right click it again and select properties - then                            where the option "Startup Type" is shown -                            make sure it is set at Manual like we have shown in                            the image below.&lt;br /&gt;                         &lt;br /&gt;                          &lt;img src="http://www.freepctech.com/pc/xp/sharingpic.jpg" width="542" border="0" height="571" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-1187372751484158941?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1187372751484158941/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/slow-shutdown.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1187372751484158941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1187372751484158941'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/slow-shutdown.html' title='Slow Shutdown'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6435958520295873675</id><published>2009-11-30T06:57:00.001-08:00</published><updated>2009-11-30T06:57:44.530-08:00</updated><title type='text'>Getting an Older Program to Run on Windows XP</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;&lt;br /&gt;                          1.Right–click the executable or the program shortcut                            to the executable, and then click Properties.&lt;br /&gt;                         &lt;br /&gt;                          2.Select the Run this program in compatibility mode                            check box.&lt;br /&gt;                         &lt;br /&gt;                          3.From the list, select an operating system that the                            program runs in comfortably.&lt;br /&gt;                         &lt;br /&gt;                          If necessary, also change the display settings and/or                            resolution, or disable the Windows XP visual themes.                           &lt;br /&gt;                          Run the program again when you’re finished changing                            the settings. Adjust the compatibility settings again                            if the program is still not running smoothly: a program                            that’s unhappy on Windows 2000 may flourish on Windows                            98.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6435958520295873675?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6435958520295873675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/getting-older-program-to-run-on-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6435958520295873675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6435958520295873675'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/getting-older-program-to-run-on-windows.html' title='Getting an Older Program to Run on Windows XP'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-5279981149600197860</id><published>2009-11-30T06:56:00.002-08:00</published><updated>2009-11-30T06:57:18.684-08:00</updated><title type='text'>For a Safer, faster XP Close Unwanted Services</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                            disable unneeded startup services for a safer, faster                            XP, use the "Services" Admin Tool (Control                            Panel &gt; Administrative Tools &gt; Services). If you                            are a single user of a non-networked machine, you can                            disable the following items, with no ill effect.&lt;br /&gt;                         &lt;br /&gt;                          Alerter&lt;br /&gt;                          Clipbook&lt;br /&gt;                          Computer Browser&lt;br /&gt;                          Fast User Switching&lt;br /&gt;                          Human Interface Access Devices&lt;br /&gt;                          Indexing Service (Slows the hard drive down)&lt;br /&gt;                          Messenger&lt;br /&gt;                          Net Logon (unnecessary unless networked on a Domain)                           &lt;br /&gt;                          Netmeeting Remote Desktop Sharing (disabled for extra                            security)&lt;br /&gt;                          Remote Desktop Help Session Manager (disabled for extra                            security)&lt;br /&gt;                          Remote Procedure Call Locator&lt;br /&gt;                          Remote Registry (disabled for extra security)&lt;br /&gt;                          Routing &amp;amp; Remote Access (disabled for extra security)                           &lt;br /&gt;                          Server&lt;br /&gt;                          SSDP Discovery Service (this is for the utterly pointless                            "Universal P'n'P", &amp;amp; leaves TCP Port 5000                            wide open)&lt;br /&gt;                          TCP/IP NetBIOS Helper&lt;br /&gt;                          Telnet (disabled for extra security)&lt;br /&gt;                          Universal Plug and Play Device Host&lt;br /&gt;                          Upload Manager&lt;br /&gt;                          Windows Time&lt;br /&gt;                          Wireless Zero Configuration (for wireless networks)                           &lt;br /&gt;                          Workstation &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-5279981149600197860?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/5279981149600197860/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/for-safer-faster-xp-close-unwanted.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5279981149600197860'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5279981149600197860'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/for-safer-faster-xp-close-unwanted.html' title='For a Safer, faster XP Close Unwanted Services'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-406185500027048422</id><published>2009-11-30T06:56:00.001-08:00</published><updated>2009-11-30T06:56:44.926-08:00</updated><title type='text'>Boot Defragment</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;A very important new feature in Microsoft Windows XP                            is the ability to do a boot defragment. This basically                            means that all boot files are placed next to each other                            on the disk drive to allow for faster booting. By default                            this option is enabled but some upgrade users have reported                            that it isn't on their setup.&lt;br /&gt;                         &lt;br /&gt;                          1. Start Regedit.&lt;br /&gt;                          2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction                           &lt;br /&gt;                          3. Select Enable from the list on the right.&lt;br /&gt;                          4. Right on it and select Modify.&lt;br /&gt;                          5. Change the value to Y to enable and N to disable.                           &lt;br /&gt;                          6. Reboot your computer. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-406185500027048422?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/406185500027048422/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/boot-defragment.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/406185500027048422'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/406185500027048422'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/boot-defragment.html' title='Boot Defragment'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7673119880904502723</id><published>2009-11-30T06:55:00.002-08:00</published><updated>2009-11-30T06:56:12.524-08:00</updated><title type='text'>Adding Programs To Stay On The Start Menu</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;Right click on any .exe file in Explorer, My Computer,                            Desktop and select 'Pin to Start Menu', the program                            is then displayed on the start menu, above the separator                            line. To remove it, click the file on the start menu                            and select 'Unpin from Start Menu'. Below you can check                            the before and after shots.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7673119880904502723?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7673119880904502723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/adding-programs-to-stay-on-start-menu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7673119880904502723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7673119880904502723'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/adding-programs-to-stay-on-start-menu.html' title='Adding Programs To Stay On The Start Menu'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6440876802267306793</id><published>2009-11-30T06:55:00.001-08:00</published><updated>2009-11-30T06:55:34.681-08:00</updated><title type='text'>20 things you didn't know about Windows XP</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;                            You've read the reviews and digested the key feature                            enhancements and operational changes. Now it's time                            to delve a bit deeper and uncover some of Windows XP's                            secrets.&lt;br /&gt;                         &lt;br /&gt;                          1. It boasts how long it can stay up. Whereas previous                            versions of Windows were coy about how long they went                            between boots, XP is positively proud of its stamina.                            Go to the Command Prompt in the Accessories menu from                            the All Programs start button option, and then type                            'systeminfo'. The computer will produce a lot of useful                            info, including the uptime. If you want to keep these,                            type 'systeminfo &gt; info.txt'. This creates a file                            called info.txt you can look at later with Notepad.                            (Professional Edition only).                           &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;2.                            You can delete files immediately, without having them                            move to the Recycle Bin first. Go to the Start menu,                            select Run... and type 'gpedit.msc'; then select User                            Configuration, Administrative Templates, Windows Components,                            Windows Explorer and find the Do not move deleted files                            to the Recycle Bin setting. Set it. Poking around in                            gpedit will reveal a great many interface and system                            options, but take care -- some may stop your computer                            behaving as you wish. (Professional Edition only). &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;3.                            You can lock your XP workstation with two clicks of                            the mouse. Create a new shortcut on your desktop using                            a right mouse click, and enter 'rundll32.exe user32.dll,LockWorkStation'                            in the location field. Give the shortcut a name you                            like. That's it -- just double click on it and your                            computer will be locked. And if that's not easy enough,                            Windows key + L will do the same. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;4.                            XP hides some system software you might want to remove,                            such as Windows Messenger, but you can tickle it and                            make it disgorge everything. Using Notepad or Edit,                            edit the text file /windows/inf/sysoc.inf, search for                            the word 'hide' and remove it. You can then go to the                            Add or Remove Programs in the Control Panel, select                            Add/Remove Windows Components and there will be your                            prey, exposed and vulnerable. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;5.                            For those skilled in the art of DOS batch files, XP                            has a number of interesting new commands. These include                            'eventcreate' and 'eventtriggers' for creating and watching                            system events, 'typeperf' for monitoring performance                            of various subsystems, and 'schtasks' for handling scheduled                            tasks. As usual, typing the command name followed by                            /? will give a list of options -- they're all far too                            baroque to go into here. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;6.                            XP has IP version 6 support -- the next generation of                            IP. Unfortunately this is more than your ISP has, so                            you can only experiment with this on your LAN. Type                            'ipv6 install' into Run... (it's OK, it won't ruin your                            existing network setup) and then 'ipv6 /?' at the command                            line to find out more. If you don't know what IPv6 is,                            don't worry and don't bother. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;7.                            You can at last get rid of tasks on the computer from                            the command line by using 'taskkill /pid' and the task                            number, or just 'tskill' and the process number. Find                            that out by typing 'tasklist', which will also tell                            you a lot about what's going on in your system. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;8.                            XP will treat Zip files like folders, which is nice                            if you've got a fast machine. On slower machines, you                            can make XP leave zip files well alone by typing 'regsvr32                            /u zipfldr.dll' at the command line. If you change your                            mind later, you can put things back as they were by                            typing 'regsvr32 zipfldr.dll'. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;9.                            XP has ClearType -- Microsoft's anti-aliasing font display                            technology -- but doesn't have it enabled by default.                            It's well worth trying, especially if you were there                            for DOS and all those years of staring at a screen have                            given you the eyes of an astigmatic bat. To enable ClearType,                            right click on the desktop, select Properties, Appearance,                            Effects, select ClearType from the second drop-down                            menu and enable the selection. Expect best results on                            laptop displays. If you want to use ClearType on the                            Welcome login screen as well, set the registry entry                            HKEY_USERS/.DEFAULT/Control Panel/Desktop/FontSmoothingType                            to 2. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;10.                            You can use Remote Assistance to help a friend who's                            using network address translation (NAT) on a home network,                            but not automatically. Get your pal to email you a Remote                            Assistance invitation and edit the file. Under the RCTICKET                            attribute will be a NAT IP address, like 192.168.1.10.                            Replace this with your chum's real IP address -- they                            can find this out by going to www.whatismyip.com --                            and get them to make sure that they've got port 3389                            open on their firewall and forwarded to the errant computer.                            &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;11.                            You can run a program as a different user without logging                            out and back in again. Right click the icon, select                            Run As... and enter the user name and password you want                            to use. This only applies for that run. The trick is                            particularly useful if you need to have administrative                            permissions to install a program, which many require.                            Note that you can have some fun by running programs                            multiple times on the same system as different users,                            but this can have unforeseen effects. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;12.                            Windows XP can be very insistent about you checking                            for auto updates, registering a Passport, using Windows                            Messenger and so on. After a while, the nagging goes                            away, but if you feel you might slip the bonds of sanity                            before that point, run Regedit, go to HKEY_CURRENT_USER/Software/Microsoft/Windows/Current                            Version/Explorer/Advanced and create a DWORD value called                            EnableBalloonTips with a value of 0. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;13.                            You can start up without needing to enter a user name                            or password. Select Run... from the start menu and type                            'control userpasswords2', which will open the user accounts                            application. On the Users tab, clear the box for Users                            Must Enter A User Name And Password To Use This Computer,                            and click on OK. An Automatically Log On dialog box                            will appear; enter the user name and password for the                            account you want to use. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;14.                            Internet Explorer 6 will automatically delete temporary                            files, but only if you tell it to. Start the browser,                            select Tools / Internet Options... and Advanced, go                            down to the Security area and check the box to Empty                            Temporary Internet Files folder when browser is closed.                            &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;15.                            XP comes with a free Network Activity Light, just in                            case you can't see the LEDs twinkle on your network                            card. Right click on My Network Places on the desktop,                            then select Properties. Right click on the description                            for your LAN or dial-up connection, select Properties,                            then check the Show icon in notification area when connected                            box. You'll now see a tiny network icon on the right                            of your task bar that glimmers nicely during network                            traffic. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;16.                            The Start Menu can be leisurely when it decides to appear,                            but you can speed things along by changing the registry                            entry HKEY_CURRENT_USER/Control Panel/Desktop/MenuShowDelay                            from the default 400 to something a little snappier.                            Like 0. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;17.                            You can rename loads of files at once in Windows Explorer.                            Highlight a set of files in a window, then right click                            on one and rename it. All the other files will be renamed                            to that name, with individual numbers in brackets to                            distinguish them. Also, in a folder you can arrange                            icons in alphabetised groups by View, Arrange Icon By...                            Show In Groups. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;18.                            Windows Media Player will display the cover art for                            albums as it plays the tracks -- if it found the picture                            on the Internet when you copied the tracks from the                            CD. If it didn't, or if you have lots of pre-WMP music                            files, you can put your own copy of the cover art in                            the same directory as the tracks. Just call it folder.jpg                            and Windows Media Player will pick it up and display                            it. &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;19.                            Windows key + Break brings up the System Properties                            dialogue box; Windows key + D brings up the desktop;                            Windows key + Tab moves through the taskbar buttons.                            &lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;                         &lt;/div&gt;&lt;p style="font-family: times new roman; font-weight: bold; text-align: left;"&gt;&lt;span style="font-size:100%;"&gt;20.                            The next release of Windows XP, codenamed Longhorn,                            is due out late next year or early 2003 and won't be                            much to write home about. The next big release is codenamed                            Blackcomb and will be out in 2003/2004. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6440876802267306793?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6440876802267306793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/20-things-you-didnt-know-about-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6440876802267306793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6440876802267306793'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/20-things-you-didnt-know-about-windows.html' title='20 things you didn&apos;t know about Windows XP'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7202275237658276743</id><published>2009-11-30T06:54:00.001-08:00</published><updated>2009-11-30T06:54:47.310-08:00</updated><title type='text'>Disable CD Autorun</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:130%;"&gt;1)                            Click Start, Run and enter GPEDIT.MSC &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:130%;"&gt;2)                            Go to Computer Configuration, Administrative Templates,                            System. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:130%;"&gt;3)                            Locate the entry for Turn autoplay off and modify it                            as you desire.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7202275237658276743?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7202275237658276743/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/disable-cd-autorun.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7202275237658276743'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7202275237658276743'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/disable-cd-autorun.html' title='Disable CD Autorun'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4159676203900434147</id><published>2009-11-30T06:53:00.000-08:00</published><updated>2009-11-30T06:54:04.352-08:00</updated><title type='text'>Create a Password Reset Disk</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;If                            you’re running Windows XP Professional as a local user                            in a workgroup environment, you can create a password                            reset disk to log onto your computer when you forget                            your password. To create the disk:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;1.Click                            Start, click Control Panel, and then click User Accounts.                           &lt;br /&gt;                          2.Click your account name.&lt;br /&gt;                          3.Under Related Tasks, click Prevent a forgotten password.                           &lt;br /&gt;                          4.Follow the directions in the Forgotten Password Wizard                            to create a password reset disk.&lt;br /&gt;                          5.Store the disk in a secure location, because anyone                            using it can access your local user account.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4159676203900434147?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4159676203900434147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/create-password-reset-disk.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4159676203900434147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4159676203900434147'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/create-password-reset-disk.html' title='Create a Password Reset Disk'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-1749390704111555226</id><published>2009-11-30T06:52:00.000-08:00</published><updated>2009-11-30T06:53:29.827-08:00</updated><title type='text'>Copy Files and Folders to CD</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                            copy files and folders to a CD&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Insert                            a blank, writable CD into the CD recorder. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Open                            My Computer. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Click                            the files or folders you want to copy to the CD. To                            select more than one file, hold down the CTRL key while                            you click the files you want. Then, under File and Folder                            Tasks, click Copy this file, Copy this folder, or Copy                            the selected items. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•If                            the files are located in My Pictures, under Picture                            Tasks, click Copy to CD or Copy all items to CD, and                            then skip to step 5. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•In                            the Copy Items dialog box, click the CD recording drive,                            and then click Copy. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•In                            My Computer, double–click the CD recording drive. Windows                            displays a temporary area where the files are held before                            they are copied to the CD. Verify that the files and                            folders that you intend to copy to the CD appear under                            Files Ready to be Written to the CD. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Under                            CD Writing Tasks, click Write these files to CD. Windows                            displays the CD Writing Wizard. Follow the instructions                            in the wizard. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          Notes:&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Do                            not copy more files to the CD than it will hold. Standard                            CDs hold up to 650 megabytes (MB). High–capacity CDs                            hold up to 850 MB. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Be                            sure that you have enough disk space on your hard disk                            to store the temporary files that are created during                            the CD writing process. For a standard CD, Windows reserves                            up to 700 MB of the available free space. For a high–capacity                            CD, Windows reserves up to 1 gigabyte (GB) of the available                            free space. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•After                            you copy files or folders to the CD, it is useful to                            view the CD to confirm that the files are copied. For                            more information, click Related Topics.&lt;br /&gt;                          To stop the CD recorder from automatically ejecting                            the CD&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•Open                            My Computer. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                          •Right–click the CD recording drive, and then click                            Properties. &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;•On                            the Recording tab, clear the Automatically eject the                            CD after writing check box. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-1749390704111555226?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/1749390704111555226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/copy-files-and-folders-to-cd.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1749390704111555226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/1749390704111555226'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/copy-files-and-folders-to-cd.html' title='Copy Files and Folders to CD'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7254672145568619102</id><published>2009-11-30T06:51:00.002-08:00</published><updated>2009-11-30T06:52:10.392-08:00</updated><title type='text'>Hide 'User Accounts' from users</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;                                                  &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;Go                            to Start/Run, and type: &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;GPEDIT.MSC                            &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;Open                            the path &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;User                            Config &gt; Admin Templates &gt; Control Panel &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;doubleclick                            "Hide specified Control Panel applets" &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;put                            a dot in 'enabled', then click 'Show" &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;click                            Add button, &lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;type                            "nusrmgt.cpl" into the add box                           &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7254672145568619102?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7254672145568619102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/hide-user-accounts-from-users.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7254672145568619102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7254672145568619102'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/hide-user-accounts-from-users.html' title='Hide &apos;User Accounts&apos; from users'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-3783944340296038374</id><published>2009-11-30T06:51:00.001-08:00</published><updated>2009-11-30T06:51:25.919-08:00</updated><title type='text'>How to Convert FAT to NTFS file system</title><content type='html'>&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;To                              convert a FAT partition to NTFS, perform the following                              steps. &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;Click                              Start, click Programs, and then click Command Prompt.                              &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;In                              Windows XP, click Start, click Run, type cmd and then                              click OK. &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;At                              the command prompt, type CONVERT [driveletter]: /FS:NTFS.                              &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;Convert.exe                              will attempt to convert the partition to NTFS. &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;NOTE:                              Although the chance of corruption or data loss during                              the conversion from FAT to NTFS is minimal, it is                              best to perform a full backup of the data on the drive                              that it is to be converted prior to executing the                              convert command. It is also recommended to verify                              the integrity of the backup before proceeding, as                              well as to run RDISK and update the emergency repair                              disk (ERD).&lt;/span&gt;&lt;/p&gt;                         &lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-3783944340296038374?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/3783944340296038374/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-convert-fat-to-ntfs-file-system.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3783944340296038374'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3783944340296038374'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-convert-fat-to-ntfs-file-system.html' title='How to Convert FAT to NTFS file system'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-3847177318236891011</id><published>2009-11-30T06:50:00.001-08:00</published><updated>2009-11-30T06:50:31.170-08:00</updated><title type='text'>Make your Folders Private</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;                                                      &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;•Open                              My Computer&lt;br /&gt;                            •Double-click the drive where Windows is installed                              (usually drive (C:), unless you have more than one                              drive on your computer).&lt;br /&gt;                            •If the contents of the drive are hidden, under System                              Tasks, click Show the contents of this drive.&lt;br /&gt;                            •Double-click the Documents and Settings folder.&lt;br /&gt;                            •Double-click your user folder.&lt;br /&gt;                            •Right-click any folder in your user profile, and                              then click Properties.&lt;br /&gt;                            •On the Sharing tab, select the Make this folder private                              so that only I have access to it check box. &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                            Note&lt;/span&gt;&lt;/p&gt;                           &lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;•To                              open My Computer, click Start, and then click My Computer.                             &lt;br /&gt;                            •This option is only available for folders included                              in your user profile. Folders in your user profile                              include My Documents and its subfolders, Desktop,                              Start Menu, Cookies, and Favorites. If you do not                              make these folders private, they are available to                              everyone who uses your computer.&lt;br /&gt;                            •When you make a folder private, all of its subfolders                              are private as well. For example, when you make My                              Documents private, you also make My Music and My Pictures                              private. When you share a folder, you also share all                              of its subfolders unless you make them private.&lt;br /&gt;                            •You cannot make your folders private if your drive                              is not formatted as NTFS For information about converting                              your drive to NTFS&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-3847177318236891011?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/3847177318236891011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/make-your-folders-private_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3847177318236891011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3847177318236891011'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/make-your-folders-private_30.html' title='Make your Folders Private'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-3045362814510322855</id><published>2009-11-30T06:49:00.000-08:00</published><updated>2009-11-30T06:50:04.198-08:00</updated><title type='text'>NTFS vs. FAT</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;"&gt; &lt;/p&gt;                           &lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;To                              NTFS or not to NTFS—that is the question. But unlike                              the deeper questions of life, this one isn't really                              all that hard to answer. For most users running Windows                              XP, NTFS is the obvious choice. It's more powerful                              and offers security advantages not found in the other                              file systems. But let's go over the differences among                              the files systems so we're all clear about the choice.                              There are essentially three different file systems                              available in Windows XP: FAT16, short for File Allocation                              Table, FAT32, and NTFS, short for NT File System.                              &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                            FAT16&lt;br /&gt;                            The FAT16 file system was introduced way back with                              MS–DOS in 1981, and it's showing its age. It was designed                              originally to handle files on a floppy drive, and                              has had minor modifications over the years so it can                              handle hard disks, and even file names longer than                              the original limitation of 8.3 characters, but it's                              still the lowest common denominator. The biggest advantage                              of FAT16 is that it is compatible across a wide variety                              of operating systems, including Windows 95/98/Me,                              OS/2, Linux, and some versions of UNIX. The biggest                              problem of FAT16 is that it has a fixed maximum number                              of clusters per partition, so as hard disks get bigger                              and bigger, the size of each cluster has to get larger.                              In a 2–GB partition, each cluster is 32 kilobytes,                              meaning that even the smallest file on the partition                              will take up 32 KB of space. FAT16 also doesn't support                              compression, encryption, or advanced security using                              access control lists.&lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;FAT32&lt;br /&gt;                            The FAT32 file system, originally introduced in Windows                              95 Service Pack 2, is really just an extension of                              the original FAT16 file system that provides for a                              much larger number of clusters per partition. As such,                              it greatly improves the overall disk utilization when                              compared to a FAT16 file system. However, FAT32 shares                              all of the other limitations of FAT16, and adds an                              important additional limitation—many operating systems                              that can recognize FAT16 will not work with FAT32—most                              notably Windows NT, but also Linux and UNIX as well.                              Now this isn't a problem if you're running FAT32 on                              a Windows XP computer and sharing your drive out to                              other computers on your network—they don't need to                              know (and generally don't really care) what your underlying                              file system is. &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;The                              Advantages of NTFS&lt;br /&gt;                            The NTFS file system, introduced with first version                              of Windows NT, is a completely different file system                              from FAT. It provides for greatly increased security,                              file–by–file compression, quotas, and even encryption.                              It is the default file system for new installations                              of Windows XP, and if you're doing an upgrade from                              a previous version of Windows, you'll be asked if                              you want to convert your existing file systems to                              NTFS. Don't worry. If you've already upgraded to Windows                              XP and didn't do the conversion then, it's not a problem.                              You can convert FAT16 or FAT32 volumes to NTFS at                              any point. Just remember that you can't easily go                              back to FAT or FAT32 (without reformatting the drive                              or partition), not that I think you'll want to.&lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;The                              NTFS file system is generally not compatible with                              other operating systems installed on the same computer,                              nor is it available when you've booted a computer                              from a floppy disk. For this reason, many system administrators,                              myself included, used to recommend that users format                              at least a small partition at the beginning of their                              main hard disk as FAT. This partition provided a place                              to store emergency recovery tools or special drivers                              needed for reinstallation, and was a mechanism for                              digging yourself out of the hole you'd just dug into.                              But with the enhanced recovery abilities built into                              Windows XP (more on that in a future column), I don't                              think it's necessary or desirable to create that initial                              FAT partition.&lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;When                              to Use FAT or FAT32&lt;br /&gt;                            If you're running more than one operating system on                              a single computer (&lt;a href="http://www.freepctech.com/pc/xp/http/freepctech.com/guides.shtml"&gt;see Dual booting in Guides&lt;/a&gt;), you                              will definitely need to format some of your volumes                              as FAT. Any programs or data that need to be accessed                              by more than one operating system on that computer                              should be stored on a FAT16 or possibly FAT32 volume.                              But keep in mind that you have no security for data                              on a FAT16 or FAT32 volume—any one with access to                              the computer can read, change, or even delete any                              file that is stored on a FAT16 or FAT32 partition.                              In many cases, this is even possible over a network.                              So do not store sensitive files on drives or partitions                              formatted with FAT file systems.&lt;/span&gt;&lt;/p&gt;                           &lt;/blockquote&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-3045362814510322855?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/3045362814510322855/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/ntfs-vs-fat.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3045362814510322855'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3045362814510322855'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/ntfs-vs-fat.html' title='NTFS vs. FAT'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-5916047830420476041</id><published>2009-11-30T06:48:00.002-08:00</published><updated>2009-11-30T06:49:31.332-08:00</updated><title type='text'>Provide Remote Assistance When Using a NAT Device</title><content type='html'>&lt;span style="font-weight: bold;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;You                              can provide Remote Assistance to a friend who uses                              a Network Address Translation (NAT) device by modifying                              the Remote Assistance invitation using XML. Network                              Address Translation is used to allow multiple computers                              to share the same outbound Internet connection. To                              open a Remote Assistance session with a friend who                              uses a NAT device: &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;1.                              Ask your friend to send you a Remote Assistance invitation                              by e–mail. &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-size:100%;"&gt;2.                              Save the invitation file to your desktop.&lt;br /&gt;                            3. Right–click the file, and then click Open With                              Notepad. You'll see that the file is a simple XML                              file.&lt;br /&gt;                            4.Under the RCTICKET attribute is a private IP address,                              such as 192.168.1.100.&lt;br /&gt;                            5. Over–write this IP address with your friend's public                              IP address. Your friend must send you his or her public                              IP address: they can find out what it is by going                              to a Web site that will return the public IP address,                              such as http://www.dslreports.com/ip.&lt;br /&gt;                            6. Save the file, and then double–click it to open                              the Remote Assistance session.&lt;br /&gt;                           &lt;br /&gt;                            Now, you'll be able to connect and provide them with                              the help they need. So that your inbound IP connection                              is routed to the correct computer, the NAT must be                              configured to route that inbound traffic. To do so,                              make sure your friend forwards port 3389 to the computer                              they want help from.&lt;/span&gt;&lt;/p&gt;                                                    &lt;/blockquote&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-5916047830420476041?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/5916047830420476041/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/provide-remote-assistance-when-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5916047830420476041'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/5916047830420476041'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/provide-remote-assistance-when-using.html' title='Provide Remote Assistance When Using a NAT Device'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-861127090319975607</id><published>2009-11-30T06:48:00.001-08:00</published><updated>2009-11-30T06:48:32.779-08:00</updated><title type='text'>How to Rename the Recycle Bin</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                              change the name of the Recycle Bin desktop icon, open                              Regedit and go to:&lt;br /&gt;                           &lt;br /&gt;                            HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}                              &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;and                              change the name "Recycle Bin" to whatever                              you want (don't type any quotes).&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-861127090319975607?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/861127090319975607/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-rename-recycle-bin_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/861127090319975607'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/861127090319975607'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-rename-recycle-bin_30.html' title='How to Rename the Recycle Bin'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-4977731356494034433</id><published>2009-11-30T06:47:00.003-08:00</published><updated>2009-11-30T06:47:59.459-08:00</updated><title type='text'>Remove the Recycle Bin from the Desktop</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;If                              you don't use the Recycle Bin to store deleted files                              , you can get rid of its desktop icon all together.                              &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;Run                              Regedit and go to:&lt;/span&gt;&lt;/p&gt;                                                      &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/explorer/Desktop/NameSpace                              &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                            Click on the "Recycle Bin" string in the                              right hand pane. Hit Del, click OK.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-4977731356494034433?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/4977731356494034433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/remove-recycle-bin-from-desktop.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4977731356494034433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/4977731356494034433'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/remove-recycle-bin-from-desktop.html' title='Remove the Recycle Bin from the Desktop'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-822606727199448066</id><published>2009-11-30T06:47:00.001-08:00</published><updated>2009-11-30T06:47:27.407-08:00</updated><title type='text'>Restricting Logon Access</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;If you work in a multiuser computing environment,                              and you have full (administrator level) access to                              your computer, you might want to restrict unauthorized                              access to your "sensitive" files under Windows                              95/98.&lt;br /&gt;                            One way is to disable the Cancel button in the Logon                              dialog box.&lt;br /&gt;                            Just run Regedit and go to:&lt;br /&gt;                         &lt;br /&gt;                            HKEY_LOCAL_MACHINE/Network/Logon                             &lt;/span&gt;&lt;/p&gt;                           &lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;Create                              the "Logon" subkey if it is not present                              on your machine: highlight the Network key -&gt; right-click                              in the left hand Regedit pane -&gt; select New -&gt;                              Key -&gt; name it "Logon" (no quotes) -&gt;                              press Enter. Then add/modify a DWORD value and call                              it "MustBeValidated" (don't type the quotes).                              Double-click it, check the Decimal box and type 1                              for value.&lt;br /&gt;                            Now click the Start button -&gt; Shut Down (Log off                              UserName) -&gt; Log on as a different user, and you'll                              notice that the Logon Cancel button has been disabled.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-822606727199448066?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/822606727199448066/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/restricting-logon-access.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/822606727199448066'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/822606727199448066'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/restricting-logon-access.html' title='Restricting Logon Access'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-3052919890445609981</id><published>2009-11-30T06:46:00.001-08:00</published><updated>2009-11-30T06:46:58.185-08:00</updated><title type='text'>Search For Hidden Or System Files In Windows XP</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;The                              Search companion in Windows XP searches for hidden                              and system files differently than in earlier versions                              of Windows. This guide describes how to search for                              hidden or system files in Windows XP. &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;Search                              for Hidden or System Files By default, the Search                              companion does not search for hidden or system files.                              Because of this, you may be unable to find files,                              even though they exist on the drive. &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;To                              search for hidden or system files in Windows XP:&lt;br /&gt;                            Click Start, click Search, click All files and folders,                              and then click More advanced options.&lt;br /&gt;                           &lt;br /&gt;                            Click to select the Search system folders and Search                              hidden files and folders check boxes.                             &lt;/span&gt;&lt;/p&gt;                           &lt;p&gt;&lt;span style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:-2;"&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;&lt;span style="font-family: times new roman;"&gt;NOTE:                              You do not need to configure your computer to show                              hidden files in the Folder Options dialog box in Windows                              Explorer to find files with either the hidden or system                              attributes, but you need to configure your computer                              not to hide protected operating system files to find                              files with both the hidden and system attributes.                              Search Companion shares the Hide protected operating                              system files option (which hides files with both the                              system and hidden attributes) with the Folder Options                              dialog box Windows Explorer. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;                            &lt;/span&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-3052919890445609981?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/3052919890445609981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/search-for-hidden-or-system-files-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3052919890445609981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/3052919890445609981'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/search-for-hidden-or-system-files-in.html' title='Search For Hidden Or System Files In Windows XP'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6723197036090582141</id><published>2009-11-30T06:45:00.000-08:00</published><updated>2009-11-30T06:46:03.902-08:00</updated><title type='text'>Set Permissions for Shared Files and Folders</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;"&gt; &lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;Sharing                              of files and folders can be managed in two ways. If                              you chose simplified file sharing, your folders can                              be shared with everyone on your network or workgroup,                              or you can make your folders private. (This is how                              folders are shared in Windows 2000.) However, in Windows                              XP Professional, you can also set folder permissions                              for specific users or groups. To do this, you must                              first change the default setting, which is simple                              file sharing. To change this setting, follow these                              steps:&lt;br /&gt;                            •Open Control Panel, click Tools, and then click Folder                              Options.&lt;br /&gt;                            •Click the View tab, and scroll to the bottom of the                              Advanced Settings list.&lt;br /&gt;                            •Clear the Use simple file sharing (Recommended) check                              box.&lt;br /&gt;                            •To manage folder permissions, browse to the folder                            in Windows Explorer, right–click the folder, and then                            click Properties. Click the Security tab, and assign                            permissions, such as Full Control, Modify, Read,                            and/or Write, to specific users.&lt;/span&gt;&lt;/p&gt;                           &lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;You                              can set file and folder permissions only on drives                              formatted to use NTFS, and you must be the owner or                              have been granted permission to do so by the owner.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6723197036090582141?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6723197036090582141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-permissions-for-shared-files-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6723197036090582141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6723197036090582141'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-permissions-for-shared-files-and.html' title='Set Permissions for Shared Files and Folders'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-328617505922255387</id><published>2009-11-30T06:44:00.000-08:00</published><updated>2009-11-30T06:45:18.856-08:00</updated><title type='text'>Set Processes Priority</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;Follow                              this tip to increase the priority of active processes,                              this will result in prioritisation of processes using                              the CPU.&lt;br /&gt;                           &lt;br /&gt;                            CTRL-SHIFT-ESC&lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;1.Go                              to the second tab called Processes, right click on                              one of the active processes, you will see the Set                              Priority option &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                            2.For example, your Run your CDwriter program , set                              the priority higher, and guess what, no crashed CD’s&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-328617505922255387?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/328617505922255387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-processes-priority.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/328617505922255387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/328617505922255387'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-processes-priority.html' title='Set Processes Priority'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-8536607699293024334</id><published>2009-11-30T06:43:00.000-08:00</published><updated>2009-11-30T06:44:30.553-08:00</updated><title type='text'>New Sound Blaster Drivers</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;With                            the loads of problems reported by users with Soundblaster                            cards on Windows XP Creative has stepped up and offered                            drivers for at least some models of their Sound Blaster                            cards, but check your particular model closely.  I have downloaded the SB128 drivers and my sound                            problems have been resolved..! So they do work.&lt;/span&gt;&lt;/p&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;                         &lt;a href="http://www.freepctech.com/www.creative.com/support/winxp/default.html"&gt;http://www.creative.com/support/winxp/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-8536607699293024334?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/8536607699293024334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/new-sound-blaster-drivers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8536607699293024334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/8536607699293024334'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/new-sound-blaster-drivers.html' title='New Sound Blaster Drivers'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7049099627881748197</id><published>2009-11-30T06:41:00.001-08:00</published><updated>2009-11-30T06:41:35.647-08:00</updated><title type='text'>Set the Search Screen to the Classic Look</title><content type='html'>&lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;When I first saw the default search pane in Windows                            XP, my instinct was to return it to its classic look;                            that puppy had to go. Of course, I later discovered                            that a doggie door is built into the applet. Click "Change                            preferences" then "Without an animated screen                            character." If you'd rather give it a bare-bones                            "Windows 2000" look and feel, fire up your                            Registry editor and navigate to:&lt;br /&gt;                         &lt;br /&gt;                          HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \                            CurrentVersion \ Explorer \ CabinetState.&lt;br /&gt;                         &lt;br /&gt;                          You may need to create a new string value labeled "Use                            Search Asst" and set it to "no".&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7049099627881748197?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7049099627881748197/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-search-screen-to-classic-look.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7049099627881748197'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7049099627881748197'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/set-search-screen-to-classic-look.html' title='Set the Search Screen to the Classic Look'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7442671236676570224</id><published>2009-11-30T06:40:00.000-08:00</published><updated>2009-11-30T06:41:02.455-08:00</updated><title type='text'>How to Remove Windows XP's Messenger</title><content type='html'>&lt;blockquote style="font-family: times new roman; font-weight: bold;"&gt;   &lt;p align="center"&gt;&lt;span style="font-size:100%;"&gt;Theoretically, you can get rid of it (as well as a few                            other things). Windows 2000 power users should already                            be familiar with this tweak.&lt;br /&gt;                         &lt;br /&gt;                          Fire up the Windows Explorer and navigate your way to                            the %SYSTEMROOT% \ INF folder. What the heck is that                            thingy with the percentage signs? It's a variable. For                            most people, %SYSTEMROOT% is C:\Windows. For others,                            it may be E:\WinXP. Get it? Okay, on with the hack!                            In the INF folder, open sysoc.inf (but not before making                            a BACKUP copy first). Before your eyes glaze over, look                            for the line containing "msmsgs" in it. Near                            the end of that particular line, you'll notice that                            the word "hide" is not so hidden. Go ahead                            and delete "hide" (so that the flanking commas                            are left sitting next to one another). Save the file                            and close it. Now, open the Add and Remove Programs                            applet in the Control Panel. Click the Add / Remove                            Windows Components icon. You should see "Windows                            Messenger" in that list. Remove the checkmark from                            its box, and you should be set. NOTE: there are other                            hidden system components in that sysoc.inf file, too.                            Remove "hide" and the subsequent programs                            at your own risk. &lt;/span&gt;&lt;/p&gt; &lt;/blockquote&gt;                         &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7442671236676570224?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7442671236676570224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-remove-windows-xps-messenger.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7442671236676570224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7442671236676570224'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-remove-windows-xps-messenger.html' title='How to Remove Windows XP&apos;s Messenger'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-7080982239380020966</id><published>2009-11-30T06:37:00.001-08:00</published><updated>2009-11-30T06:37:27.518-08:00</updated><title type='text'>How to Rename the Recycle Bin</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;To                              change the name of the Recycle Bin desktop icon, open                              Regedit and go to:&lt;br /&gt;                           &lt;br /&gt;                            HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}                              &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;and                              change the name "Recycle Bin" to whatever                              you want (don't type any quotes).&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-7080982239380020966?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/7080982239380020966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-rename-recycle-bin.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7080982239380020966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/7080982239380020966'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/how-to-rename-recycle-bin.html' title='How to Rename the Recycle Bin'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4000110939734403975.post-6848245470294030666</id><published>2009-11-30T06:36:00.001-08:00</published><updated>2009-11-30T06:36:50.242-08:00</updated><title type='text'>Make your Folders Private</title><content type='html'>&lt;p style="font-family: times new roman; font-weight: bold;" align="center"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;                                                      &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;•Open                              My Computer&lt;br /&gt;                            •Double-click the drive where Windows is installed                              (usually drive (C:), unless you have more than one                              drive on your computer).&lt;br /&gt;                            •If the contents of the drive are hidden, under System                              Tasks, click Show the contents of this drive.&lt;br /&gt;                            •Double-click the Documents and Settings folder.&lt;br /&gt;                            •Double-click your user folder.&lt;br /&gt;                            •Right-click any folder in your user profile, and                              then click Properties.&lt;br /&gt;                            •On the Sharing tab, select the Make this folder private                              so that only I have access to it check box. &lt;/span&gt;&lt;/p&gt;                           &lt;p style="font-family: times new roman; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;                            Note&lt;/span&gt;&lt;/p&gt;                           &lt;span style="font-family: times new roman; font-weight: bold;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:100%;"  &gt;•To                              open My Computer, click Start, and then click My Computer.                             &lt;br /&gt;                            •This option is only available for folders included                              in your user profile. Folders in your user profile                              include My Documents and its subfolders, Desktop,                              Start Menu, Cookies, and Favorites. If you do not                              make these folders private, they are available to                              everyone who uses your computer.&lt;br /&gt;                            •When you make a folder private, all of its subfolders                              are private as well. For example, when you make My                              Documents private, you also make My Music and My Pictures                              private. When you share a folder, you also share all                              of its subfolders unless you make them private.&lt;br /&gt;                            •You cannot make your folders private if your drive                              is not formatted as NTFS For information about converting                              your drive to NTFS&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4000110939734403975-6848245470294030666?l=mrmohanstips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mrmohanstips.blogspot.com/feeds/6848245470294030666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/make-your-folders-private.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6848245470294030666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4000110939734403975/posts/default/6848245470294030666'/><link rel='alternate' type='text/html' href='http://mrmohanstips.blogspot.com/2009/11/make-your-folders-private.html' title='Make your Folders Private'/><author><name>Mohan</name><uri>http://www.blogger.com/profile/14978607073929041089</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_jdDLDrHRjBk/SpfijQ30eYI/AAAAAAAAAD8/f8HSELgPIe4/S220/Boy..Z1868.jpg'/></author><thr:total>0</thr:total></entry></feed>
