<?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-4679918020391923947</id><updated>2011-07-29T00:15:21.547-07:00</updated><title type='text'>Part Of Lifes</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mypartsoflife.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mypartsoflife.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/06361731535282497179</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='21' src='http://4.bp.blogspot.com/_XCb5PltpFJs/SxFXK9StXGI/AAAAAAAAAAM/o4Qwg2ZvCjk/S220/google-drop-kick.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4679918020391923947.post-8210835733775071858</id><published>2009-11-28T09:44:00.000-08:00</published><updated>2010-08-27T06:48:47.249-07:00</updated><title type='text'>Hack 78. Find Links to Any Web Site</title><content type='html'>Yahoo! can tell you which sites link to any other site, and yLinkbacks uses Yahoo! Search Web Services to find links to the current page you're browsing.&lt;br /&gt;&lt;br /&gt;When you browse to a web site you've never seen before, you don't have very much advance knowledge about the site. You might know that you've followed a link from a particular site that you read frequently, or you might have found the site in some search results for a certain search term. Of course, the site itself can tell you quite a bit, but that still doesn't give you any clues about where the site fits into the larger Web. With some searching at Yahoo!, you can get extra info about a site by using the special link: syntax.&lt;br /&gt;&lt;br /&gt;If you want to find what sites are linking to any other particular site, you can browse to http://search.yahoo.com and enter this query: link:insert URL. Instead of standard search results, Yahoo! will display a list of the sites that link to the URL you've specified in the query. For example, if you'd like to find out where the O'Reilly Hacks site fits into the Web, you could search for link:http://hacks.oreilly.com.&lt;br /&gt;&lt;br /&gt;In the results, you immediately get a sense of how many pages link to the site and what kinds of sites are linking there. If you're browsing the Web, leaving a site to do a quick Yahoo! link: search can be annoying if you'd just like to get this sense about the current site you're visiting. To find the sites, you need to copy the current URL from your browser address bar, open a new window or tab, browse to Yahoo!, and then assemble the proper query. It's a quick process, but you can speed it up considerably with a bit of classic ASP and a JavaScript bookmarklet.&lt;br /&gt;&lt;br /&gt;This hack uses JavaScript to get the URL of the current page you're viewing in your browser. From there, it passes the URL to a server-side script that assembles the proper Yahoo! query and fetches the top 10 results with Yahoo! Search Web Services. A new pop-up window will give a quick look at which sites are linking to the current page, without leaving your place.&lt;br /&gt;&lt;br /&gt;5.3.1. The Code&lt;br /&gt;The first part of this hack is a server-side script that retrieves the search results and formats them for display. The HTML result will end up being inserted into a separate pop-up browser window above the current page.&lt;br /&gt;&lt;br /&gt;The script accepts a URL with the querystring variable q. From there, it creates a Yahoo! Search Web Services URL using the special link: syntax.&lt;br /&gt;&lt;br /&gt;To create the script, save the following code to a file called yl.asp and be sure to include your own unique application ID in the code:&lt;br /&gt;&lt;br /&gt;    &lt;html&gt;&lt;br /&gt;    &lt;head&gt;&lt;br /&gt;            &lt;style type="text/css"&gt;&lt;br /&gt;                body {&lt;br /&gt;                background-color:#fff;&lt;br /&gt;                color:#000;&lt;br /&gt;                font-family:verdana,sans-serif;&lt;br /&gt;                font-size:11px;&lt;br /&gt;                margin:0px;&lt;br /&gt;                padding:0px;&lt;br /&gt;                border:0px;&lt;br /&gt;               &lt;br /&gt;                }&lt;br /&gt;                li{padding:1px;padding-bottom:2px;}&lt;br /&gt;            &lt;/style&gt;&lt;br /&gt;            &lt;title&gt;Yahoo Linkbacks&lt;/title&gt;&lt;br /&gt;            &lt;base target="_new"&gt;&lt;br /&gt;    &lt;/head&gt;&lt;br /&gt;&lt;br /&gt;    &lt;body&gt;&lt;br /&gt;    &lt;script language="JavaScript" type="text/javascript"&gt;&lt;br /&gt;            //bring window to top, necessary for Mozilla/Firefox&lt;br /&gt;            window.focus();&lt;br /&gt;    &lt;/script&gt;&lt;br /&gt;    &lt;%&lt;br /&gt;&lt;br /&gt;    On Error Resume Next&lt;br /&gt;    Response.Buffer = True&lt;br /&gt;    '' Expecting a URL string to be in the querystring "q"&lt;br /&gt;    szQ = Request("q")&lt;br /&gt;    If (szQ &lt;&gt; "") Then %&gt;&lt;br /&gt;&lt;br /&gt;    &lt;div style="'text-align:center;width:98%;'"&gt;&lt;br /&gt;            &lt;a style='font-weight:bold;'&lt;br /&gt;            href="http://search.yahoo.com/search?p=link:&lt;% =szQ %&gt;"&gt;Yahoo&lt;br /&gt;    Linkbacks&lt;/a&gt;&lt;br /&gt;            &lt;br/&gt;&lt;br /&gt;            for &lt;a href=""&gt;" title="&lt;% =szQ %&gt;"&gt;this url&lt;/a&gt;&lt;br /&gt;    &lt;/div&gt;&lt;br /&gt;&lt;br /&gt;    &lt;!-- Display a temporary "Loading" message while looking up images --&gt;&lt;br /&gt;    &lt;div id="ldDiv"&lt;br /&gt;    style='font-weight:bold;text-align:center;width:98%;padding-top:20px;'&gt;&lt;br /&gt;    Loading…&lt;/div&gt;&lt;br /&gt;    &lt;% Response.Flush %&gt;&lt;br /&gt;&lt;br /&gt;    &lt;ul style="margin:4px;padding:4px;"&gt;&lt;br /&gt;&lt;br /&gt;    &lt;%    Dim objXML, xml&lt;br /&gt;        szStr = ""&lt;br /&gt;        szUrl = ""&lt;br /&gt;        szTitle = ""&lt;br /&gt;&lt;br /&gt;        szSummary = ""&lt;br /&gt;        set xml = Server.CreateObject ("MSXML2.ServerXMLHTTP.3.0")&lt;br /&gt;&lt;br /&gt;        szGetString = ("http://api.search.yahoo.com/" &amp;amp;_&lt;br /&gt;                   "WebSearchService/V1/webSearch?" &amp;amp;_&lt;br /&gt;                   "appid=[YOUR_APPLICATION_ID ]&amp;amp;results=10&amp;amp;query=link :" &amp;amp; szQ)&lt;br /&gt;&lt;br /&gt;        xml.Open "GET", szGetString, False&lt;br /&gt;        xml.Send&lt;br /&gt;        set objXML = xml.responseXML&lt;br /&gt;&lt;br /&gt;        If (objXML.getElementsByTagName("Result").length&gt;0) Then&lt;br /&gt;            If (objXML.getElementsByTagName("Result").length&gt;10) Then&lt;br /&gt;                nLen = 10&lt;br /&gt;            Else&lt;br /&gt;&lt;br /&gt;                nLen = objXML.getElementsByTagName("Result").length-1&lt;br /&gt;            End if&lt;br /&gt;            For z = 0 to nLen&lt;br /&gt;&lt;br /&gt;                '' Get each "Result" Node and loop through&lt;br /&gt;                '' its childNodes to get Url, Title and Summaries&lt;br /&gt;                Set nGb = objXML.getElementsByTagName("Result")(z)&lt;br /&gt;                set o18 = nGb.childNodes&lt;br /&gt;                For k = 0 to o18.length-1&lt;br /&gt;                Select Case (o18.item(k).nodeName)&lt;br /&gt;                Case "Title"&lt;br /&gt;                szTitle = o18.item(k).text&lt;br /&gt;                Case "Summary"&lt;br /&gt;                szSummary = o18.item(k).text&lt;br /&gt;                Case "Url"&lt;br /&gt;                szUrl = o18.item(k).text&lt;br /&gt;                End Select&lt;br /&gt;                Next&lt;br /&gt;&lt;br /&gt;                If (szSummary &lt;&gt; "") Then szSummary = ": " &amp;amp; szSummary&lt;br /&gt;&lt;br /&gt;                szStr = szStr &amp;amp; ("&lt;li&gt;&lt;a href="'"&gt;" &amp;amp; szTitle &amp;amp; &lt;br /&gt;    "&lt;/a&gt;")&lt;br /&gt;                szStr = szStr &amp;amp; (szSummary &amp;amp; "&lt;/li&gt;")&lt;br /&gt;&lt;br /&gt;                szUrl = ""&lt;br /&gt;                szTitle = ""&lt;br /&gt;                szSummary = ""   &lt;br /&gt;&lt;br /&gt;            Next&lt;br /&gt;        End if&lt;br /&gt;        If (szStr &lt;&gt; "") Then&lt;br /&gt;            Response.write(szStr)&lt;br /&gt;        Else&lt;br /&gt;            Response.write("&lt;li&gt;No Results Found&lt;/li&gt;")&lt;br /&gt;        End if&lt;br /&gt;&lt;br /&gt;        set xml = Nothing&lt;br /&gt;        set objXML = Nothing&lt;br /&gt;    End if %&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;    &lt;script language="JavaScript" type="text/javascript"&gt;&lt;br /&gt;&lt;br /&gt;    // Hide the "Loading" message when page is fully loaded&lt;br /&gt;    document.getElementById("ldDiv").style.display="none";&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;table width="133" border="0" cellspacing="0" cellpadding="3"&gt;&lt;tr&gt;&lt;td align="center"&gt;&lt;a href="http://www.website-hit-counters.com/" target="_blank"&gt;&lt;img src="http://www.website-hit-counters.com/cgi-bin/image.pl?URL=433062-6625" alt="website-hit-counters.com" title="website-hit-counters.com" border="0" &gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="center"&gt;&lt;font style="font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 9px; color: #330006; text-decoration: none;"&gt;Provided by &lt;a href="http://www.website-hit-counters.com" target="_blank" style="font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 9px; color: #555556; text-decoration: none;" title="website-hit-counters.com"&gt;website-hit-counters.com&lt;/a&gt; site.&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;/body&gt;&lt;br /&gt;&lt;/html&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Upload yl.asp to a public web server to make it available to the bookmarklet. The bookmarklet is a bit of JavaScript that resides in a bookmark and calls the ASP page in-context by sending the URL of the page currently in the browser.&lt;br /&gt;&lt;br /&gt;5.3.2. Running the Hack&lt;br /&gt;Add the following code to an existing bookmarklet by adding it to the location field. Be sure to include the URL of the server-side page, yl.asp:&lt;br /&gt;&lt;br /&gt;    javascript:function p(){window.open(('http://example.com/yl. asp?q='+&lt;br /&gt;    document.location. href),'nsm','width=250,height=350,directories=no,&lt;br /&gt;    location=no,menubar=no, scrollbars=yes,status=no,toolbar=no,&lt;br /&gt;    resizable=no,left=0,top=0,screenx=0,screeny=0')}p()&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4679918020391923947-8210835733775071858?l=mypartsoflife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mypartsoflife.blogspot.com/feeds/8210835733775071858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mypartsoflife.blogspot.com/2009/11/how-do-i-add-tracking-code-to-my.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default/8210835733775071858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default/8210835733775071858'/><link rel='alternate' type='text/html' href='http://mypartsoflife.blogspot.com/2009/11/how-do-i-add-tracking-code-to-my.html' title='Hack 78. Find Links to Any Web Site'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/06361731535282497179</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='21' src='http://4.bp.blogspot.com/_XCb5PltpFJs/SxFXK9StXGI/AAAAAAAAAAM/o4Qwg2ZvCjk/S220/google-drop-kick.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4679918020391923947.post-5596615947283613253</id><published>2009-11-27T10:43:00.001-08:00</published><updated>2009-12-01T10:23:05.449-08:00</updated><title type='text'>Hack'ng</title><content type='html'>gpedit.msc&lt;br /&gt;&lt;br /&gt;Speed up your internet by 20%&lt;br /&gt;&lt;br /&gt;Microsoft reserves 20% of your available bandwidth for their own purposes&lt;br /&gt;like Windows Updates and interrogating your PC etc&lt;br /&gt;&lt;br /&gt;You can get it back:&lt;br /&gt;&lt;br /&gt;Click Start then Run and type "gpedit.msc" without quotes.This opens the group&lt;br /&gt;policy editor. Then go to:&lt;br /&gt;Local Computer Policy&lt;br /&gt;then Computer Configuration&lt;br /&gt;then Administrative Templates then Network then QOS Packet Scheduler and then to&lt;br /&gt;Limit Reservable Bandwidth&lt;br /&gt;&lt;br /&gt;Double click on Limit Reservable bandwidth. It will say it is not configured,&lt;br /&gt;but the truth is under the 'Explain' tab i.e."By default, the Packet Scheduler&lt;br /&gt;limits the system to 20 percent of the bandwidth of a connection, but you can use&lt;br /&gt; this setting to override the default."&lt;br /&gt;So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow&lt;br /&gt;the system to reserve nothing, rather than the default 20%.It works on Win 2000 as well&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Increase the speed of your internet connection without a new modem&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As more and more people get quick connections to the internet, such as cable or ADSL,&lt;br /&gt; it becomes apparent to the user of a simple dial-up modem that the World Wide Web can&lt;br /&gt; quickly turn into the World Wide Wait. Here a trick that can help speed up your current&lt;br /&gt;modem without shelling out the big bucks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;There is a setting located in your windows registry called the Maximum Transfer Unit (MTU).&lt;br /&gt; This determines the size of the packets of data sent between your and your server.&lt;br /&gt;In Windows 95, this setting is has a value of 1,500 bytes when the actual size of internet&lt;br /&gt;packets is 1,000 bytes. This can sometimes slow things down. To remedy the situation,&lt;br /&gt;simply follow these steps:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In the registry editor (Start &gt; Run &gt; regedit.exe),&lt;br /&gt;navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Class\NetTrans.&lt;br /&gt;In the NetTrans folder you should find another folder&lt;br /&gt;named "000x" in which x represents a fourth digit.&lt;br /&gt;Right-click on the "000x" folder and select New and StringValue.&lt;br /&gt;Rename the item that appears in the panel on the right side to MaxMTU,&lt;br /&gt;then double-click it to bring up the Edit String box and give it a velue of 1002.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Remember to keep playing with the MaxMTU value until you feel that&lt;br /&gt; your internet connection has greatly sped up. Some people report huge speed&lt;br /&gt;gains using this tricks, while others hardly notice a difference. In any case,&lt;br /&gt;it's definetly worth a try.&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;Check out these funny trick.&lt;br /&gt;Copy and paste the java script code to the address bar of your browser&lt;br /&gt;&lt;br /&gt;javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i &gt; 0; i--) {for (j = n; j &gt; 0; j--) {self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)&lt;br /&gt;&lt;br /&gt;2: Press enter and watch your window's "shaking it".&lt;br /&gt;&lt;br /&gt; You can change the value of i if you wish :-)&lt;br /&gt;&lt;br /&gt;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%&lt;br /&gt;&lt;br /&gt;Multiple login in yahoo Without Using any Software&lt;br /&gt;&lt;br /&gt;You can login with multiple id's on the same yahoo messenger&lt;br /&gt;without any download or patch .&lt;br /&gt;Follow these steps&lt;br /&gt;1. Go to Start ----&gt; Run . Type regedit, then enter .&lt;br /&gt;&lt;br /&gt;2.Navigate to HKEY_CURRENT_USER --------&gt; Software ---&gt;yahoo -----&gt;pager----&gt;Test&lt;br /&gt;&lt;br /&gt;3.On the right page , right-click and choose new Dword value .&lt;br /&gt;&lt;br /&gt;4.Rename it as Plural.&lt;br /&gt;&lt;br /&gt;5.Double click and assign a decimal value of 1&lt;br /&gt;Its done!!&lt;br /&gt;Now close registry and restart yahoo messenger and try Multiple Login&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;How to find the IP address of the sender in Gmail, Yahoo! mail or Hotmail&lt;br /&gt;&lt;br /&gt;When you receive an email, you receive more than just the message. The email comes with headers that carry important information that can tell where the email was sent from and possibly who sent it. For that, you would need to find the IP address of the sender. The tutorial below can help you find the IP address of the sender. Note that this will not work if the sender uses anonymous proxy servers&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Log into your Gmail account with your username and password.&lt;br /&gt;2. Open the mail.&lt;br /&gt;3. To display the headers,&lt;br /&gt;* Click on More options corresponding to that thread. You should get a bunch of links.&lt;br /&gt;* Click on Show original&lt;br /&gt;4. You should get headers like this:&lt;br /&gt;Gmail headers : name&lt;br /&gt;Look for Received: from followed by a few hostnames and an IP address between square brackets. In this case, it is&lt;br /&gt;&lt;br /&gt;65.119.112.245.&lt;br /&gt;That is be the IP address of the sender!&lt;br /&gt;5. Track the IP address of the sender&lt;br /&gt;Finding IP address in Yahoo! Mail&lt;br /&gt;1. Log into your Yahoo! mail with your username and password.&lt;br /&gt;2. Click on Inbox or whichever folder you have stored your mail.&lt;br /&gt;3. Open the mail.&lt;br /&gt;4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,&lt;br /&gt;* Click on Options on the top-right corner&lt;br /&gt;* In the Mail Options page, click on General Preferences&lt;br /&gt;* Scroll down to Messages where you have the Headers option&lt;br /&gt;* Make sure that Show all headers on incoming messages is selected&lt;br /&gt;* Click on the Save button&lt;br /&gt;* Go back to the mails and open that mail&lt;br /&gt;5. You should see similar headers like this:&lt;br /&gt;Yahoo! headers : name&lt;br /&gt;Look for Received: from followed by the IP address between square brackets [ ]. Here, it is 202.65.138.109.&lt;br /&gt;That is be the IP address of the sender!&lt;br /&gt;6. Track the IP address of the sender&lt;br /&gt;Finding IP address in Hotmail&lt;br /&gt;1. Log into your Hotmail account with your username and password.&lt;br /&gt;2. Click on the Mail tab on the top.&lt;br /&gt;3. Open the mail.&lt;br /&gt;4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,&lt;br /&gt;* Click on Options on the top-right corner&lt;br /&gt;* In the Mail Options page, click on Mail Display Settings&lt;br /&gt;* In Message Headers, make sure Advanced option is checked&lt;br /&gt;* Click on Ok button&lt;br /&gt;* Go back to the mails and open that mail&lt;br /&gt;5. If you find a header with X-Originating-IP: followed by an IP address, that is the sender's IP address&lt;br /&gt;Hotmail headers : name ,In this case the IP address of the sender is [68.34.60.59]. Jump to step 9.&lt;br /&gt;6. If you find a header with Received: from followed by a Gmail proxy like this&lt;br /&gt;Hotmail headers : name&lt;br /&gt;Look for Received: from followed by IP address within square brackets[].&lt;br /&gt;In this case, the IP address of the sender is [69.140.7.58]. Jump to step 9.&lt;br /&gt;7. Or else if you have headers like this&lt;br /&gt;Hotmail headers : name&lt;br /&gt;Look for Received: from followed by IP address within square brackets[].&lt;br /&gt;In this case, the IP address of the sender is [61.83.145.129] (Spam mail). Jump to step 9.&lt;br /&gt;8. * If you have multiple Received: from headers, eliminate the ones that have proxy.anyknownserver.com.&lt;br /&gt;9. Track the IP address of the sender&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;MAKE YOUR MENUS LOAD FASTER&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is one of my favorite tweaks as it makes a huge difference to how fast&lt;br /&gt;your machine will 'feel'. What this tweak does is remove the slight delay between&lt;br /&gt;clicking on a menu and XP displaying the menu.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Go to Start then Run&lt;br /&gt;Type 'Regedit' then click 'Ok'&lt;br /&gt;Find "HKEY_CURRENT_USER\Control Panel\Desktop\"&lt;br /&gt;Select "MenuShowDelay"&lt;br /&gt;Right click and select "Modify'&lt;br /&gt;Reduce the number to around "100"&lt;br /&gt;This is the delay time before a menu is opened. You can set it to "0" but it can make&lt;br /&gt;windows really hard to use as menus will open if you just look at them - well move your&lt;br /&gt;mouse over them anyway. I tend to go for anywhere between 50-150 depending on my mood.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;z##########################################################################################&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IMPROVE XP SHUTDOWN SPEED&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This tweak reduces the time XP waits before automatically closing any running programs when you give&lt;br /&gt;it the command to shutdown.&lt;br /&gt;&lt;br /&gt;Go to Start then select Run&lt;br /&gt;Type 'Regedit' and click ok&lt;br /&gt;Find 'HKEY_CURRENT_USER\Control Panel\Desktop\'&lt;br /&gt;Select 'WaitToKillAppTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;Click 'OK'&lt;br /&gt;Now select 'HungAppTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;&lt;br /&gt;Click 'OK'&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now find 'HKEY_USERS\.DEFAULT\Control Panel\Desktop'&lt;br /&gt;Select 'WaitToKillAppTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;Click 'OK'&lt;br /&gt;Now find 'HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\'&lt;br /&gt;Select 'WaitToKillServiceTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;Click 'OK'&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;Boot your Computer Faster&lt;br /&gt;&lt;br /&gt;Many computers take a lot of time to boot (or start ).This is due to many reasons.&lt;br /&gt;&lt;br /&gt;Some slight changes can do wonders for your system:&lt;br /&gt;&lt;br /&gt;1.Press start-&gt;run then type msconfig and press enter.&lt;br /&gt;&lt;br /&gt;Go to the startup tab. Here you will see a list of startup items. These are all the programs&lt;br /&gt; that automatically start when you boot your PC. It is these that slow down the boot up process.&lt;br /&gt;&lt;br /&gt;So uncheck all the unwanted items like ms-office, messengers other utilities that u may not need&lt;br /&gt;at startup). Don't uncheck your antivirus software.&lt;br /&gt;&lt;br /&gt;Restart your Pc to and see for yourself, your pc will now boot faster....&lt;br /&gt;&lt;br /&gt;2.A great new feature in Microsoft Windows XP is the ability to do a boot defragment.&lt;br /&gt;This places all boot files next to each other on the disk to allow for faster booting.&lt;br /&gt;By default this option is enabled, but on some systems it is not, so below is the information on how to turn it on:&lt;br /&gt;&lt;br /&gt;Go to Start Menu and Click Run&lt;br /&gt;Type in regedit then click ok&lt;br /&gt;Find "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOpt imizeFunction"&lt;br /&gt;Select "Enable" from the list on the right&lt;br /&gt;Right on it and select "Modify"&lt;br /&gt;Change the value to Y .&lt;br /&gt;Reboot your Pc and see the change yourself.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.SPEED UP BOOT BY DISABLING UNUSED PORTS.!!&lt;br /&gt;&lt;br /&gt;You may have tried many tweaks like modifying windows XP start-up applications,&lt;br /&gt;prefetches, unload DLLs method, etc. And yes those methods do work for me.&lt;br /&gt;I have just accidentally found out another way to give you an extra boost&lt;br /&gt;in windows XP's boot performance. This is done by disabling your unused devices in&lt;br /&gt;Device Manager. for example, if you don't have input devices that are connected to&lt;br /&gt;one of your USB's or COM ports, disabling them will give you an extra performance boost&lt;br /&gt; in booting. Go to Control Panel -&gt; System -&gt; Hardware tab -&gt; device manager Disable devices&lt;br /&gt;&lt;br /&gt;that you don't use for your PC and then restart&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;Trick to lock your private folder&lt;br /&gt;&lt;br /&gt;Suppose you want to lock the folder movies in d: which has the path&lt;br /&gt;D:\movies.In the same drive create a text file and type&lt;br /&gt;ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}&lt;br /&gt;Now save this text file as loc.bat&lt;br /&gt;Create another text file and type in it&lt;br /&gt;ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies&lt;br /&gt;Now save this text file as key.bat&lt;br /&gt;2 batch files loc and key. Press loc and the folder games will change&lt;br /&gt;to control panel and you cannot view its contents. Press key and you will get back your original folder.&lt;br /&gt;&lt;br /&gt;===================================================================================&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Single Click Shutdown&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Did you know that in Windows XP you can shut down your computer&lt;br /&gt;from the (eventually DOS prompt) command line box? Moreover,&lt;br /&gt; you can do this by clicking your mouse only once.&lt;br /&gt;All you need to do is... right-click on an empty&lt;br /&gt;Desktop spot -&gt; select New -&gt; Shortcut -&gt; type shutdown followed by a space,&lt;br /&gt;and then enter one or more of the parameters listed below -&gt; click Next -&gt; type a suggestive name&lt;br /&gt;for your new shortcut -&gt; finally, click Finish.&lt;br /&gt;&lt;br /&gt;This is the Shutdown.exe (located in %systemroot%\System32, usually C:\Windows\System32) syntax:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;shutdown [-i|-l|-s|-r|-a] [-f] [-m \\computername] [-t xx] [-c "Text"] [-d[u][p]:xx:yy]&gt;&lt;br /&gt;&lt;br /&gt;Valid command line switches:&lt;br /&gt;&lt;br /&gt;-a = Abort system shutdown in progress ONLY IF the -t xx timeout option was already set to ANY value other than 0.&lt;br /&gt; ALL switches except -l and -m are ignored during abort.&lt;br /&gt;&lt;br /&gt;-c "Text" = Text comment (case insensitive) to be displayed in the Message area of the System Shutdown window.&lt;br /&gt; MUST be enclosed between quotes. Maximum allowed 127 ASCII characters.&lt;br /&gt;&lt;br /&gt;-d [u][p]:xx:yy = Reason code for shutdown:&lt;br /&gt;u = User code.&lt;br /&gt;p = Planned shutdown code.&lt;br /&gt;xx = Major reason code. Positive integer number less than 256.&lt;br /&gt;yy = Minor reason code. Positive integer number less than 65536.&lt;br /&gt;&lt;br /&gt;-f = Force running applications to close without warning.&lt;br /&gt;&lt;br /&gt;-i = Display the shutdown interface (GUI). MUST be the first option!&lt;br /&gt;&lt;br /&gt;-l = Log off the current user of the local computer (default action).&lt;br /&gt; Can NOT be used with the -m option unless the current user has Sysadmin rights,&lt;br /&gt; in which case the -m switch takes precedence&lt;br /&gt;&lt;br /&gt;\\computername = Remote/network computer name (most always case sensitive) to log off/restart/shut down.&lt;br /&gt; Current user MUST have Sysadmin rights to be allowed to use this switch!&lt;br /&gt;&lt;br /&gt;-s = Shut down the local computer.&lt;br /&gt;&lt;br /&gt;-r = Shut down and restart (reboot) the local computer.&lt;br /&gt;&lt;br /&gt;-t xx = Set shutdown timer to timeout for xx seconds. IF NOT specified defaults to 20 seconds.&lt;br /&gt;Allowed values between 0 and 99 seconds. The -a switch is the ONLY one that CAN be used during the timeout period&lt;br /&gt;&lt;br /&gt;NOTES:&lt;br /&gt;The dash (-) in front of these switches can be replaced by a forward slash (/).&lt;br /&gt;&lt;br /&gt;Spaces are NOT required to separate the shutdown command from ANY following switches,&lt;br /&gt; but ARE required to separate ANY switch from its following parameter(s), if any.&lt;br /&gt;For example:&lt;br /&gt;&lt;br /&gt;shutdown -s -c "Shutting down!" -t 3&lt;br /&gt;&lt;br /&gt;tells your computer to shutdown after waiting for 3 seconds while the System Shutdown window will display&lt;br /&gt;text above in the Message area.&lt;br /&gt;&lt;br /&gt;Optional: after you're done creating your customized&lt;br /&gt;shortcut for shutdown -&gt; right-click on it -&gt; select Properties -&gt; enter&lt;br /&gt; your desired key "combo" in the Shortcut Key box (e.g. Ctrl + Alt + End) -&gt; click OK/Apply.&lt;br /&gt;From now on just left-click on your shutdown shortcut or hit that&lt;br /&gt;key combination to turn off/restart/log off your computer.&lt;br /&gt;&lt;br /&gt;try it out!!!!!!!&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||&lt;br /&gt;&lt;br /&gt;Hack Windows XP Login Password&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hack Admin Password From User Mode&lt;br /&gt;Disclaimer: Use this article for eductational purpose ONLY.&lt;br /&gt;&lt;br /&gt;Follow these steps:&lt;br /&gt;1. Open command prompt (Start-&gt;Run-&gt;cmd),&lt;br /&gt;2. Enter the following command, then press ENTER&lt;br /&gt;&lt;br /&gt;3. Enter the followin command, then press ENTER:&lt;br /&gt;compmgmt.msc&lt;br /&gt;This should open the computer management console.&lt;br /&gt;4. Go to local users &amp;amp; groups-&gt;users. Right click on any user and select "set password".&lt;br /&gt;&lt;br /&gt;If you get a "access denied" do the following:&lt;br /&gt;&lt;br /&gt;start&gt;run&gt;cmd&lt;br /&gt;then use following commands&lt;br /&gt;1) net user test /add (this command will make test named user)&lt;br /&gt;2) net localgroup administrators test /add (this command will make test user as administrators rights)&lt;br /&gt;&lt;br /&gt;and use net user command to reset your admin. password&lt;br /&gt;&lt;br /&gt;Alternative&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What if u don't know the password of your admin and still want to hack and change ..&lt;br /&gt;yea u can do it ..in a very easy manner.. check this. just follow the steps..&lt;br /&gt;this doesn't require u to know the admin password but still u can change it..&lt;br /&gt;Start &gt;&gt; Run &gt;&gt; [type]cmd // this will open your command prompt&lt;br /&gt;[type] net(space)user(press enter)&lt;br /&gt;[type] net(space)user(space)[windowsloginid](sp ace)*(press enter)&lt;br /&gt;&lt;br /&gt;// for e.g. : net user HOME *(press enter)&lt;br /&gt;&lt;br /&gt;[type] new password (press enter) and retype it (press enter)..&lt;br /&gt;it will show u confirmation... // caution it wont show u the password u type..&lt;br /&gt;but it still types.. the blinking pointer will b there at the same place.. but it still works..&lt;br /&gt;// for e.g. : password changed successfully&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;Run Commands In Windows XP&lt;br /&gt;&lt;br /&gt;You can access all these programs by going through START/RUN or Simply Click Windows Key+r&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL Client Configuration - cliconfg&lt;br /&gt;&lt;br /&gt;System Configuration Editor - sysedit&lt;br /&gt;&lt;br /&gt;System Configuration Utility - msconfig&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Scan Immediately)- sfc /scannow&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Scan Once At Next Boot)- sfc /scanonce&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Scan On Every Boot) - sfc /scanboot&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Return to Default Setting)- sfc /revert&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Purge File Cache)- sfc /purgecache&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Set Cache Size to size x)-sfc/cachesize=x&lt;br /&gt;System Properties - sysdm.cpl&lt;br /&gt;&lt;br /&gt;Task Manager – taskmgr&lt;br /&gt;&lt;br /&gt;TCP Tester - tcptest&lt;br /&gt;&lt;br /&gt;Telnet Client - telnet&lt;br /&gt;&lt;br /&gt;Tweak UI (if installed) - tweakui&lt;br /&gt;&lt;br /&gt;User Account Management- nusrmgr.cpl&lt;br /&gt;&lt;br /&gt;Utility Manager - utilman&lt;br /&gt;&lt;br /&gt;Windows Address Book - wab&lt;br /&gt;&lt;br /&gt;Windows Address Book Import Utility - wabmig&lt;br /&gt;&lt;br /&gt;Windows Backup Utility (if installed)- ntbackup&lt;br /&gt;&lt;br /&gt;Windows Explorer - explorer&lt;br /&gt;&lt;br /&gt;Windows Firewall- firewall.cpl&lt;br /&gt;&lt;br /&gt;Windows Magnifier- magnify&lt;br /&gt;&lt;br /&gt;Windows Management Infrastructure - wmimgmt.msc&lt;br /&gt;&lt;br /&gt;Windows Media Player - wmplayer&lt;br /&gt;&lt;br /&gt;Windows Messenger - msmsgs&lt;br /&gt;&lt;br /&gt;Windows Picture Import Wizard (need camera connected)- wiaacmgr&lt;br /&gt;&lt;br /&gt;Windows System Security Tool – syskey&lt;br /&gt;&lt;br /&gt;Windows Update Launches - wupdmgr&lt;br /&gt;&lt;br /&gt;Windows Version (to show which version of windows)- winver&lt;br /&gt;&lt;br /&gt;Windows XP Tour Wizard - tourstart&lt;br /&gt;&lt;br /&gt;Wordpad - write&lt;br /&gt;&lt;br /&gt;Password Properties - password.cpl&lt;br /&gt;&lt;br /&gt;Performance Monitor - perfmon.msc&lt;br /&gt;&lt;br /&gt;Phone and Modem Options - telephon.cpl&lt;br /&gt;&lt;br /&gt;Phone Dialer - dialer&lt;br /&gt;&lt;br /&gt;Pinball Game - pinball&lt;br /&gt;&lt;br /&gt;Power Configuration - powercfg.cpl&lt;br /&gt;&lt;br /&gt;Printers and Faxes - control printers&lt;br /&gt;&lt;br /&gt;Printers Folder – printers&lt;br /&gt;&lt;br /&gt;Private Character Editor - eudcedit&lt;br /&gt;&lt;br /&gt;Quicktime (If Installed)- QuickTime.cpl&lt;br /&gt;&lt;br /&gt;Real Player (if installed)- realplay&lt;br /&gt;&lt;br /&gt;Regional Settings - intl.cpl&lt;br /&gt;&lt;br /&gt;Registry Editor - regedit&lt;br /&gt;&lt;br /&gt;Registry Editor - regedit32&lt;br /&gt;&lt;br /&gt;Remote Access Phonebook - rasphone&lt;br /&gt;&lt;br /&gt;Remote Desktop - mstsc&lt;br /&gt;&lt;br /&gt;Removable Storage - ntmsmgr.msc&lt;br /&gt;&lt;br /&gt;Removable Storage Operator Requests - ntmsoprq.msc&lt;br /&gt;&lt;br /&gt;Resultant Set of Policy (XP Prof) - rsop.msc&lt;br /&gt;&lt;br /&gt;Scanners and Cameras - sticpl.cpl&lt;br /&gt;&lt;br /&gt;Scheduled Tasks - control schedtasks&lt;br /&gt;&lt;br /&gt;Security Center - wscui.cpl&lt;br /&gt;&lt;br /&gt;Services - services.msc&lt;br /&gt;&lt;br /&gt;Shared Folders - fsmgmt.msc&lt;br /&gt;&lt;br /&gt;Shuts Down Windows - shutdown&lt;br /&gt;&lt;br /&gt;Sounds and Audio - mmsys.cpl&lt;br /&gt;&lt;br /&gt;Spider Solitare Card Game - spider&lt;br /&gt;&lt;br /&gt;Malicious Software Removal Tool - mrt&lt;br /&gt;&lt;br /&gt;Microsoft Access (if installed) - access.cpl&lt;br /&gt;&lt;br /&gt;Microsoft Chat - winchat&lt;br /&gt;&lt;br /&gt;Microsoft Excel (if installed) - excel&lt;br /&gt;&lt;br /&gt;Microsoft Frontpage (if installed)- frontpg&lt;br /&gt;&lt;br /&gt;Microsoft Movie Maker - moviemk&lt;br /&gt;&lt;br /&gt;Microsoft Paint - mspaint&lt;br /&gt;&lt;br /&gt;Microsoft Powerpoint (if installed)- powerpnt&lt;br /&gt;&lt;br /&gt;Microsoft Word (if installed)- winword&lt;br /&gt;&lt;br /&gt;Microsoft Syncronization Tool - mobsync&lt;br /&gt;&lt;br /&gt;Minesweeper Game - winmine&lt;br /&gt;&lt;br /&gt;Mouse Properties - control mouse&lt;br /&gt;&lt;br /&gt;Mouse Properties - main.cpl&lt;br /&gt;&lt;br /&gt;Nero (if installed)- nero&lt;br /&gt;&lt;br /&gt;Netmeeting - conf&lt;br /&gt;&lt;br /&gt;Network Connections - control netconnections&lt;br /&gt;&lt;br /&gt;Network Connections - ncpa.cpl&lt;br /&gt;&lt;br /&gt;Network Setup Wizard - netsetup.cpl&lt;br /&gt;&lt;br /&gt;Notepad - notepad&lt;br /&gt;&lt;br /&gt;Nview Desktop Manager (If Installed)- nvtuicpl.cpl&lt;br /&gt;&lt;br /&gt;Object Packager - packager&lt;br /&gt;&lt;br /&gt;ODBC Data Source Administrator- odbccp32.cpl&lt;br /&gt;&lt;br /&gt;On Screen Keyboard - osk&lt;br /&gt;&lt;br /&gt;Opens AC3 Filter (If Installed) - ac3filter.cpl&lt;br /&gt;&lt;br /&gt;Outlook Express - msimn&lt;br /&gt;&lt;br /&gt;Paint – pbrush&lt;br /&gt;&lt;br /&gt;Keyboard Properties - control keyboard&lt;br /&gt;&lt;br /&gt;IP Configuration (Display Connection Configuration) - ipconfi/all&lt;br /&gt;&lt;br /&gt;IP Configuration (Display DNS Cache Contents)- ipconfig /displaydns&lt;br /&gt;&lt;br /&gt;IP Configuration (Delete DNS Cache Contents)- ipconfig /flushdns&lt;br /&gt;&lt;br /&gt;IP Configuration (Release All Connections)- ipconfig /release&lt;br /&gt;&lt;br /&gt;IP Configuration (Renew All Connections)- ipconfig /renew&lt;br /&gt;&lt;br /&gt;IP Configuration(RefreshesDHCP&amp;amp;Re-RegistersDNS)-ipconfig/registerdns&lt;br /&gt;&lt;br /&gt;IP Configuration (Display DHCP Class ID)- ipconfig/showclassid&lt;br /&gt;&lt;br /&gt;IP Configuration (Modifies DHCP Class ID)- ipconfig /setclassid&lt;br /&gt;&lt;br /&gt;Java Control Panel (If Installed)- jpicpl32.cpl&lt;br /&gt;&lt;br /&gt;Java Control Panel (If Installed)- javaws&lt;br /&gt;&lt;br /&gt;Local Security Settings - secpol.msc&lt;br /&gt;&lt;br /&gt;Local Users and Groups - lusrmgr.msc&lt;br /&gt;&lt;br /&gt;Logs You Out Of Windows - logoff.....&lt;br /&gt;&lt;br /&gt;Accessibility Controls - access.cpl&lt;br /&gt;&lt;br /&gt;Accessibility Wizard - accwiz&lt;br /&gt;&lt;br /&gt;Add Hardware - Wizardhdwwiz.cpl&lt;br /&gt;&lt;br /&gt;Add/Remove Programs - appwiz.cpl&lt;br /&gt;&lt;br /&gt;Administrative Tools control - admintools&lt;br /&gt;&lt;br /&gt;Adobe Acrobat (if installed) - acrobat&lt;br /&gt;&lt;br /&gt;Adobe Designer (if installed)- acrodist&lt;br /&gt;&lt;br /&gt;Adobe Distiller (if installed)- acrodist&lt;br /&gt;&lt;br /&gt;Adobe ImageReady (if installed)- imageready&lt;br /&gt;&lt;br /&gt;Adobe Photoshop (if installed)- photoshop&lt;br /&gt;&lt;br /&gt;Automatic Updates - wuaucpl.cpl&lt;br /&gt;&lt;br /&gt;Bluetooth Transfer Wizard – fsquirt&lt;br /&gt;&lt;br /&gt;Calculator - calc&lt;br /&gt;&lt;br /&gt;Certificate Manager - certmgr.msc&lt;br /&gt;&lt;br /&gt;Character Map - charmap&lt;br /&gt;&lt;br /&gt;Check Disk Utility - chkdsk&lt;br /&gt;&lt;br /&gt;Clipboard Viewer - clipbrd&lt;br /&gt;&lt;br /&gt;Command Prompt - cmd&lt;br /&gt;&lt;br /&gt;Component Services - dcomcnfg&lt;br /&gt;&lt;br /&gt;Computer Management - compmgmt.msc&lt;br /&gt;&lt;br /&gt;Control Panel - control&lt;br /&gt;&lt;br /&gt;Date and Time Properties - timedate.cpl&lt;br /&gt;&lt;br /&gt;DDE Shares - ddeshare&lt;br /&gt;&lt;br /&gt;Device Manager - devmgmt.msc&lt;br /&gt;&lt;br /&gt;Direct X Control Panel (If Installed)- directx.cpl&lt;br /&gt;&lt;br /&gt;Direct X Troubleshooter- dxdiag&lt;br /&gt;&lt;br /&gt;Disk Cleanup Utility- cleanmgr&lt;br /&gt;&lt;br /&gt;Disk Defragment- dfrg.msc&lt;br /&gt;&lt;br /&gt;Disk Management- diskmgmt.msc&lt;br /&gt;&lt;br /&gt;Disk Partition Manager- diskpart&lt;br /&gt;&lt;br /&gt;Display Properties- control desktop&lt;br /&gt;&lt;br /&gt;Display Properties- desk.cpl&lt;br /&gt;&lt;br /&gt;Display Properties (w/Appearance Tab Preselected)- control color&lt;br /&gt;&lt;br /&gt;Dr. Watson System Troubleshooting Utility- drwtsn32&lt;br /&gt;&lt;br /&gt;Driver Verifier Utility- verifier&lt;br /&gt;&lt;br /&gt;Event Viewer- eventvwr.msc&lt;br /&gt;&lt;br /&gt;Files and Settings Transfer Tool- migwiz&lt;br /&gt;&lt;br /&gt;File Signature Verification Tool- sigverif&lt;br /&gt;&lt;br /&gt;Findfast- findfast.cpl&lt;br /&gt;&lt;br /&gt;Firefox (if installed)- firefox&lt;br /&gt;&lt;br /&gt;Folders Properties- control folders&lt;br /&gt;&lt;br /&gt;Fonts- control fonts&lt;br /&gt;&lt;br /&gt;Fonts Folder- fonts&lt;br /&gt;&lt;br /&gt;Free Cell Card Game- freecell&lt;br /&gt;&lt;br /&gt;Game Controllers- joy.cpl&lt;br /&gt;&lt;br /&gt;Group Policy Editor (XP Prof)- gpedit.msc&lt;br /&gt;&lt;br /&gt;Hearts Card Game- mshearts&lt;br /&gt;&lt;br /&gt;Help and Support- helpctr&lt;br /&gt;&lt;br /&gt;HyperTerminal- hypertrm&lt;br /&gt;&lt;br /&gt;Iexpress Wizard- iexpress&lt;br /&gt;&lt;br /&gt;Indexing Service- ciadv.msc&lt;br /&gt;&lt;br /&gt;Internet Connection Wizard- icwconn1&lt;br /&gt;&lt;br /&gt;Internet Explorer- iexplore&lt;br /&gt;&lt;br /&gt;Internet Setup Wizard- inetwiz&lt;br /&gt;&lt;br /&gt;Internet Properties- inetcpl.cpl&lt;br /&gt;&lt;br /&gt;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%&lt;br /&gt;&lt;br /&gt;Make Your Windows Fast As Never Before&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Disable CD Autorun&lt;br /&gt;( WinXP PRO Only)&lt;br /&gt;&lt;br /&gt;1) Click Start, Run and enter GPEDIT.MSC&lt;br /&gt;&lt;br /&gt;2) Go to Computer Configuration, Administrative Templates, System.&lt;br /&gt;&lt;br /&gt;3) Locate the entry for Turn autoplay off and modify it as you desire.&lt;br /&gt;&lt;br /&gt;peed Up Browsing&lt;br /&gt;When you connect to a web site your computer sends information back and forth. Some of this information deals with resolving the site name to an IP address, the stuff that TCP/IP really deals with, not words. This is DNS information and is used so that you will not need to ask for the site location each and every time you visit the site. Although Windows XP and Windows XP have a pretty efficient DNS cache, you can increase its overall performance by increasing its size. You can do this with the registry entries below:&lt;br /&gt;&lt;br /&gt;Windows Registry Editor Version 5.00&lt;br /&gt;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]&lt;br /&gt;"CacheHashTableBucketSize"=dword:00000001&lt;br /&gt;"CacheHashTableSize"=dword:00000180&lt;br /&gt;"MaxCacheEntryTtlLimit"=dword:0000fa00&lt;br /&gt;"MaxSOACacheEntryTtlLimit"=dword:0000012d&lt;br /&gt;&lt;br /&gt;Make a new text file and rename it to dnscache.reg. Then copy and paste the above into it and save it. Merge it into the registry&lt;br /&gt;&lt;br /&gt;DISABLE INDEXING SERVICES&lt;br /&gt;&lt;br /&gt;Indexing Services is a small little program that uses large amounts of RAM and can often make a computer endlessly loud and noisy. This system process indexes and updates lists of all the files that are on your computer. It does this so that when you do a search for something on your computer, it will search faster by scanning the index lists. If you don't search your computer often, or even if you do search often, this system service is completely unnecessary. To disable do the following:&lt;br /&gt;&lt;br /&gt;1. Go to Start&lt;br /&gt;2. Click Settings&lt;br /&gt;3. Click Control Panel&lt;br /&gt;4. Double-click Add/Remove Programs&lt;br /&gt;5. Click the Add/Remove Window Components&lt;br /&gt;6. Uncheck the Indexing services&lt;br /&gt;7. Click Next&lt;br /&gt;&lt;br /&gt;OPTIMISE DISPLAY SETTINGS&lt;br /&gt;&lt;br /&gt;Windows XP can look sexy but displaying all the visual items can waste system resources. To optimize:&lt;br /&gt;&lt;br /&gt;1.Go to Start&lt;br /&gt;2. Click Settings&lt;br /&gt;3. Click Control Panel&lt;br /&gt;4. Click System&lt;br /&gt;5. Click Advanced tab&lt;br /&gt;6. In the Performance tab click Settings&lt;br /&gt;7. Leave only the following ticked:&lt;br /&gt;- Show shadows under menus&lt;br /&gt;- Show shadows under mouse pointer&lt;br /&gt;- Show translucent selection rectangle&lt;br /&gt;- Use drop shadows for icons labels on the desktop&lt;br /&gt;- Use visual styles on windows and buttons&lt;br /&gt;&lt;br /&gt;SPEEDUP FOLDER BROWSING&lt;br /&gt;&lt;br /&gt;You may have noticed that everytime you open my computer to browse folders that there is a slight delay. This is because Windows XP automatically searches for network files and printers everytime you open Windows Explorer. To fix this and to increase browsing significantly:&lt;br /&gt;&lt;br /&gt;1. Open My Computer&lt;br /&gt;2. Click on Tools menu&lt;br /&gt;3. Click on Folder Options&lt;br /&gt;4. Click on the View tab.&lt;br /&gt;5. Uncheck the Automatically search for network folders and printers check box&lt;br /&gt;6. Click Apply&lt;br /&gt;7. Click Ok&lt;br /&gt;8. Reboot your computer&lt;br /&gt;&lt;br /&gt;REMOVE THE DESKTOP PICTURE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Your desktop background consumes a fair amount of memory and can slow the loading time of your system. Removing it will improve performance.&lt;br /&gt;&lt;br /&gt;1. Right click on Desktop and select Properties&lt;br /&gt;2. Select the Desktop tab&lt;br /&gt;3. In the Background window select None&lt;br /&gt;4. Click Ok&lt;br /&gt;DISABLE UNNECESSARY SERVICES&lt;br /&gt;&lt;br /&gt;Because Windows XP has to be all things to all people it has many services running that take up system resources that you will never need. Below is a list of services that can be disabled on most machines:&lt;br /&gt;&lt;br /&gt;Alerter&lt;br /&gt;Clipbook&lt;br /&gt;Computer Browser&lt;br /&gt;Distributed Link Tracking Client&lt;br /&gt;Fast User Switching&lt;br /&gt;Help and Support - (If you use Windows Help and Support leave this enabled)&lt;br /&gt;Human Interface Access Devices&lt;br /&gt;Indexing Service&lt;br /&gt;IPSEC Services&lt;br /&gt;Messenger&lt;br /&gt;Netmeeting Remote Desktop Sharing (disabled for extra security)&lt;br /&gt;Portable Media Serial Number&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;Remote Registry Service&lt;br /&gt;Secondary Logon&lt;br /&gt;Routing &amp;amp; Remote Access (disabled for extra security)&lt;br /&gt;Server&lt;br /&gt;SSDP Discovery Service - (Unplug n' Pray will disable this)&lt;br /&gt;Telnet&lt;br /&gt;TCP/IP NetBIOS Helper&lt;br /&gt;Upload Manager&lt;br /&gt;Universal Plug and Play Device Host&lt;br /&gt;Windows Time&lt;br /&gt;Wireless Zero Configuration (Do not disable if you use a wireless network)&lt;br /&gt;Workstation&lt;br /&gt;To disable these services:&lt;br /&gt;&lt;br /&gt;Go to Start and then Run and type "services.msc"&lt;br /&gt;Doubleclick on the service you want to change&lt;br /&gt;Change the startup type to 'Disable"&lt;br /&gt;&lt;br /&gt;REMOVE ANNOYING DELETE CONFIRMATION MESSAGES&lt;br /&gt;&lt;br /&gt;Although not strictly a performance tweak I love this fix as it makes my machine 'feel' faster. I hate the annoying 'are you sure?' messages that XP displays, especially if I have to use a laptop touchpad to close them. To remove these messages:&lt;br /&gt;&lt;br /&gt;1. Right-click on the 'Recycle Bin' on the desktop and then click 'Properties'&lt;br /&gt;&lt;br /&gt;2. Clear the 'Display Delete Confirmation Dialog' check box and click 'Ok'&lt;br /&gt;&lt;br /&gt;If you do accidently delete a file don't worry as all is not lost. Just go to your Recycle Bin and 'Restore' the file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table align="center" cellspacing="1" cellpadding="5" border="0" bgcolor="#C0C0C0"&gt;&lt;br /&gt;&lt;tr bgcolor="#FFFFFF"&gt;&lt;td&gt;&lt;font style="font-size: 11px; font-family: Verdana;"&gt;&lt;b&gt;Check Page Rank of any web site pages instantly:&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;form action="http://www.prchecker.info/check_page_rank.php" method="post"&gt;&lt;br /&gt;&lt;tr bgcolor="#FFFFFF"&gt;&lt;td&gt;&lt;input type=hidden name="action" value="docheck"&gt;&lt;br /&gt;&lt;input type="text" value="http://" name="urlo" size="30" maxlength="300"&gt;   &lt;br /&gt;&lt;input type="submit" name="submit" value=" Check PR "&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/form&gt;&lt;tr bgcolor="#FFFFFF"&gt;&lt;td&gt;&lt;br /&gt;&lt;font style="font-size: 9px; font-family: Verdana;"&gt;This free page rank checking tool is powered by &lt;a href="http://www.prchecker.info/" target="_blank"&gt;Page Rank Checker&lt;/a&gt; service&lt;/font&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4679918020391923947-5596615947283613253?l=mypartsoflife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mypartsoflife.blogspot.com/feeds/5596615947283613253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mypartsoflife.blogspot.com/2009/11/hackng.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default/5596615947283613253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default/5596615947283613253'/><link rel='alternate' type='text/html' href='http://mypartsoflife.blogspot.com/2009/11/hackng.html' title='Hack&apos;ng'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/06361731535282497179</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='21' src='http://4.bp.blogspot.com/_XCb5PltpFJs/SxFXK9StXGI/AAAAAAAAAAM/o4Qwg2ZvCjk/S220/google-drop-kick.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4679918020391923947.post-2947627231826875028</id><published>2009-11-27T10:43:00.000-08:00</published><updated>2009-12-01T10:20:28.205-08:00</updated><title type='text'>Hack'ng</title><content type='html'>gpedit.msc&lt;br /&gt;&lt;br /&gt;Speed up your internet by 20%&lt;br /&gt;&lt;br /&gt;Microsoft reserves 20% of your available bandwidth for their own purposes&lt;br /&gt;like Windows Updates and interrogating your PC etc&lt;br /&gt;&lt;br /&gt;You can get it back:&lt;br /&gt;&lt;br /&gt;Click Start then Run and type "gpedit.msc" without quotes.This opens the group&lt;br /&gt;policy editor. Then go to:&lt;br /&gt;Local Computer Policy&lt;br /&gt;then Computer Configuration&lt;br /&gt;then Administrative Templates then Network then QOS Packet Scheduler and then to&lt;br /&gt;Limit Reservable Bandwidth&lt;br /&gt;&lt;br /&gt;Double click on Limit Reservable bandwidth. It will say it is not configured,&lt;br /&gt;but the truth is under the 'Explain' tab i.e."By default, the Packet Scheduler&lt;br /&gt;limits the system to 20 percent of the bandwidth of a connection, but you can use&lt;br /&gt; this setting to override the default."&lt;br /&gt;So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow&lt;br /&gt;the system to reserve nothing, rather than the default 20%.It works on Win 2000 as well&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Increase the speed of your internet connection without a new modem&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As more and more people get quick connections to the internet, such as cable or ADSL,&lt;br /&gt; it becomes apparent to the user of a simple dial-up modem that the World Wide Web can&lt;br /&gt; quickly turn into the World Wide Wait. Here a trick that can help speed up your current&lt;br /&gt;modem without shelling out the big bucks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;There is a setting located in your windows registry called the Maximum Transfer Unit (MTU).&lt;br /&gt; This determines the size of the packets of data sent between your and your server.&lt;br /&gt;In Windows 95, this setting is has a value of 1,500 bytes when the actual size of internet&lt;br /&gt;packets is 1,000 bytes. This can sometimes slow things down. To remedy the situation,&lt;br /&gt;simply follow these steps:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In the registry editor (Start &gt; Run &gt; regedit.exe),&lt;br /&gt;navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Class\NetTrans.&lt;br /&gt;In the NetTrans folder you should find another folder&lt;br /&gt;named "000x" in which x represents a fourth digit.&lt;br /&gt;Right-click on the "000x" folder and select New and StringValue.&lt;br /&gt;Rename the item that appears in the panel on the right side to MaxMTU,&lt;br /&gt;then double-click it to bring up the Edit String box and give it a velue of 1002.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Remember to keep playing with the MaxMTU value until you feel that&lt;br /&gt; your internet connection has greatly sped up. Some people report huge speed&lt;br /&gt;gains using this tricks, while others hardly notice a difference. In any case,&lt;br /&gt;it's definetly worth a try.&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;Check out these funny trick.&lt;br /&gt;Copy and paste the java script code to the address bar of your browser&lt;br /&gt;&lt;br /&gt;javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i &gt; 0; i--) {for (j = n; j &gt; 0; j--) {self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)&lt;br /&gt;&lt;br /&gt;2: Press enter and watch your window's "shaking it".&lt;br /&gt;&lt;br /&gt; You can change the value of i if you wish :-)&lt;br /&gt;&lt;br /&gt;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%&lt;br /&gt;&lt;br /&gt;Multiple login in yahoo Without Using any Software&lt;br /&gt;&lt;br /&gt;You can login with multiple id's on the same yahoo messenger&lt;br /&gt;without any download or patch .&lt;br /&gt;Follow these steps&lt;br /&gt;1. Go to Start ----&gt; Run . Type regedit, then enter .&lt;br /&gt;&lt;br /&gt;2.Navigate to HKEY_CURRENT_USER --------&gt; Software ---&gt;yahoo -----&gt;pager----&gt;Test&lt;br /&gt;&lt;br /&gt;3.On the right page , right-click and choose new Dword value .&lt;br /&gt;&lt;br /&gt;4.Rename it as Plural.&lt;br /&gt;&lt;br /&gt;5.Double click and assign a decimal value of 1&lt;br /&gt;Its done!!&lt;br /&gt;Now close registry and restart yahoo messenger and try Multiple Login&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;How to find the IP address of the sender in Gmail, Yahoo! mail or Hotmail&lt;br /&gt;&lt;br /&gt;When you receive an email, you receive more than just the message. The email comes with headers that carry important information that can tell where the email was sent from and possibly who sent it. For that, you would need to find the IP address of the sender. The tutorial below can help you find the IP address of the sender. Note that this will not work if the sender uses anonymous proxy servers&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Log into your Gmail account with your username and password.&lt;br /&gt;2. Open the mail.&lt;br /&gt;3. To display the headers,&lt;br /&gt;* Click on More options corresponding to that thread. You should get a bunch of links.&lt;br /&gt;* Click on Show original&lt;br /&gt;4. You should get headers like this:&lt;br /&gt;Gmail headers : name&lt;br /&gt;Look for Received: from followed by a few hostnames and an IP address between square brackets. In this case, it is&lt;br /&gt;&lt;br /&gt;65.119.112.245.&lt;br /&gt;That is be the IP address of the sender!&lt;br /&gt;5. Track the IP address of the sender&lt;br /&gt;Finding IP address in Yahoo! Mail&lt;br /&gt;1. Log into your Yahoo! mail with your username and password.&lt;br /&gt;2. Click on Inbox or whichever folder you have stored your mail.&lt;br /&gt;3. Open the mail.&lt;br /&gt;4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,&lt;br /&gt;* Click on Options on the top-right corner&lt;br /&gt;* In the Mail Options page, click on General Preferences&lt;br /&gt;* Scroll down to Messages where you have the Headers option&lt;br /&gt;* Make sure that Show all headers on incoming messages is selected&lt;br /&gt;* Click on the Save button&lt;br /&gt;* Go back to the mails and open that mail&lt;br /&gt;5. You should see similar headers like this:&lt;br /&gt;Yahoo! headers : name&lt;br /&gt;Look for Received: from followed by the IP address between square brackets [ ]. Here, it is 202.65.138.109.&lt;br /&gt;That is be the IP address of the sender!&lt;br /&gt;6. Track the IP address of the sender&lt;br /&gt;Finding IP address in Hotmail&lt;br /&gt;1. Log into your Hotmail account with your username and password.&lt;br /&gt;2. Click on the Mail tab on the top.&lt;br /&gt;3. Open the mail.&lt;br /&gt;4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,&lt;br /&gt;* Click on Options on the top-right corner&lt;br /&gt;* In the Mail Options page, click on Mail Display Settings&lt;br /&gt;* In Message Headers, make sure Advanced option is checked&lt;br /&gt;* Click on Ok button&lt;br /&gt;* Go back to the mails and open that mail&lt;br /&gt;5. If you find a header with X-Originating-IP: followed by an IP address, that is the sender's IP address&lt;br /&gt;Hotmail headers : name ,In this case the IP address of the sender is [68.34.60.59]. Jump to step 9.&lt;br /&gt;6. If you find a header with Received: from followed by a Gmail proxy like this&lt;br /&gt;Hotmail headers : name&lt;br /&gt;Look for Received: from followed by IP address within square brackets[].&lt;br /&gt;In this case, the IP address of the sender is [69.140.7.58]. Jump to step 9.&lt;br /&gt;7. Or else if you have headers like this&lt;br /&gt;Hotmail headers : name&lt;br /&gt;Look for Received: from followed by IP address within square brackets[].&lt;br /&gt;In this case, the IP address of the sender is [61.83.145.129] (Spam mail). Jump to step 9.&lt;br /&gt;8. * If you have multiple Received: from headers, eliminate the ones that have proxy.anyknownserver.com.&lt;br /&gt;9. Track the IP address of the sender&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;MAKE YOUR MENUS LOAD FASTER&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is one of my favorite tweaks as it makes a huge difference to how fast&lt;br /&gt;your machine will 'feel'. What this tweak does is remove the slight delay between&lt;br /&gt;clicking on a menu and XP displaying the menu.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Go to Start then Run&lt;br /&gt;Type 'Regedit' then click 'Ok'&lt;br /&gt;Find "HKEY_CURRENT_USER\Control Panel\Desktop\"&lt;br /&gt;Select "MenuShowDelay"&lt;br /&gt;Right click and select "Modify'&lt;br /&gt;Reduce the number to around "100"&lt;br /&gt;This is the delay time before a menu is opened. You can set it to "0" but it can make&lt;br /&gt;windows really hard to use as menus will open if you just look at them - well move your&lt;br /&gt;mouse over them anyway. I tend to go for anywhere between 50-150 depending on my mood.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;z##########################################################################################&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IMPROVE XP SHUTDOWN SPEED&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This tweak reduces the time XP waits before automatically closing any running programs when you give&lt;br /&gt;it the command to shutdown.&lt;br /&gt;&lt;br /&gt;Go to Start then select Run&lt;br /&gt;Type 'Regedit' and click ok&lt;br /&gt;Find 'HKEY_CURRENT_USER\Control Panel\Desktop\'&lt;br /&gt;Select 'WaitToKillAppTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;Click 'OK'&lt;br /&gt;Now select 'HungAppTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;&lt;br /&gt;Click 'OK'&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now find 'HKEY_USERS\.DEFAULT\Control Panel\Desktop'&lt;br /&gt;Select 'WaitToKillAppTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;Click 'OK'&lt;br /&gt;Now find 'HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\'&lt;br /&gt;Select 'WaitToKillServiceTimeout'&lt;br /&gt;Right click and select 'Modify'&lt;br /&gt;Change the value to '1000'&lt;br /&gt;Click 'OK'&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;Boot your Computer Faster&lt;br /&gt;&lt;br /&gt;Many computers take a lot of time to boot (or start ).This is due to many reasons.&lt;br /&gt;&lt;br /&gt;Some slight changes can do wonders for your system:&lt;br /&gt;&lt;br /&gt;1.Press start-&gt;run then type msconfig and press enter.&lt;br /&gt;&lt;br /&gt;Go to the startup tab. Here you will see a list of startup items. These are all the programs&lt;br /&gt; that automatically start when you boot your PC. It is these that slow down the boot up process.&lt;br /&gt;&lt;br /&gt;So uncheck all the unwanted items like ms-office, messengers other utilities that u may not need&lt;br /&gt;at startup). Don't uncheck your antivirus software.&lt;br /&gt;&lt;br /&gt;Restart your Pc to and see for yourself, your pc will now boot faster....&lt;br /&gt;&lt;br /&gt;2.A great new feature in Microsoft Windows XP is the ability to do a boot defragment.&lt;br /&gt;This places all boot files next to each other on the disk to allow for faster booting.&lt;br /&gt;By default this option is enabled, but on some systems it is not, so below is the information on how to turn it on:&lt;br /&gt;&lt;br /&gt;Go to Start Menu and Click Run&lt;br /&gt;Type in regedit then click ok&lt;br /&gt;Find "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOpt imizeFunction"&lt;br /&gt;Select "Enable" from the list on the right&lt;br /&gt;Right on it and select "Modify"&lt;br /&gt;Change the value to Y .&lt;br /&gt;Reboot your Pc and see the change yourself.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.SPEED UP BOOT BY DISABLING UNUSED PORTS.!!&lt;br /&gt;&lt;br /&gt;You may have tried many tweaks like modifying windows XP start-up applications,&lt;br /&gt;prefetches, unload DLLs method, etc. And yes those methods do work for me.&lt;br /&gt;I have just accidentally found out another way to give you an extra boost&lt;br /&gt;in windows XP's boot performance. This is done by disabling your unused devices in&lt;br /&gt;Device Manager. for example, if you don't have input devices that are connected to&lt;br /&gt;one of your USB's or COM ports, disabling them will give you an extra performance boost&lt;br /&gt; in booting. Go to Control Panel -&gt; System -&gt; Hardware tab -&gt; device manager Disable devices&lt;br /&gt;&lt;br /&gt;that you don't use for your PC and then restart&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&lt;br /&gt;Trick to lock your private folder&lt;br /&gt;&lt;br /&gt;Suppose you want to lock the folder movies in d: which has the path&lt;br /&gt;D:\movies.In the same drive create a text file and type&lt;br /&gt;ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}&lt;br /&gt;Now save this text file as loc.bat&lt;br /&gt;Create another text file and type in it&lt;br /&gt;ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies&lt;br /&gt;Now save this text file as key.bat&lt;br /&gt;2 batch files loc and key. Press loc and the folder games will change&lt;br /&gt;to control panel and you cannot view its contents. Press key and you will get back your original folder.&lt;br /&gt;&lt;br /&gt;===================================================================================&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Single Click Shutdown&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Did you know that in Windows XP you can shut down your computer&lt;br /&gt;from the (eventually DOS prompt) command line box? Moreover,&lt;br /&gt; you can do this by clicking your mouse only once.&lt;br /&gt;All you need to do is... right-click on an empty&lt;br /&gt;Desktop spot -&gt; select New -&gt; Shortcut -&gt; type shutdown followed by a space,&lt;br /&gt;and then enter one or more of the parameters listed below -&gt; click Next -&gt; type a suggestive name&lt;br /&gt;for your new shortcut -&gt; finally, click Finish.&lt;br /&gt;&lt;br /&gt;This is the Shutdown.exe (located in %systemroot%\System32, usually C:\Windows\System32) syntax:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;shutdown [-i|-l|-s|-r|-a] [-f] [-m \\computername] [-t xx] [-c "Text"] [-d[u][p]:xx:yy]&gt;&lt;br /&gt;&lt;br /&gt;Valid command line switches:&lt;br /&gt;&lt;br /&gt;-a = Abort system shutdown in progress ONLY IF the -t xx timeout option was already set to ANY value other than 0.&lt;br /&gt; ALL switches except -l and -m are ignored during abort.&lt;br /&gt;&lt;br /&gt;-c "Text" = Text comment (case insensitive) to be displayed in the Message area of the System Shutdown window.&lt;br /&gt; MUST be enclosed between quotes. Maximum allowed 127 ASCII characters.&lt;br /&gt;&lt;br /&gt;-d [u][p]:xx:yy = Reason code for shutdown:&lt;br /&gt;u = User code.&lt;br /&gt;p = Planned shutdown code.&lt;br /&gt;xx = Major reason code. Positive integer number less than 256.&lt;br /&gt;yy = Minor reason code. Positive integer number less than 65536.&lt;br /&gt;&lt;br /&gt;-f = Force running applications to close without warning.&lt;br /&gt;&lt;br /&gt;-i = Display the shutdown interface (GUI). MUST be the first option!&lt;br /&gt;&lt;br /&gt;-l = Log off the current user of the local computer (default action).&lt;br /&gt; Can NOT be used with the -m option unless the current user has Sysadmin rights,&lt;br /&gt; in which case the -m switch takes precedence&lt;br /&gt;&lt;br /&gt;\\computername = Remote/network computer name (most always case sensitive) to log off/restart/shut down.&lt;br /&gt; Current user MUST have Sysadmin rights to be allowed to use this switch!&lt;br /&gt;&lt;br /&gt;-s = Shut down the local computer.&lt;br /&gt;&lt;br /&gt;-r = Shut down and restart (reboot) the local computer.&lt;br /&gt;&lt;br /&gt;-t xx = Set shutdown timer to timeout for xx seconds. IF NOT specified defaults to 20 seconds.&lt;br /&gt;Allowed values between 0 and 99 seconds. The -a switch is the ONLY one that CAN be used during the timeout period&lt;br /&gt;&lt;br /&gt;NOTES:&lt;br /&gt;The dash (-) in front of these switches can be replaced by a forward slash (/).&lt;br /&gt;&lt;br /&gt;Spaces are NOT required to separate the shutdown command from ANY following switches,&lt;br /&gt; but ARE required to separate ANY switch from its following parameter(s), if any.&lt;br /&gt;For example:&lt;br /&gt;&lt;br /&gt;shutdown -s -c "Shutting down!" -t 3&lt;br /&gt;&lt;br /&gt;tells your computer to shutdown after waiting for 3 seconds while the System Shutdown window will display&lt;br /&gt;text above in the Message area.&lt;br /&gt;&lt;br /&gt;Optional: after you're done creating your customized&lt;br /&gt;shortcut for shutdown -&gt; right-click on it -&gt; select Properties -&gt; enter&lt;br /&gt; your desired key "combo" in the Shortcut Key box (e.g. Ctrl + Alt + End) -&gt; click OK/Apply.&lt;br /&gt;From now on just left-click on your shutdown shortcut or hit that&lt;br /&gt;key combination to turn off/restart/log off your computer.&lt;br /&gt;&lt;br /&gt;try it out!!!!!!!&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||&lt;br /&gt;&lt;br /&gt;Hack Windows XP Login Password&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hack Admin Password From User Mode&lt;br /&gt;Disclaimer: Use this article for eductational purpose ONLY.&lt;br /&gt;&lt;br /&gt;Follow these steps:&lt;br /&gt;1. Open command prompt (Start-&gt;Run-&gt;cmd),&lt;br /&gt;2. Enter the following command, then press ENTER&lt;br /&gt;&lt;br /&gt;3. Enter the followin command, then press ENTER:&lt;br /&gt;compmgmt.msc&lt;br /&gt;This should open the computer management console.&lt;br /&gt;4. Go to local users &amp;amp; groups-&gt;users. Right click on any user and select "set password".&lt;br /&gt;&lt;br /&gt;If you get a "access denied" do the following:&lt;br /&gt;&lt;br /&gt;start&gt;run&gt;cmd&lt;br /&gt;then use following commands&lt;br /&gt;1) net user test /add (this command will make test named user)&lt;br /&gt;2) net localgroup administrators test /add (this command will make test user as administrators rights)&lt;br /&gt;&lt;br /&gt;and use net user command to reset your admin. password&lt;br /&gt;&lt;br /&gt;Alternative&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What if u don't know the password of your admin and still want to hack and change ..&lt;br /&gt;yea u can do it ..in a very easy manner.. check this. just follow the steps..&lt;br /&gt;this doesn't require u to know the admin password but still u can change it..&lt;br /&gt;Start &gt;&gt; Run &gt;&gt; [type]cmd // this will open your command prompt&lt;br /&gt;[type] net(space)user(press enter)&lt;br /&gt;[type] net(space)user(space)[windowsloginid](sp ace)*(press enter)&lt;br /&gt;&lt;br /&gt;// for e.g. : net user HOME *(press enter)&lt;br /&gt;&lt;br /&gt;[type] new password (press enter) and retype it (press enter)..&lt;br /&gt;it will show u confirmation... // caution it wont show u the password u type..&lt;br /&gt;but it still types.. the blinking pointer will b there at the same place.. but it still works..&lt;br /&gt;// for e.g. : password changed successfully&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;Run Commands In Windows XP&lt;br /&gt;&lt;br /&gt;You can access all these programs by going through START/RUN or Simply Click Windows Key+r&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL Client Configuration - cliconfg&lt;br /&gt;&lt;br /&gt;System Configuration Editor - sysedit&lt;br /&gt;&lt;br /&gt;System Configuration Utility - msconfig&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Scan Immediately)- sfc /scannow&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Scan Once At Next Boot)- sfc /scanonce&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Scan On Every Boot) - sfc /scanboot&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Return to Default Setting)- sfc /revert&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Purge File Cache)- sfc /purgecache&lt;br /&gt;&lt;br /&gt;System File Checker Utility (Set Cache Size to size x)-sfc/cachesize=x&lt;br /&gt;System Properties - sysdm.cpl&lt;br /&gt;&lt;br /&gt;Task Manager – taskmgr&lt;br /&gt;&lt;br /&gt;TCP Tester - tcptest&lt;br /&gt;&lt;br /&gt;Telnet Client - telnet&lt;br /&gt;&lt;br /&gt;Tweak UI (if installed) - tweakui&lt;br /&gt;&lt;br /&gt;User Account Management- nusrmgr.cpl&lt;br /&gt;&lt;br /&gt;Utility Manager - utilman&lt;br /&gt;&lt;br /&gt;Windows Address Book - wab&lt;br /&gt;&lt;br /&gt;Windows Address Book Import Utility - wabmig&lt;br /&gt;&lt;br /&gt;Windows Backup Utility (if installed)- ntbackup&lt;br /&gt;&lt;br /&gt;Windows Explorer - explorer&lt;br /&gt;&lt;br /&gt;Windows Firewall- firewall.cpl&lt;br /&gt;&lt;br /&gt;Windows Magnifier- magnify&lt;br /&gt;&lt;br /&gt;Windows Management Infrastructure - wmimgmt.msc&lt;br /&gt;&lt;br /&gt;Windows Media Player - wmplayer&lt;br /&gt;&lt;br /&gt;Windows Messenger - msmsgs&lt;br /&gt;&lt;br /&gt;Windows Picture Import Wizard (need camera connected)- wiaacmgr&lt;br /&gt;&lt;br /&gt;Windows System Security Tool – syskey&lt;br /&gt;&lt;br /&gt;Windows Update Launches - wupdmgr&lt;br /&gt;&lt;br /&gt;Windows Version (to show which version of windows)- winver&lt;br /&gt;&lt;br /&gt;Windows XP Tour Wizard - tourstart&lt;br /&gt;&lt;br /&gt;Wordpad - write&lt;br /&gt;&lt;br /&gt;Password Properties - password.cpl&lt;br /&gt;&lt;br /&gt;Performance Monitor - perfmon.msc&lt;br /&gt;&lt;br /&gt;Phone and Modem Options - telephon.cpl&lt;br /&gt;&lt;br /&gt;Phone Dialer - dialer&lt;br /&gt;&lt;br /&gt;Pinball Game - pinball&lt;br /&gt;&lt;br /&gt;Power Configuration - powercfg.cpl&lt;br /&gt;&lt;br /&gt;Printers and Faxes - control printers&lt;br /&gt;&lt;br /&gt;Printers Folder – printers&lt;br /&gt;&lt;br /&gt;Private Character Editor - eudcedit&lt;br /&gt;&lt;br /&gt;Quicktime (If Installed)- QuickTime.cpl&lt;br /&gt;&lt;br /&gt;Real Player (if installed)- realplay&lt;br /&gt;&lt;br /&gt;Regional Settings - intl.cpl&lt;br /&gt;&lt;br /&gt;Registry Editor - regedit&lt;br /&gt;&lt;br /&gt;Registry Editor - regedit32&lt;br /&gt;&lt;br /&gt;Remote Access Phonebook - rasphone&lt;br /&gt;&lt;br /&gt;Remote Desktop - mstsc&lt;br /&gt;&lt;br /&gt;Removable Storage - ntmsmgr.msc&lt;br /&gt;&lt;br /&gt;Removable Storage Operator Requests - ntmsoprq.msc&lt;br /&gt;&lt;br /&gt;Resultant Set of Policy (XP Prof) - rsop.msc&lt;br /&gt;&lt;br /&gt;Scanners and Cameras - sticpl.cpl&lt;br /&gt;&lt;br /&gt;Scheduled Tasks - control schedtasks&lt;br /&gt;&lt;br /&gt;Security Center - wscui.cpl&lt;br /&gt;&lt;br /&gt;Services - services.msc&lt;br /&gt;&lt;br /&gt;Shared Folders - fsmgmt.msc&lt;br /&gt;&lt;br /&gt;Shuts Down Windows - shutdown&lt;br /&gt;&lt;br /&gt;Sounds and Audio - mmsys.cpl&lt;br /&gt;&lt;br /&gt;Spider Solitare Card Game - spider&lt;br /&gt;&lt;br /&gt;Malicious Software Removal Tool - mrt&lt;br /&gt;&lt;br /&gt;Microsoft Access (if installed) - access.cpl&lt;br /&gt;&lt;br /&gt;Microsoft Chat - winchat&lt;br /&gt;&lt;br /&gt;Microsoft Excel (if installed) - excel&lt;br /&gt;&lt;br /&gt;Microsoft Frontpage (if installed)- frontpg&lt;br /&gt;&lt;br /&gt;Microsoft Movie Maker - moviemk&lt;br /&gt;&lt;br /&gt;Microsoft Paint - mspaint&lt;br /&gt;&lt;br /&gt;Microsoft Powerpoint (if installed)- powerpnt&lt;br /&gt;&lt;br /&gt;Microsoft Word (if installed)- winword&lt;br /&gt;&lt;br /&gt;Microsoft Syncronization Tool - mobsync&lt;br /&gt;&lt;br /&gt;Minesweeper Game - winmine&lt;br /&gt;&lt;br /&gt;Mouse Properties - control mouse&lt;br /&gt;&lt;br /&gt;Mouse Properties - main.cpl&lt;br /&gt;&lt;br /&gt;Nero (if installed)- nero&lt;br /&gt;&lt;br /&gt;Netmeeting - conf&lt;br /&gt;&lt;br /&gt;Network Connections - control netconnections&lt;br /&gt;&lt;br /&gt;Network Connections - ncpa.cpl&lt;br /&gt;&lt;br /&gt;Network Setup Wizard - netsetup.cpl&lt;br /&gt;&lt;br /&gt;Notepad - notepad&lt;br /&gt;&lt;br /&gt;Nview Desktop Manager (If Installed)- nvtuicpl.cpl&lt;br /&gt;&lt;br /&gt;Object Packager - packager&lt;br /&gt;&lt;br /&gt;ODBC Data Source Administrator- odbccp32.cpl&lt;br /&gt;&lt;br /&gt;On Screen Keyboard - osk&lt;br /&gt;&lt;br /&gt;Opens AC3 Filter (If Installed) - ac3filter.cpl&lt;br /&gt;&lt;br /&gt;Outlook Express - msimn&lt;br /&gt;&lt;br /&gt;Paint – pbrush&lt;br /&gt;&lt;br /&gt;Keyboard Properties - control keyboard&lt;br /&gt;&lt;br /&gt;IP Configuration (Display Connection Configuration) - ipconfi/all&lt;br /&gt;&lt;br /&gt;IP Configuration (Display DNS Cache Contents)- ipconfig /displaydns&lt;br /&gt;&lt;br /&gt;IP Configuration (Delete DNS Cache Contents)- ipconfig /flushdns&lt;br /&gt;&lt;br /&gt;IP Configuration (Release All Connections)- ipconfig /release&lt;br /&gt;&lt;br /&gt;IP Configuration (Renew All Connections)- ipconfig /renew&lt;br /&gt;&lt;br /&gt;IP Configuration(RefreshesDHCP&amp;amp;Re-RegistersDNS)-ipconfig/registerdns&lt;br /&gt;&lt;br /&gt;IP Configuration (Display DHCP Class ID)- ipconfig/showclassid&lt;br /&gt;&lt;br /&gt;IP Configuration (Modifies DHCP Class ID)- ipconfig /setclassid&lt;br /&gt;&lt;br /&gt;Java Control Panel (If Installed)- jpicpl32.cpl&lt;br /&gt;&lt;br /&gt;Java Control Panel (If Installed)- javaws&lt;br /&gt;&lt;br /&gt;Local Security Settings - secpol.msc&lt;br /&gt;&lt;br /&gt;Local Users and Groups - lusrmgr.msc&lt;br /&gt;&lt;br /&gt;Logs You Out Of Windows - logoff.....&lt;br /&gt;&lt;br /&gt;Accessibility Controls - access.cpl&lt;br /&gt;&lt;br /&gt;Accessibility Wizard - accwiz&lt;br /&gt;&lt;br /&gt;Add Hardware - Wizardhdwwiz.cpl&lt;br /&gt;&lt;br /&gt;Add/Remove Programs - appwiz.cpl&lt;br /&gt;&lt;br /&gt;Administrative Tools control - admintools&lt;br /&gt;&lt;br /&gt;Adobe Acrobat (if installed) - acrobat&lt;br /&gt;&lt;br /&gt;Adobe Designer (if installed)- acrodist&lt;br /&gt;&lt;br /&gt;Adobe Distiller (if installed)- acrodist&lt;br /&gt;&lt;br /&gt;Adobe ImageReady (if installed)- imageready&lt;br /&gt;&lt;br /&gt;Adobe Photoshop (if installed)- photoshop&lt;br /&gt;&lt;br /&gt;Automatic Updates - wuaucpl.cpl&lt;br /&gt;&lt;br /&gt;Bluetooth Transfer Wizard – fsquirt&lt;br /&gt;&lt;br /&gt;Calculator - calc&lt;br /&gt;&lt;br /&gt;Certificate Manager - certmgr.msc&lt;br /&gt;&lt;br /&gt;Character Map - charmap&lt;br /&gt;&lt;br /&gt;Check Disk Utility - chkdsk&lt;br /&gt;&lt;br /&gt;Clipboard Viewer - clipbrd&lt;br /&gt;&lt;br /&gt;Command Prompt - cmd&lt;br /&gt;&lt;br /&gt;Component Services - dcomcnfg&lt;br /&gt;&lt;br /&gt;Computer Management - compmgmt.msc&lt;br /&gt;&lt;br /&gt;Control Panel - control&lt;br /&gt;&lt;br /&gt;Date and Time Properties - timedate.cpl&lt;br /&gt;&lt;br /&gt;DDE Shares - ddeshare&lt;br /&gt;&lt;br /&gt;Device Manager - devmgmt.msc&lt;br /&gt;&lt;br /&gt;Direct X Control Panel (If Installed)- directx.cpl&lt;br /&gt;&lt;br /&gt;Direct X Troubleshooter- dxdiag&lt;br /&gt;&lt;br /&gt;Disk Cleanup Utility- cleanmgr&lt;br /&gt;&lt;br /&gt;Disk Defragment- dfrg.msc&lt;br /&gt;&lt;br /&gt;Disk Management- diskmgmt.msc&lt;br /&gt;&lt;br /&gt;Disk Partition Manager- diskpart&lt;br /&gt;&lt;br /&gt;Display Properties- control desktop&lt;br /&gt;&lt;br /&gt;Display Properties- desk.cpl&lt;br /&gt;&lt;br /&gt;Display Properties (w/Appearance Tab Preselected)- control color&lt;br /&gt;&lt;br /&gt;Dr. Watson System Troubleshooting Utility- drwtsn32&lt;br /&gt;&lt;br /&gt;Driver Verifier Utility- verifier&lt;br /&gt;&lt;br /&gt;Event Viewer- eventvwr.msc&lt;br /&gt;&lt;br /&gt;Files and Settings Transfer Tool- migwiz&lt;br /&gt;&lt;br /&gt;File Signature Verification Tool- sigverif&lt;br /&gt;&lt;br /&gt;Findfast- findfast.cpl&lt;br /&gt;&lt;br /&gt;Firefox (if installed)- firefox&lt;br /&gt;&lt;br /&gt;Folders Properties- control folders&lt;br /&gt;&lt;br /&gt;Fonts- control fonts&lt;br /&gt;&lt;br /&gt;Fonts Folder- fonts&lt;br /&gt;&lt;br /&gt;Free Cell Card Game- freecell&lt;br /&gt;&lt;br /&gt;Game Controllers- joy.cpl&lt;br /&gt;&lt;br /&gt;Group Policy Editor (XP Prof)- gpedit.msc&lt;br /&gt;&lt;br /&gt;Hearts Card Game- mshearts&lt;br /&gt;&lt;br /&gt;Help and Support- helpctr&lt;br /&gt;&lt;br /&gt;HyperTerminal- hypertrm&lt;br /&gt;&lt;br /&gt;Iexpress Wizard- iexpress&lt;br /&gt;&lt;br /&gt;Indexing Service- ciadv.msc&lt;br /&gt;&lt;br /&gt;Internet Connection Wizard- icwconn1&lt;br /&gt;&lt;br /&gt;Internet Explorer- iexplore&lt;br /&gt;&lt;br /&gt;Internet Setup Wizard- inetwiz&lt;br /&gt;&lt;br /&gt;Internet Properties- inetcpl.cpl&lt;br /&gt;&lt;br /&gt;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%&lt;br /&gt;&lt;br /&gt;Make Your Windows Fast As Never Before&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Disable CD Autorun&lt;br /&gt;( WinXP PRO Only)&lt;br /&gt;&lt;br /&gt;1) Click Start, Run and enter GPEDIT.MSC&lt;br /&gt;&lt;br /&gt;2) Go to Computer Configuration, Administrative Templates, System.&lt;br /&gt;&lt;br /&gt;3) Locate the entry for Turn autoplay off and modify it as you desire.&lt;br /&gt;&lt;br /&gt;peed Up Browsing&lt;br /&gt;When you connect to a web site your computer sends information back and forth. Some of this information deals with resolving the site name to an IP address, the stuff that TCP/IP really deals with, not words. This is DNS information and is used so that you will not need to ask for the site location each and every time you visit the site. Although Windows XP and Windows XP have a pretty efficient DNS cache, you can increase its overall performance by increasing its size. You can do this with the registry entries below:&lt;br /&gt;&lt;br /&gt;Windows Registry Editor Version 5.00&lt;br /&gt;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]&lt;br /&gt;"CacheHashTableBucketSize"=dword:00000001&lt;br /&gt;"CacheHashTableSize"=dword:00000180&lt;br /&gt;"MaxCacheEntryTtlLimit"=dword:0000fa00&lt;br /&gt;"MaxSOACacheEntryTtlLimit"=dword:0000012d&lt;br /&gt;&lt;br /&gt;Make a new text file and rename it to dnscache.reg. Then copy and paste the above into it and save it. Merge it into the registry&lt;br /&gt;&lt;br /&gt;DISABLE INDEXING SERVICES&lt;br /&gt;&lt;br /&gt;Indexing Services is a small little program that uses large amounts of RAM and can often make a computer endlessly loud and noisy. This system process indexes and updates lists of all the files that are on your computer. It does this so that when you do a search for something on your computer, it will search faster by scanning the index lists. If you don't search your computer often, or even if you do search often, this system service is completely unnecessary. To disable do the following:&lt;br /&gt;&lt;br /&gt;1. Go to Start&lt;br /&gt;2. Click Settings&lt;br /&gt;3. Click Control Panel&lt;br /&gt;4. Double-click Add/Remove Programs&lt;br /&gt;5. Click the Add/Remove Window Components&lt;br /&gt;6. Uncheck the Indexing services&lt;br /&gt;7. Click Next&lt;br /&gt;&lt;br /&gt;OPTIMISE DISPLAY SETTINGS&lt;br /&gt;&lt;br /&gt;Windows XP can look sexy but displaying all the visual items can waste system resources. To optimize:&lt;br /&gt;&lt;br /&gt;1.Go to Start&lt;br /&gt;2. Click Settings&lt;br /&gt;3. Click Control Panel&lt;br /&gt;4. Click System&lt;br /&gt;5. Click Advanced tab&lt;br /&gt;6. In the Performance tab click Settings&lt;br /&gt;7. Leave only the following ticked:&lt;br /&gt;- Show shadows under menus&lt;br /&gt;- Show shadows under mouse pointer&lt;br /&gt;- Show translucent selection rectangle&lt;br /&gt;- Use drop shadows for icons labels on the desktop&lt;br /&gt;- Use visual styles on windows and buttons&lt;br /&gt;&lt;br /&gt;SPEEDUP FOLDER BROWSING&lt;br /&gt;&lt;br /&gt;You may have noticed that everytime you open my computer to browse folders that there is a slight delay. This is because Windows XP automatically searches for network files and printers everytime you open Windows Explorer. To fix this and to increase browsing significantly:&lt;br /&gt;&lt;br /&gt;1. Open My Computer&lt;br /&gt;2. Click on Tools menu&lt;br /&gt;3. Click on Folder Options&lt;br /&gt;4. Click on the View tab.&lt;br /&gt;5. Uncheck the Automatically search for network folders and printers check box&lt;br /&gt;6. Click Apply&lt;br /&gt;7. Click Ok&lt;br /&gt;8. Reboot your computer&lt;br /&gt;&lt;br /&gt;REMOVE THE DESKTOP PICTURE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Your desktop background consumes a fair amount of memory and can slow the loading time of your system. Removing it will improve performance.&lt;br /&gt;&lt;br /&gt;1. Right click on Desktop and select Properties&lt;br /&gt;2. Select the Desktop tab&lt;br /&gt;3. In the Background window select None&lt;br /&gt;4. Click Ok&lt;br /&gt;DISABLE UNNECESSARY SERVICES&lt;br /&gt;&lt;br /&gt;Because Windows XP has to be all things to all people it has many services running that take up system resources that you will never need. Below is a list of services that can be disabled on most machines:&lt;br /&gt;&lt;br /&gt;Alerter&lt;br /&gt;Clipbook&lt;br /&gt;Computer Browser&lt;br /&gt;Distributed Link Tracking Client&lt;br /&gt;Fast User Switching&lt;br /&gt;Help and Support - (If you use Windows Help and Support leave this enabled)&lt;br /&gt;Human Interface Access Devices&lt;br /&gt;Indexing Service&lt;br /&gt;IPSEC Services&lt;br /&gt;Messenger&lt;br /&gt;Netmeeting Remote Desktop Sharing (disabled for extra security)&lt;br /&gt;Portable Media Serial Number&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;Remote Registry Service&lt;br /&gt;Secondary Logon&lt;br /&gt;Routing &amp;amp; Remote Access (disabled for extra security)&lt;br /&gt;Server&lt;br /&gt;SSDP Discovery Service - (Unplug n' Pray will disable this)&lt;br /&gt;Telnet&lt;br /&gt;TCP/IP NetBIOS Helper&lt;br /&gt;Upload Manager&lt;br /&gt;Universal Plug and Play Device Host&lt;br /&gt;Windows Time&lt;br /&gt;Wireless Zero Configuration (Do not disable if you use a wireless network)&lt;br /&gt;Workstation&lt;br /&gt;To disable these services:&lt;br /&gt;&lt;br /&gt;Go to Start and then Run and type "services.msc"&lt;br /&gt;Doubleclick on the service you want to change&lt;br /&gt;Change the startup type to 'Disable"&lt;br /&gt;&lt;br /&gt;REMOVE ANNOYING DELETE CONFIRMATION MESSAGES&lt;br /&gt;&lt;br /&gt;Although not strictly a performance tweak I love this fix as it makes my machine 'feel' faster. I hate the annoying 'are you sure?' messages that XP displays, especially if I have to use a laptop touchpad to close them. To remove these messages:&lt;br /&gt;&lt;br /&gt;1. Right-click on the 'Recycle Bin' on the desktop and then click 'Properties'&lt;br /&gt;&lt;br /&gt;2. Clear the 'Display Delete Confirmation Dialog' check box and click 'Ok'&lt;br /&gt;&lt;br /&gt;If you do accidently delete a file don't worry as all is not lost. Just go to your Recycle Bin and 'Restore' the file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                                                                                                                                                     &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table align="center" cellspacing="1" cellpadding="5" border="0" bgcolor="#C0C0C0"&gt;&lt;br /&gt;&lt;tr bgcolor="#FFFFFF"&gt;&lt;td&gt;&lt;font style="font-size: 11px; font-family: Verdana;"&gt;&lt;b&gt;Check Page Rank of any web site pages instantly:&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;form action="http://www.prchecker.info/check_page_rank.php" method="post"&gt;&lt;br /&gt;&lt;tr bgcolor="#FFFFFF"&gt;&lt;td&gt;&lt;input type=hidden name="action" value="docheck"&gt;&lt;br /&gt;&lt;input type="text" value="http://" name="urlo" size="30" maxlength="300"&gt;   &lt;br /&gt;&lt;input type="submit" name="submit" value=" Check PR "&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/form&gt;&lt;tr bgcolor="#FFFFFF"&gt;&lt;td&gt;&lt;br /&gt;&lt;font style="font-size: 9px; font-family: Verdana;"&gt;This free page rank checking tool is powered by &lt;a href="http://www.prchecker.info/" target="_blank"&gt;Page Rank Checker&lt;/a&gt; service&lt;/font&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4679918020391923947-2947627231826875028?l=mypartsoflife.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mypartsoflife.blogspot.com/feeds/2947627231826875028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://mypartsoflife.blogspot.com/2009/11/hackng_27.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default/2947627231826875028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4679918020391923947/posts/default/2947627231826875028'/><link rel='alternate' type='text/html' href='http://mypartsoflife.blogspot.com/2009/11/hackng_27.html' title='Hack&apos;ng'/><author><name>Ravi</name><uri>http://www.blogger.com/profile/06361731535282497179</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='21' src='http://4.bp.blogspot.com/_XCb5PltpFJs/SxFXK9StXGI/AAAAAAAAAAM/o4Qwg2ZvCjk/S220/google-drop-kick.jpg'/></author><thr:total>0</thr:total></entry></feed>
