<?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>Naresh.Jois</title>
	<atom:link href="http://www.nareshjois.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nareshjois.com</link>
	<description>Home of a professional developer &#38; a aspiring photographer</description>
	<lastBuildDate>Mon, 28 Jun 2010 06:38:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Use Debug output window to monitor SQL generated by LINQ2SQL</title>
		<link>http://www.nareshjois.com/2010/06/use-debug-window-to-monitor-sql/</link>
		<comments>http://www.nareshjois.com/2010/06/use-debug-window-to-monitor-sql/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 06:38:48 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[.net Programming]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[LINQ2SQL]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=789</guid>
		<description><![CDATA[In all the examples out there to see the SQL generated by a LINQ2SQL query console.out is used, but to monitor the SQL in a debug window we need to write a special text writer implementation using System.IO; using System.Text; using System.Diagnostics; using System.Globalization; using System; namespace nj.Diagnostics &#123; /// &#60;summary&#62; /// Implements a &#60;see [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F06%2Fuse-debug-window-to-monitor-sql%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F06%2Fuse-debug-window-to-monitor-sql%2F&amp;source=nareshjois&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>In all the examples out there to see the SQL generated by a LINQ2SQL query console.out is used, but to monitor the SQL in a debug window we need to write a special text writer implementation</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">using</span> <span style="color: #008080;">System.IO</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Text</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Diagnostics</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Globalization</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">namespace</span> nj.<span style="color: #0000FF;">Diagnostics</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #008080; font-style: italic;">/// &lt;summary&gt;</span>
    <span style="color: #008080; font-style: italic;">/// Implements a &lt;see cref=&quot;TextWriter&quot;/&gt; for writing information to the debugger log.</span>
    <span style="color: #008080; font-style: italic;">/// &lt;/summary&gt;</span>
    <span style="color: #008080; font-style: italic;">/// &lt;seealso cref=&quot;Debugger.Log&quot;/&gt;</span>
    <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> DebuggerWriter <span style="color: #008000;">:</span> TextWriter
    <span style="color: #000000;">&#123;</span>
        <span style="color: #0600FF;">private</span> <span style="color: #FF0000;">bool</span> isOpen<span style="color: #008000;">;</span>
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">static</span> UnicodeEncoding encoding<span style="color: #008000;">;</span>
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">readonly</span> <span style="color: #FF0000;">int</span> level<span style="color: #008000;">;</span>
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">readonly</span> <span style="color: #FF0000;">string</span> category<span style="color: #008000;">;</span>
&nbsp;
        <span style="color: #008080; font-style: italic;">/// &lt;summary&gt;</span>
        <span style="color: #008080; font-style: italic;">/// Initializes a new instance of the &lt;see cref=&quot;DebuggerWriter&quot;/&gt; class.</span>
        <span style="color: #008080; font-style: italic;">/// &lt;/summary&gt;</span>
        <span style="color: #0600FF;">public</span> DebuggerWriter<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
            <span style="color: #008000;">:</span> <span style="color: #0600FF;">this</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span>, Debugger.<span style="color: #0000FF;">DefaultCategory</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #008080; font-style: italic;">/// &lt;summary&gt;</span>
        <span style="color: #008080; font-style: italic;">/// Initializes a new instance of the &lt;see cref=&quot;DebuggerWriter&quot;/&gt; class with the specified level and category.</span>
        <span style="color: #008080; font-style: italic;">/// &lt;/summary&gt;</span>
        <span style="color: #008080; font-style: italic;">/// &lt;param name=&quot;level&quot;&gt;A description of the importance of the messages.&lt;/param&gt;</span>
        <span style="color: #008080; font-style: italic;">/// &lt;param name=&quot;category&quot;&gt;The category of the messages.&lt;/param&gt;</span>
        <span style="color: #0600FF;">public</span> DebuggerWriter<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> level, <span style="color: #FF0000;">string</span> category<span style="color: #000000;">&#41;</span>
            <span style="color: #008000;">:</span> <span style="color: #0600FF;">this</span><span style="color: #000000;">&#40;</span>level, category, CultureInfo.<span style="color: #0000FF;">CurrentCulture</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #008080; font-style: italic;">/// &lt;summary&gt;</span>
        <span style="color: #008080; font-style: italic;">/// Initializes a new instance of the &lt;see cref=&quot;DebuggerWriter&quot;/&gt; class with the specified level, category and format provider.</span>
        <span style="color: #008080; font-style: italic;">/// &lt;/summary&gt;</span>
        <span style="color: #008080; font-style: italic;">/// &lt;param name=&quot;level&quot;&gt;A description of the importance of the messages.&lt;/param&gt;</span>
        <span style="color: #008080; font-style: italic;">/// &lt;param name=&quot;category&quot;&gt;The category of the messages.&lt;/param&gt;</span>
        <span style="color: #008080; font-style: italic;">/// &lt;param name=&quot;formatProvider&quot;&gt;An &lt;see cref=&quot;IFormatProvider&quot;/&gt; object that controls formatting.&lt;/param&gt;</span>
        <span style="color: #0600FF;">public</span> DebuggerWriter<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> level, <span style="color: #FF0000;">string</span> category, IFormatProvider formatProvider<span style="color: #000000;">&#41;</span>
            <span style="color: #008000;">:</span> <span style="color: #0600FF;">base</span><span style="color: #000000;">&#40;</span>formatProvider<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">level</span> <span style="color: #008000;">=</span> level<span style="color: #008000;">;</span>
            <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">category</span> <span style="color: #008000;">=</span> category<span style="color: #008000;">;</span>
            <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">isOpen</span> <span style="color: #008000;">=</span> true<span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">protected</span> <span style="color: #0600FF;">override</span> <span style="color: #0600FF;">void</span> Dispose<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">bool</span> disposing<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            isOpen <span style="color: #008000;">=</span> false<span style="color: #008000;">;</span>
            <span style="color: #0600FF;">base</span>.<span style="color: #0000FF;">Dispose</span><span style="color: #000000;">&#40;</span>disposing<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">override</span> <span style="color: #0600FF;">void</span> Write<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">char</span> value<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #008000;">!</span>isOpen<span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                <span style="color: #0600FF;">throw</span> <span style="color: #008000;">new</span> ObjectDisposedException<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
            Debugger.<span style="color: #0000FF;">Log</span><span style="color: #000000;">&#40;</span>level, category, value.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">override</span> <span style="color: #0600FF;">void</span> Write<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> value<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #008000;">!</span>isOpen<span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                <span style="color: #0600FF;">throw</span> <span style="color: #008000;">new</span> ObjectDisposedException<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>value <span style="color: #008000;">!=</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                Debugger.<span style="color: #0000FF;">Log</span><span style="color: #000000;">&#40;</span>level, category, value<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">override</span> <span style="color: #0600FF;">void</span> Write<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">char</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> buffer, <span style="color: #FF0000;">int</span> index, <span style="color: #FF0000;">int</span> count<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #008000;">!</span>isOpen<span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                <span style="color: #0600FF;">throw</span> <span style="color: #008000;">new</span> ObjectDisposedException<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>buffer <span style="color: #008000;">==</span> <span style="color: #0600FF;">null</span> <span style="color: #008000;">||</span> index <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">0</span> <span style="color: #008000;">||</span> count <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">0</span> <span style="color: #008000;">||</span> buffer.<span style="color: #0000FF;">Length</span> <span style="color: #008000;">-</span> index <span style="color: #008000;">&lt;</span> count<span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                <span style="color: #0600FF;">base</span>.<span style="color: #0000FF;">Write</span><span style="color: #000000;">&#40;</span>buffer, index, count<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span> <span style="color: #008080; font-style: italic;">// delegate throw exception to base class</span>
            <span style="color: #000000;">&#125;</span>
            Debugger.<span style="color: #0000FF;">Log</span><span style="color: #000000;">&#40;</span>level, category, <span style="color: #008000;">new</span> <span style="color: #FF0000;">string</span><span style="color: #000000;">&#40;</span>buffer, index, count<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">override</span> Encoding Encoding
        <span style="color: #000000;">&#123;</span>
            get
            <span style="color: #000000;">&#123;</span>
                <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>encoding <span style="color: #008000;">==</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
                <span style="color: #000000;">&#123;</span>
                    encoding <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> UnicodeEncoding<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">false</span>, <span style="color: #0600FF;">false</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                <span style="color: #000000;">&#125;</span>
                <span style="color: #0600FF;">return</span> encoding<span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">int</span> Level
        <span style="color: #000000;">&#123;</span>
            get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> level<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> Category
        <span style="color: #000000;">&#123;</span>
            get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> category<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>The you can use
</pre>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">datacontext.<span style="color: #0000FF;">log</span> <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> DebuggerWriter<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/06/use-debug-window-to-monitor-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forms Authentication fails even when browser accepts cookies</title>
		<link>http://www.nareshjois.com/2010/06/forms-authentication-fails-even-when-browser-accepts-cookies/</link>
		<comments>http://www.nareshjois.com/2010/06/forms-authentication-fails-even-when-browser-accepts-cookies/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 06:43:11 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[.net Programming]]></category>
		<category><![CDATA[Authentication]]></category>
		<category><![CDATA[Membership]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=783</guid>
		<description><![CDATA[While using Forms authentication in ASP.net &#60;forms name=&#34;.ASPXAUTH&#34; loginUrl=&#34;login.aspx&#34; defaultUrl=&#34;Default.aspx&#34; protection=&#34;All&#34; timeout=&#34;30&#34; path=&#34;/&#34; requireSSL=&#34;false&#34; slidingExpiration=&#34;true&#34; cookieless=&#34;AutoDetect&#34; domain=&#34;&#34; enableCrossAppRedirects=&#34;false&#34;&#62; &#60;credentials passwordFormat=&#34;SHA1&#34; /&#62; &#60;/forms&#62; please remeber to set path = &#8220;/&#8221; or else the cookie based authentication fails, I am yet to figure out why this is happening but atleast this solves the problem.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F06%2Fforms-authentication-fails-even-when-browser-accepts-cookies%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F06%2Fforms-authentication-fails-even-when-browser-accepts-cookies%2F&amp;source=nareshjois&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>While using Forms authentication in ASP.net</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;forms</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;.ASPXAUTH&quot;</span> <span style="color: #000066;">loginUrl</span>=<span style="color: #ff0000;">&quot;login.aspx&quot;</span></span>
<span style="color: #009900;">		  <span style="color: #000066;">defaultUrl</span>=<span style="color: #ff0000;">&quot;Default.aspx&quot;</span> <span style="color: #000066;">protection</span>=<span style="color: #ff0000;">&quot;All&quot;</span> <span style="color: #000066;">timeout</span>=<span style="color: #ff0000;">&quot;30&quot;</span> <span style="color: #000066;">path</span>=<span style="color: #ff0000;">&quot;/&quot;</span></span>
<span style="color: #009900;">		  <span style="color: #000066;">requireSSL</span>=<span style="color: #ff0000;">&quot;false&quot;</span> <span style="color: #000066;">slidingExpiration</span>=<span style="color: #ff0000;">&quot;true&quot;</span></span>
<span style="color: #009900;">		  <span style="color: #000066;">cookieless</span>=<span style="color: #ff0000;">&quot;AutoDetect&quot;</span> <span style="color: #000066;">domain</span>=<span style="color: #ff0000;">&quot;&quot;</span></span>
<span style="color: #009900;">		  <span style="color: #000066;">enableCrossAppRedirects</span>=<span style="color: #ff0000;">&quot;false&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
		  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;credentials</span> <span style="color: #000066;">passwordFormat</span>=<span style="color: #ff0000;">&quot;SHA1&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/forms<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>please remeber to set path = &#8220;/&#8221; or else the cookie based authentication fails, I am yet to figure out why this is happening but atleast this solves the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/06/forms-authentication-fails-even-when-browser-accepts-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xbox Avatars for Phone</title>
		<link>http://www.nareshjois.com/2010/04/xbox-avatars-for-phone/</link>
		<comments>http://www.nareshjois.com/2010/04/xbox-avatars-for-phone/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 16:56:47 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Concepts]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=766</guid>
		<description><![CDATA[This is really cool. wonder if it will really come&#8230;.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F04%2Fxbox-avatars-for-phone%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F04%2Fxbox-avatars-for-phone%2F&amp;source=nareshjois&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>This is really cool. wonder if it will really come&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/04/xbox-avatars-for-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Windows XP to Windows 7 Boot Manager</title>
		<link>http://www.nareshjois.com/2010/03/how-to-add-windows-xp-to-windows-7-boot-manager/</link>
		<comments>http://www.nareshjois.com/2010/03/how-to-add-windows-xp-to-windows-7-boot-manager/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 16:43:03 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[bcdedit]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=764</guid>
		<description><![CDATA[1. Open an elevated command prompt. 2. Type the following to create a boot loader for Windows XP. bcdedit /create {ntldr} /d &#8220;Windows XP&#8221; 3. Type the following to set the device to where Windows XP is installed. I used D: in this example. Replace it with the drive letter of your XP installation. bcdedit [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F03%2Fhow-to-add-windows-xp-to-windows-7-boot-manager%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F03%2Fhow-to-add-windows-xp-to-windows-7-boot-manager%2F&amp;source=nareshjois&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>1. Open an elevated command prompt.<br />
2. Type the following to create a boot loader for Windows XP.<br />
bcdedit /create {ntldr} /d &#8220;Windows XP&#8221;<br />
3. Type the following to set the device to where Windows XP is installed. I used D: in this example. Replace it with the drive letter of your XP installation.<br />
bcdedit /set {ntldr} device partition=D:<br />
4. Type the following to set the path.<br />
bcdedit /set {ntldr} path \ntldr<br />
5. Type the following to add this boot loader to the boot up screen.<br />
bcdedit /displayorder {ntldr} /addlast<br />
6. Reboot the computer<br />
.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/03/how-to-add-windows-xp-to-windows-7-boot-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formula 1 2010 Begins</title>
		<link>http://www.nareshjois.com/2010/03/formula-1-2010-begins/</link>
		<comments>http://www.nareshjois.com/2010/03/formula-1-2010-begins/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 18:38:36 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Formula 1]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=761</guid>
		<description><![CDATA[Formula 1 began today and with a bang and there are a lot of changes. From teams, drivers, points, and much more. It would take at least few races we get to know which drivers perform, but the prancing horse Ferrari is back with a bang, they finished top 2 but i really felt for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F03%2Fformula-1-2010-begins%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F03%2Fformula-1-2010-begins%2F&amp;source=nareshjois&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>Formula 1 began today and with a bang and there are a lot of changes. From teams, drivers, points, and much more. It would take at least few races we get to know which drivers perform, but the prancing horse Ferrari is back with a bang, they finished top 2 but i really felt for Vettel who according to me at least should have won, i also felt for Karun as this was his first race. The points system is also a bit changed with the winner getting 25 points for 1st which is good, Waiting till the next race I am listing teams and respective drivers.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td rowspan="2" width="111" valign="top">Ferrari</td>
<td width="151" valign="top">Fernando Alonso</td>
</tr>
<tr>
<td width="151" valign="top">Felipe Massa</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">McLaren</td>
<td width="151" valign="top">Lewis Hamilton</td>
</tr>
<tr>
<td width="151" valign="top">Jenson Button</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Red Bull</td>
<td width="151" valign="top">Sebastian Vettel</td>
</tr>
<tr>
<td width="151" valign="top">Mark Webber</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Mercedes GP</td>
<td width="151" valign="top">Michael Schumacher</td>
</tr>
<tr>
<td width="151" valign="top">Nico Rosberg</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Force India</td>
<td width="151" valign="top">Vitantonio Liuzzi</td>
</tr>
<tr>
<td width="151" valign="top">Adrian Sutil</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Williams</td>
<td width="151" valign="top">Rubens Barrichello</td>
</tr>
<tr>
<td width="151" valign="top">Nico Hulkenberg</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Renault</td>
<td width="151" valign="top">Robert Kubica</td>
</tr>
<tr>
<td width="151" valign="top">Vitaly Petrov</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Toro Rosso</td>
<td width="151" valign="top">Jaime Alguersuari</td>
</tr>
<tr>
<td width="151" valign="top">Sebastien Buemi</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Lotus</td>
<td width="151" valign="top">Heikki Kovalainen</td>
</tr>
<tr>
<td width="151" valign="top">Jarno Trulli</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">BMW Sauber</td>
<td width="151" valign="top">Pedro de la Rosa</td>
</tr>
<tr>
<td width="151" valign="top">Kamui Kobayashi</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">HRT</td>
<td width="151" valign="top">Karun Chandhok</td>
</tr>
<tr>
<td width="151" valign="top">Bruno Senna</td>
</tr>
<tr>
<td rowspan="2" width="111" valign="top">Virgin</td>
<td width="151" valign="top">Timo Glock</td>
</tr>
<tr>
<td width="151" valign="top">Lucas di Grassi</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/03/formula-1-2010-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bing Maps</title>
		<link>http://www.nareshjois.com/2010/02/bing-maps/</link>
		<comments>http://www.nareshjois.com/2010/02/bing-maps/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:40:16 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Concepts]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=757</guid>
		<description><![CDATA[This is really starting to look cool]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F02%2Fbing-maps%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.nareshjois.com%2F2010%2F02%2Fbing-maps%2F&amp;source=nareshjois&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>This is really starting to look cool</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/02/bing-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern Kitchen Design</title>
		<link>http://www.nareshjois.com/2010/02/modern-kitchen-design/</link>
		<comments>http://www.nareshjois.com/2010/02/modern-kitchen-design/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 03:13:15 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Architecture & Interiors]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=747</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/02/modern-kitchen-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern Home Design</title>
		<link>http://www.nareshjois.com/2010/02/modern-home-design/</link>
		<comments>http://www.nareshjois.com/2010/02/modern-home-design/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 10:58:41 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Architecture & Interiors]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=729</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/02/modern-home-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Living Room Ideas</title>
		<link>http://www.nareshjois.com/2010/02/living-room-ideas/</link>
		<comments>http://www.nareshjois.com/2010/02/living-room-ideas/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 10:26:59 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Architecture & Interiors]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=722</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/02/living-room-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern Bathroom</title>
		<link>http://www.nareshjois.com/2010/02/modern-bathroom/</link>
		<comments>http://www.nareshjois.com/2010/02/modern-bathroom/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 05:33:38 +0000</pubDate>
		<dc:creator>naresh</dc:creator>
				<category><![CDATA[Architecture & Interiors]]></category>

		<guid isPermaLink="false">http://www.nareshjois.com/?p=714</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.nareshjois.com/2010/02/modern-bathroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
