<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techtracer &#187; Windows</title>
	<atom:link href="http://techtracer.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://techtracer.com</link>
	<description>Tracing the course of Web Technology</description>
	<lastBuildDate>Mon, 26 Sep 2011 12:30:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
<image>
  <link>http://techtracer.com</link>
  <url>http://techtracer.com/wp-includes/images/favicon.png</url>
  <title>Techtracer</title>
</image>
		<item>
		<title>3 Easy Steps to Install MySQL on Windows XP</title>
		<link>http://techtracer.com/2008/06/09/3-easy-steps-to-install-mysql-on-windows-xp/</link>
		<comments>http://techtracer.com/2008/06/09/3-easy-steps-to-install-mysql-on-windows-xp/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 17:09:34 +0000</pubDate>
		<dc:creator>nitinpai</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtracer.com/?p=250</guid>
		<description><![CDATA[This article needed to be written from a long time and since it was not, I almost suffered the same hiccups during the installing of MySQL on Windows XP. Every single time I had to search the internet for the solutions which I often forgot over a period of time. So today without any procrastination, [...]]]></description>
			<content:encoded><![CDATA[<p>This article needed to be written from a long time and since it was not, I almost suffered the same hiccups during the <strong>installing of MySQL on Windows XP</strong>. Every single time I had to search the internet for the solutions which I often forgot over a period of time.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-251" title="logo_mysql_sun" src="http://techtracer.com/wp-content/uploads/2008/06/logo_mysql_sun.gif" alt="logo_mysql_sun" width="205" height="68" /></p>
<p>So today without any procrastination, I intend to put down the simplest of the steps to configure and run MySQL on Windows XP in the quickest of the time. First and foremost, as I always tend to follow a course is, break down the task into <strong>3 steps</strong>. They are:</p>
<p><strong><span style="text-decoration: underline;">Step 1: Getting the software</span><br />
</strong></p>
<p>Download the latest version of MySQL from the <a href="http://dev.mysql.com/downloads/" target="_blank">community site</a>. Unpack it into your desired folder. It is always a good practice to download the <strong>zipped archive</strong> of MySQL binary distribution since using the one click installer, you might sometimes lose the power of configuration manually.</p>
<p>Its also a better way to understand configuring manually since if you switch to a Unix based environment later on, you will have to carry out a similar procedure and there is usually no one click installer in such environments.</p>
<blockquote><p>I unpacked MySQL in <em>C:\Program Files\mysql-5.0.45-win32</em></p></blockquote>
<p><span style="text-decoration: underline;"><strong>Step 2 :  Configuring the environment</strong></span></p>
<p>While configuring in the Windows environment you have to do two things. One, putting a file having a name <strong>my.ini</strong> in the Windows folder of the operating system. Two, setting the path in your system environment variable. Here&#8217;s what you have to do:</p>
<p><strong>Creating Option File (my.ini)</strong></p>
<p>Go to your installation path of MySQL (In my case it is:  <em>C:\Program Files\mysql-5.0.45-win32</em>) and rename the file <strong>my-medium.ini</strong> to <strong>my.ini</strong>. Open the renamed file in notepad and add the following lines, just beneath the line which says, <strong># The MySQL server</strong> and above the line <strong>port = 3306</strong>:</p>
<blockquote><p>[mysqld]<br />
# set basedir to your installation path<br />
<strong> basedir</strong>=C:/Program Files/mysql-5.0.45-win32<br />
# set datadir to the location of your data directory<br />
<strong> datadir</strong>=D:/workspace/data</p></blockquote>
<p>The second line as shown above is, configuring your database directory. This means, the path which you assign to <strong>datadir </strong>will be the path where your databases will be created. You have to make sure that the path exists before you assign it. There will a data directory in the MySQL installed path. If you provide a <strong>different path</strong> to the data directory than this default one, you <strong>must copy</strong> the <strong>entire contents</strong> of the data directory in that path.</p>
<p>Finally, drop the my.ini file into your Windows directory. In my case, I copied the file into the path <strong>C:/Windows</strong></p>
<p><strong>Setting the environment variable</strong></p>
<p>After completing the above step, goto</p>
<blockquote><p>My Computer &gt; Properties &gt; Advanced &gt;Environment Variables &gt; System variables &gt; Path &gt; Edit</p></blockquote>
<p>In the <strong>Value</strong> box, goto the end of the line and put a <strong>semi colon</strong> and the path of the MySQL <strong>bin </strong>folder. In my case I have put it as:</p>
<blockquote><p>;C:\Program Files\mysql-5.0.45-win32\bin</p></blockquote>
<p>Click <strong>OK </strong>3 times and thats it with the configuration of MySQL. You are all set to test the installation.</p>
<p><span style="text-decoration: underline;"><strong>Step 3: Final Configurations and Running MySQL</strong></span></p>
<p>You are actually good to go for running mysql. For this, open up your command prompt and type in the command <strong>mysqld &#8211;console. </strong>This will start the mysql database server. Whenever you run this command henceforth you will see these lines at the end:</p>
<blockquote><p>[Note] mysqld: ready for connections.<br />
Version: &#8217;5.0.45-community-nt-log&#8217;  socket: &#8221;  port: 3306  MySQL Community Edit<br />
ion (GPL)</p></blockquote>
<p>When you see these lines, it means that mysql has started successfully. Its time to party!</p>
<p>Leave the command prompt open and start up another command prompt. For the first time you should do this:</p>
<blockquote><p>C:\&gt;<strong>mysql -u root -p</strong><br />
Enter password:</p></blockquote>
<p>When it will ask for a password, just hit Enter. It will allow access to you without a password and will show up a prompt as:</p>
<blockquote><p>Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 12<br />
Server version: 5.0.45-community-nt-log MySQL Community Edition (GPL)</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt;</p></blockquote>
<p>Note that your database has <strong>anonymous</strong> access. It is not a secure thing to let it like that. You should always access the database with a password. So for setting up the password you will have to do the below steps. Put in the commands which are highlighted as shown:</p>
<blockquote><p>mysql&gt; <strong>update user set password=PASSWORD(&#8220;admin&#8221;) where User=&#8217;root&#8217;;</strong><br />
Query OK, 0 rows affected (0.00 sec)<br />
Rows matched: 3  Changed: 0  Warnings: 0</p>
<p>mysql&gt; <strong>flush privileges;</strong><br />
Query OK, 0 rows affected (0.00 sec)</p>
<p>mysql&gt; <strong>quit</strong><br />
Bye</p></blockquote>
<p>Once you have done this, try logging into the server again without a password. It must show the below error:</p>
<blockquote><p>C:\Documents and Settings\xpuser&gt;<strong>mysql -u root -p</strong><br />
Enter password:<br />
ERROR 1045 (28000): <strong>Access denied for user &#8216;root&#8217;@'localhost&#8217; (using password: NO)</strong></p></blockquote>
<p>This means, now your database is secure.You should be relieved that your mysql setup has got completed. Now every time you want to start in your database start the server in one command prompt and in the second command prompt login to the database server by doing:</p>
<blockquote><p>C:\&gt;<strong>mysql -u root -p</strong><br />
Enter password: <strong>admin</strong></p></blockquote>
<p>Thats it. Phew! I hope I remember the steps myself and now for my cup of cappuccino.</p>
<h2>Related posts:</h2><ul><li><a href="http://techtracer.com/2008/01/13/how-to-install-windows-live-writer/" rel="bookmark" title="Permanent Link: How To Install Windows Live Writer">How To Install Windows Live Writer</a></li><li><a href="http://techtracer.com/2007/03/12/xp-installation-the-34-minute-hiccup/" rel="bookmark" title="Permanent Link: XP Installation &#8211; The 34 minute hiccup">XP Installation &#8211; The 34 minute hiccup</a></li><li><a href="http://techtracer.com/2008/12/30/the-great-hibernate-tutorial-a-great-jump-start-for-beginners/" rel="bookmark" title="Permanent Link: The Great Hibernate Tutorial &#8211; a great jump start for beginners">The Great Hibernate Tutorial &#8211; a great jump start for beginners</a></li><li><a href="http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/" rel="bookmark" title="Permanent Link: Setting Up SSL on Tomcat In 3 Easy Steps">Setting Up SSL on Tomcat In 3 Easy Steps</a></li><li><a href="http://techtracer.com/2007/11/05/feast-your-eyes-with-firefox-piclens/" rel="bookmark" title="Permanent Link: Feast Your Eyes With Firefox Piclens">Feast Your Eyes With Firefox Piclens</a></li></ul><br /><a href="http://techtracer.com/">Techtracer.com</a> Copyright &copy; 2008<br /> ]]></content:encoded>
			<wfw:commentRss>http://techtracer.com/2008/06/09/3-easy-steps-to-install-mysql-on-windows-xp/feed/</wfw:commentRss>
		<slash:comments>65</slash:comments>
		</item>
		<item>
		<title>How To Install Windows Live Writer</title>
		<link>http://techtracer.com/2008/01/13/how-to-install-windows-live-writer/</link>
		<comments>http://techtracer.com/2008/01/13/how-to-install-windows-live-writer/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 05:24:09 +0000</pubDate>
		<dc:creator>nitinpai</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtracer.com/2008/01/13/how-to-install-windows-live-writer/</guid>
		<description><![CDATA[I am writing this article for the first time using Windows Live Writer. The interface of the tool is amazing and the installation has given me a new kind of energy to get more productive. I am starting with my blogging stint from Live Writer by writing a post on how to install Live Writer [...]]]></description>
			<content:encoded><![CDATA[<p>I am writing this article for the first time using <strong>Windows Live Writer</strong>. The interface of the tool is amazing and the installation has given me a new kind of energy to get more productive. I am starting with my blogging stint from Live Writer by writing a post on how to install Live Writer on your system.</p>
<p><strong>What is Windows Live Writer?</strong></p>
<p>Live Writer is a <strong>power blogging tool</strong> which helps in offline blogging. If you are a regular blogger then you might have used the <a href="https://addons.mozilla.org/en-US/firefox/addon/1730" target="_blank">ScribeFire Firefox addon</a>. But Windows Live Writer is not just an addon its a full fledged blogging platform with many blog rich features. The features are fully in synch with the WordPress platform.</p>
<p>The best part of blogging in Live Writer is that, it has a facility of providing you the actual template from the blog layout while you blog. This makes you feel as if you are directly writing on your blog layout than in the standard <strong>WordPress TinyMCE editor.</strong></p>
<p style="text-align: center"><img src="http://techtracer.com/wp-content/uploads/2008/01/windows_live_writer.gif" alt="Windows Live Writer" /></p>
<p><strong>Installation Steps</strong></p>
<ul>
<li>For installation of Live Writer make sure you have the following <a href="http://get.live.com/writer/sysreq" target="_blank">system requirements</a>. More important that it requires a <strong>.Net Framework</strong>.</li>
<li>Download the Live Tools Installer. This installer is not the Live Writer Installer. Instead it is general purpose installer and lets you select more products to install if needed.</li>
<li>Start the installation from <strong>WLinstaller.exe</strong></li>
<li><strong>Accept</strong> the agreement policy.</li>
<li>Uncheck all the check boxes. They are optional utilities.</li>
<li>The installer then downloads the Live Writer installation. Please be patient as it takes quite a lot of time if you have slow connection.</li>
<li>You don&#8217;t have to do check anything. The installation would immediately after the download is complete.</li>
<li>Follow the further steps which include putting the login credentials, blog URL.</li>
<li><strong>Allow </strong>the installation to detect the blog layout settings and post a temporary post to verify. It won&#8217;t affect your blog since no test post is published.</li>
<li>Start the Writer and blast away with your writing. Enjoy!</li>
</ul>
<p>Live Writer makes you feel as if you are working in the WordPress environment itself. Blogging with it will surely enthral you. Try it out and you will see the difference for yourself.</p>
<p>Also do check out the gallery of <a href="http://wlwplugins.com/" target="_blank">Live Writer Plugins</a> and also the <a href="http://www.codeplex.com/WLWPlugins" target="_blank">CodePlex development zone</a> to make your blogging experience even more enjoyable.</p>
<h2>Related posts:</h2><ul><li><a href="http://techtracer.com/2008/02/18/go-live-with-yahoo-live/" rel="bookmark" title="Permanent Link: Go Live with Yahoo! Live">Go Live with Yahoo! Live</a></li><li><a href="http://techtracer.com/2007/03/12/xp-installation-the-34-minute-hiccup/" rel="bookmark" title="Permanent Link: XP Installation &#8211; The 34 minute hiccup">XP Installation &#8211; The 34 minute hiccup</a></li><li><a href="http://techtracer.com/2007/03/25/techtracer-goes-live-from-today/" rel="bookmark" title="Permanent Link: TechTracer goes Live from today!">TechTracer goes Live from today!</a></li><li><a href="http://techtracer.com/2007/11/05/feast-your-eyes-with-firefox-piclens/" rel="bookmark" title="Permanent Link: Feast Your Eyes With Firefox Piclens">Feast Your Eyes With Firefox Piclens</a></li><li><a href="http://techtracer.com/2007/09/06/google-reader-search-goes-live/" rel="bookmark" title="Permanent Link: Google Reader Search Goes Live!">Google Reader Search Goes Live!</a></li></ul><br /><a href="http://techtracer.com/">Techtracer.com</a> Copyright &copy; 2008<br /> ]]></content:encoded>
			<wfw:commentRss>http://techtracer.com/2008/01/13/how-to-install-windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Feast Your Eyes With Firefox Piclens</title>
		<link>http://techtracer.com/2007/11/05/feast-your-eyes-with-firefox-piclens/</link>
		<comments>http://techtracer.com/2007/11/05/feast-your-eyes-with-firefox-piclens/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 18:54:48 +0000</pubDate>
		<dc:creator>nitinpai</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtracer.com/2007/11/05/feast-your-eyes-with-firefox-piclens/</guid>
		<description><![CDATA[I stumbled upon the Piclens plugin for Firefox today and this in my opinion, is one of the most elegant plugins created for Firefox. Firefox till date remains the world&#8217;s favorite browser and the addition of such wonderful plugins makes it even more worthwhile to browse the web. So what&#8217;s so wonderful about this plugin? [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon the <a href="https://addons.mozilla.org/en-US/firefox/addon/5579" target="_blank">Piclens plugin</a> for Firefox today and this in my opinion, is one of the most elegant plugins created for Firefox. Firefox till date remains the world&#8217;s favorite browser and the addition of such wonderful plugins makes it even more worthwhile to browse the web. So what&#8217;s so wonderful about this plugin?</p>
<p style="text-align: center"><img src="http://techtracer.com/wp-content/uploads/2007/11/piclens.gif" alt="Piclens" /></p>
<p><a href="http://www.piclens.com" target="_blank">Piclens</a> is a slideshow presenter for convenient viewing of websites which have stack loads of photos. You name it, Flickr, Facebook, Google Images, Yahoo Images, Picasa Web Albums and any other. You may have never witnessed such a slideshow before within a browser. When you install this plugin and browse any of the above site, the pictures get a tiny play button displayed on the bottom. The instant you hit this play button your get transferred into wonderland. Believe me, its true.</p>
<p>Piclens has been developed by the same people who gave us the yet another amazing plugin, <a href="http://techtracer.com/2007/01/21/future-of-web-preview-cooliris-or-snap/" target="_blank">CoolIris</a>. Its usage is very simple. Install, restart Firefox and hover on to an image heavy site and click play button. For example, visit <a href="http://www.flickr.com/photos/nitin_pai/" target="_blank">my Flickr photostream</a> and hover your mouse over any of the pictures. Your would notice the play button and when its clicked your browser will be transformed into a full screen slideshow presenter as shown below:</p>
<p style="text-align: center"><img src="http://techtracer.com/wp-content/uploads/2007/11/piclens_firefox.gif" alt="Piclens in Firefox" /></p>
<p>However, there are two glitches. One which would dampen this eye catching effect is your bandwidth. Try it, only if you have loads of it. Another is, this plugin works on Firefox only if your platform is Windows. So Linux guys will probably have to wait for it for some time.</p>
<h2>Related posts:</h2><ul><li><a href="http://techtracer.com/2006/10/15/microsoft-internet-explorer-7-nothing-special/" rel="bookmark" title="Permanent Link: Microsoft Internet Explorer 7 &#8211; Nothing Special">Microsoft Internet Explorer 7 &#8211; Nothing Special</a></li><li><a href="http://techtracer.com/2006/10/29/firefox-20-winner-of-the-browser-wars/" rel="bookmark" title="Permanent Link: Firefox 2.0 &#8211; Winner Of The Browser Wars">Firefox 2.0 &#8211; Winner Of The Browser Wars</a></li><li><a href="http://techtracer.com/2007/11/26/url-history-firefox-beats-ie-in-url-ordering/" rel="bookmark" title="Permanent Link: URL History &#8211; Firefox beats IE in URL Ordering">URL History &#8211; Firefox beats IE in URL Ordering</a></li><li><a href="http://techtracer.com/2008/02/16/power-of-xray-for-web-designers/" rel="bookmark" title="Permanent Link: Power of XRAY for Web Designers">Power of XRAY for Web Designers</a></li><li><a href="http://techtracer.com/2008/05/25/firefox-3-is-arriving-shortly-gear-up/" rel="bookmark" title="Permanent Link: Firefox 3 is Arriving Shortly &#8211; Gear Up!">Firefox 3 is Arriving Shortly &#8211; Gear Up!</a></li></ul><br /><a href="http://techtracer.com/">Techtracer.com</a> Copyright &copy; 2008<br /> ]]></content:encoded>
			<wfw:commentRss>http://techtracer.com/2007/11/05/feast-your-eyes-with-firefox-piclens/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The pride of Windows desktop &#8211; &#8220;Bliss&#8221; Wallpaper</title>
		<link>http://techtracer.com/2007/07/11/the-pride-of-windows-desktop-bliss-wallpaper/</link>
		<comments>http://techtracer.com/2007/07/11/the-pride-of-windows-desktop-bliss-wallpaper/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 15:58:17 +0000</pubDate>
		<dc:creator>nitinpai</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtracer.com/2007/07/11/the-pride-of-windows-desktop-bliss-wallpaper/</guid>
		<description><![CDATA[The one thing I can say I truly liked the most in XP is its wallpaper &#8220;Bliss&#8220;. If one was to look at my desktop it would always have one of the Windows Bliss Wallpaper. I just love it to keep them on my desktop and thoroughly admire those designers behind the XP look and [...]]]></description>
			<content:encoded><![CDATA[<p>The one thing I can say I truly liked the most in <strong>XP</strong> is its wallpaper &#8220;<strong>Bliss</strong>&#8220;. If one was to look at my desktop it would always have one of the Windows Bliss Wallpaper. I just love it to keep them on my desktop and thoroughly admire those designers behind the XP look and feel who made especially the original wallpaper &#8220;<strong>Bliss</strong>&#8221; which someone told me is the <strong>most viewed</strong> wallpaper in wallpaper history.</p>
<p>The specialty of the <strong>Bliss</strong> wallpapers is the unique way of the<strong> lawn</strong> which spreads apart to about half way up to the screen and the above half is taken by different types of <strong>skies</strong>. This blue and lush green combination of colors brings a sense of peace and looks pleasant to the eye.</p>
<p><strong>Original Bliss Wallpaper</strong></p>
<p><a href="http://techtracer.com/wp-content/uploads/2007/07/wallpaper/Bliss.jpg" title="Original Bliss"></a></p>
<p style="text-align: center"><a href="http://techtracer.com/wp-content/uploads/2007/07/wallpaper/Bliss.jpg" title="Original Bliss"><img src="http://techtracer.com/wp-content/uploads/2007/07/old_bliss.gif" alt="Original Bliss" /></a></p>
<p>Since then &#8220;<strong>Bliss</strong>&#8221; has gone several changes in its form from the proposed one in <strong>Longhorn</strong> to the one which now would be seen in <strong>Vista</strong>.</p>
<p><strong>Longhorn Bliss Wallpaper</strong></p>
<p align="center"> <a href="http://techtracer.com/wp-content/uploads/2007/07/wallpaper/longhorn_bliss.jpg" title="Longhorn Bliss Wallpaper"><img src="http://techtracer.com/wp-content/uploads/2007/07/longhorn_bliss.gif" alt="Longhorn Bliss Wallpaper" /></a></p>
<p>With the launch of the new <strong>Windows Vista </strong>and its hi-tech appearance &#8220;<strong>Bliss</strong>&#8221; too has been transformed to suit its rich Vista GUI. The first look at the new &#8220;Bliss&#8221; wallpaper (although I don&#8217;t think its the official one) is impressive but a prolonged look is slightly damper to its original  counterpart.</p>
<p><strong>Vista Bliss Wallpaper </strong></p>
<p align="center"> <a href="http://techtracer.com/wp-content/uploads/2007/07/wallpaper/vista_bliss.jpg" title="Vista Bliss Wallpaper"><img src="http://techtracer.com/wp-content/uploads/2007/07/vista_bliss.gif" alt="Vista Bliss Wallpaper" /></a></p>
<p>But the most fascinating of all the wallpapers that I have come across in the &#8220;<strong>Bliss</strong>&#8221; category is the following one which I have named it as &#8220;<strong>Elegant Bliss</strong>&#8221; which is a very professional looking wallpaper and which currently serves my home and office desktops! <img src='http://techtracer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong> Elegant Bliss</strong></p>
<p align="center"><a href="http://techtracer.com/wp-content/uploads/2007/07/wallpaper/new_bliss.jpg" title="Elegant Bliss Wallpaper"><img src="http://techtracer.com/wp-content/uploads/2007/07/new_bliss.gif" alt="Elegant Bliss Wallpaper" /></a></p>
<h2>Related posts:</h2><ul><li><a href="http://techtracer.com/2007/04/09/web-and-desktop-apps-the-3rd-world-war/" rel="bookmark" title="Permanent Link: Web and Desktop Apps &#8211; the 3rd World War!">Web and Desktop Apps &#8211; the 3rd World War!</a></li><li><a href="http://techtracer.com/2008/07/06/readair-google-reader-on-my-desktop/" rel="bookmark" title="Permanent Link: ReadAir &#8211; Google Reader On My Desktop!">ReadAir &#8211; Google Reader On My Desktop!</a></li><li><a href="http://techtracer.com/2007/05/12/developers-dilemma-pride-or-prestige/" rel="bookmark" title="Permanent Link: Developers Dilemma &#8211; pride or prestige">Developers Dilemma &#8211; pride or prestige</a></li><li><a href="http://techtracer.com/2007/10/31/mozilla-prism-a-revolution-in-web-apps/" rel="bookmark" title="Permanent Link: Mozilla Prism &#8211; A Revolution in Web Apps">Mozilla Prism &#8211; A Revolution in Web Apps</a></li><li><a href="http://techtracer.com/2007/10/06/mozillas-new-killer-app-the-webrunner/" rel="bookmark" title="Permanent Link: Mozilla&#8217;s New Killer App &#8211; The WebRunner">Mozilla&#8217;s New Killer App &#8211; The WebRunner</a></li></ul><br /><a href="http://techtracer.com/">Techtracer.com</a> Copyright &copy; 2008<br /> ]]></content:encoded>
			<wfw:commentRss>http://techtracer.com/2007/07/11/the-pride-of-windows-desktop-bliss-wallpaper/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>XP Installation &#8211; The 34 minute hiccup</title>
		<link>http://techtracer.com/2007/03/12/xp-installation-the-34-minute-hiccup/</link>
		<comments>http://techtracer.com/2007/03/12/xp-installation-the-34-minute-hiccup/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 16:51:35 +0000</pubDate>
		<dc:creator>nitinpai</dc:creator>
				<category><![CDATA[Issues]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtracer.com/2007/03/12/xp-installation-the-34-minute-hiccup/</guid>
		<description><![CDATA[You want to install XP professional and suddenly you realize that it freezes up at the mention of 34 minutes remaining! You try all your efforts to make it running but nothing seems to be working to your dismay. You try checking your RAM, checking for any bad sectors in your hard drive, even your [...]]]></description>
			<content:encoded><![CDATA[<p>You want to install XP professional and suddenly you realize that it freezes up at the mention of 34 minutes remaining! You try all your efforts to make it running but nothing seems to be working to your dismay. You try checking your RAM, checking for any bad sectors in your hard drive, even your motherboard (as I have done) but cannot make a conclusion as to what&#8217;s the answer to your woes.</p>
<p>So what is the solution to the defamed 34 minute XP installation hangup problem?<br />
Its as simple as deleting a simple file which caused the installation to freeze.</p>
<ul>
<li>Let the XP hang up at 34 minutes remaining for the first time</li>
<li>remove the CD from the CDROM and reboot</li>
<li>Dont enter the CD when the installation asks for it, instead open the DOS prompt (Shift + F10)</li>
<li>goto C:/Windows and type setupapi.log, hit enter</li>
<li>The setupapi.log file opens in a notepad</li>
<li>Scroll to the very last few lines in the file and search for the word &#8220;inf&#8221;</li>
<li>You will notice that in the last few moments the installation created a file with the extension &#8220;.inf&#8221; before dying out (in my case it was the faulty modem for which XP created the file mdmcxpt.inf).</li>
<li>It means that the device mentioned in the last few lines is faulty and you have to make the installation skip through it.</li>
<li>Close the notepad and go to the folder C:/windows/inf in command prompt</li>
<li>Browse through the files to find the &#8220;.inf&#8221; which was related to the faulty device.</li>
<li>Straightaway delete the inf file (eg: del mdmcxpt.inf)</li>
<li>now put in the XP installation CD and Continue the installation</li>
</ul>
<p>It will not put in the drivers related to the faulty device and so it wont freeze this time !!</p>
<h2>Related posts:</h2><ul><li><a href="http://techtracer.com/2008/01/13/how-to-install-windows-live-writer/" rel="bookmark" title="Permanent Link: How To Install Windows Live Writer">How To Install Windows Live Writer</a></li><li><a href="http://techtracer.com/2007/07/18/wordpress-error-allowed-memory-size-of-8388608-bytes/" rel="bookmark" title="Permanent Link: WordPress Error &#8211; &#8220;Allowed memory size of 8388608 bytes&#8221;">WordPress Error &#8211; &#8220;Allowed memory size of 8388608 bytes&#8221;</a></li><li><a href="http://techtracer.com/2007/10/22/if-microsoft-came-up-with-a-phone/" rel="bookmark" title="Permanent Link: If Microsoft Came Up With A Phone!">If Microsoft Came Up With A Phone!</a></li><li><a href="http://techtracer.com/2008/06/09/3-easy-steps-to-install-mysql-on-windows-xp/" rel="bookmark" title="Permanent Link: 3 Easy Steps to Install MySQL on Windows XP">3 Easy Steps to Install MySQL on Windows XP</a></li><li><a href="http://techtracer.com/2007/10/10/resolving-the-unsupported-majorminor-version-490-error/" rel="bookmark" title="Permanent Link: Resolving the &#8220;Unsupported major.minor version 49.0&#8243; Error">Resolving the &#8220;Unsupported major.minor version 49.0&#8243; Error</a></li></ul><br /><a href="http://techtracer.com/">Techtracer.com</a> Copyright &copy; 2008<br /> ]]></content:encoded>
			<wfw:commentRss>http://techtracer.com/2007/03/12/xp-installation-the-34-minute-hiccup/feed/</wfw:commentRss>
		<slash:comments>437</slash:comments>
		</item>
		<item>
		<title>Microsoft Internet Explorer 7 &#8211; Nothing Special</title>
		<link>http://techtracer.com/2006/10/15/microsoft-internet-explorer-7-nothing-special/</link>
		<comments>http://techtracer.com/2006/10/15/microsoft-internet-explorer-7-nothing-special/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 11:50:44 +0000</pubDate>
		<dc:creator>nitinpai</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techtracer.com/?p=269</guid>
		<description><![CDATA[Microsoft has borrowed a lot of stuff in tits and bits from everywhere and has packaged into the form of Internet Explorer 7. I have got the RC1 and the first impressions of IE7  came in front of me as a mixture of Opera interface combined with some of Mozilla Firefox features. The features that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com">Microsoft</a> has borrowed a lot of stuff in tits and bits from everywhere and has packaged into the form of Internet Explorer 7. I have got the <strong>RC1</strong> and the first impressions of IE7  came in front of me as a mixture of <a href="http://www.opera.com">Opera</a> interface combined with some of <a href="http://sage.mozdev.org/install/">Mozilla Firefox</a> features. The features that I have found added to over IE6 are:</p>
<ol>
<li><strong>Introduction of tabs</strong> &#8211; The most irritating feature in the tabs is that if ther is a single tab the cross mark to close it is not visible (i.e you ougt to close the window!!). Mozilla handles this very well in a way that it shows tabs only when there is more than one tab which is more smarter. In IE7 you would definitely start searching for the close button when only one tab is present</li>
<li><strong>Glossy interface</strong> (looks more like Opera to me) &#8211; not needed at all since it is the culprit for literally sucking memory from your RAM.</li>
<li><strong>Anti phishing</strong> (not tried it out yet)</li>
<li><strong>Improvised feed processing and access</strong>- Being a mozilla user and using its simplified feed access techniques I found this in IE7 out to be little more than useless. For reading a feed you have to click on the feed and then it loads up in a page. I use mozilla Firefox with Sage extension for reading feeds and I am more comfortable in it.</li>
<li><strong>Tiled collection of open pages</strong> (not found in any other browsers) &#8211; this is definitely king size in memory consumption. I couldnt believe my eyes when I found my mouse pointer going in a frame by frame motion in the tiled mode and to talk about my system running on 1.5GHz with 384 MB DDR RAM !!</li>
</ol>
<p><strong>Memory Consumption</strong> &#8211; I tried single instance of browser with an empty page and made a comparison</p>
<ul>
<li>IE6 &#8211; 16 to 18 MB</li>
<li>Mozilla Firefox 1.5 &#8211; 20 to 21 MB (even two tabs took 24 MB)</li>
<li>IE7 RC1 &#8211; a whopping 40 MB and 47 MB for two tabs and 50 MB in tiled mode</li>
</ul>
<p>The annoying thing about using IE 7 is there is <strong>no menu bar</strong> in the default view. People who have become used to the menu bar for common tasks would surely be left in wonderland !! For that you have to enable it appears beneath the address bar which is again a pain in the eye.</p>
<p>I guess only using only these features I feel like reverting back to Mozilla beacuse I am confident none can beat it be it in the number of extensions beign developed or the number of custom search engines. Mozilla Rulez!!</p>
<h2>Related posts:</h2><ul><li><a href="http://techtracer.com/2008/02/16/power-of-xray-for-web-designers/" rel="bookmark" title="Permanent Link: Power of XRAY for Web Designers">Power of XRAY for Web Designers</a></li><li><a href="http://techtracer.com/2007/05/13/why-sybase-is-similar-to-microsofts-sql-server/" rel="bookmark" title="Permanent Link: Why Sybase is similar to Microsoft&#8217;s SQL Server">Why Sybase is similar to Microsoft&#8217;s SQL Server</a></li><li><a href="http://techtracer.com/2007/10/22/if-microsoft-came-up-with-a-phone/" rel="bookmark" title="Permanent Link: If Microsoft Came Up With A Phone!">If Microsoft Came Up With A Phone!</a></li><li><a href="http://techtracer.com/2008/10/06/google-chrome-whats-in-it-for-ya/" rel="bookmark" title="Permanent Link: Google Chrome &#8211; What&#8217;s in it for ya?">Google Chrome &#8211; What&#8217;s in it for ya?</a></li><li><a href="http://techtracer.com/2007/11/26/url-history-firefox-beats-ie-in-url-ordering/" rel="bookmark" title="Permanent Link: URL History &#8211; Firefox beats IE in URL Ordering">URL History &#8211; Firefox beats IE in URL Ordering</a></li></ul><br /><a href="http://techtracer.com/">Techtracer.com</a> Copyright &copy; 2008<br /> ]]></content:encoded>
			<wfw:commentRss>http://techtracer.com/2006/10/15/microsoft-internet-explorer-7-nothing-special/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

