<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Point Deep</title>
	<atom:link href="http://mundeep.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mundeep.wordpress.com</link>
	<description>Mundeep's Tech Blog</description>
	<pubDate>Thu, 17 Jul 2008 02:05:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>A referral was returned from the server</title>
		<link>http://mundeep.wordpress.com/2008/07/17/a-referral-was-returned-from-the-server/</link>
		<comments>http://mundeep.wordpress.com/2008/07/17/a-referral-was-returned-from-the-server/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 02:05:17 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[Active Directory]]></category>

		<category><![CDATA[LDAP]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/?p=11</guid>
		<description><![CDATA[Running some code that updates active directory i ran into the following error message when trying to search for a user &#8220;A referral was returned from the server&#8220;. The problem was that the LDAP query i had used the wrong DC, and not the one that the user was in.
eg. my LDAP connection was: LDAP://devdcserver01.domain.int/DC=development,DC=domain,DC=int
when [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Running some code that updates active directory i ran into the following error message when trying to search for a user &#8220;<span style="color:#ff0000;">A referral was returned from the server</span>&#8220;. The problem was that the LDAP query i had used the wrong DC, and not the one that the user was in.</p>
<p>eg. my LDAP connection was: LDAP://devdcserver01.domain.int/DC<strong>=<span style="color:#00ffff;">development</span></strong>,DC=domain,DC=int</p>
<p>when it should have been: LDAP://devdcserver01.domain.int/DC=<span style="color:#00ffff;"><strong>dev</strong></span>,DC=domain,DC=int</p>
<p>This was because while the &#8216;friendly&#8217; name of the domain you use when logging in was &#8220;DEVELOPMENT&#8221; however the fully qualified name was dev.domain.int</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=11&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2008/07/17/a-referral-was-returned-from-the-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>View All Pending Changes in TFS</title>
		<link>http://mundeep.wordpress.com/2008/05/16/view-all-pending-changes-in-tfs/</link>
		<comments>http://mundeep.wordpress.com/2008/05/16/view-all-pending-changes-in-tfs/#comments</comments>
		<pubDate>Fri, 16 May 2008 06:45:47 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/?p=9</guid>
		<description><![CDATA[To view all pending changes (checked out files) in TFS you need to do the following:

Open a Visual Studio Command Prompt (or ensure that the &#8220;Microsoft Visual Studio 9.0\Common7\IDE&#8221; folder - usually in C:\Program Files - is available in your path).
Change to the root directory of the project you want to search for pending changes [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To view all pending changes (checked out files) in TFS you need to do the following:</p>
<ol>
<li>Open a Visual Studio Command Prompt (or ensure that the &#8220;Microsoft Visual Studio 9.0\Common7\IDE&#8221; folder - usually in C:\Program Files - is available in your path).</li>
<li>Change to the root directory of the project you want to search for pending changes (eg. C:\Projects\MyCustomProject)</li>
<li>Run the following command:
<pre name="code" class="jscript">
tf.exe status /r /user:*
</pre>
</li>
<li>To output this to a text file (easier to read) simply add &#8220;&gt; filename.txt&#8221; eg:
<pre name="code" class="jscript">
tf.exe status /r /user:* &gt; editedfiles.txt
</pre>
</li>
</ol>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=9&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2008/05/16/view-all-pending-changes-in-tfs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quickly Generating GUIDs in Visual Studio 2008</title>
		<link>http://mundeep.wordpress.com/2008/03/27/quickly-generating-guids-in-visual-studio-2008/</link>
		<comments>http://mundeep.wordpress.com/2008/03/27/quickly-generating-guids-in-visual-studio-2008/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 06:13:05 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[GUIDs]]></category>

		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/?p=7</guid>
		<description><![CDATA[One of the common tasks involved when creating sharepoint solutions is the generation of GUIDs. Visual Studio comes with a tool called GuidGen that lets you create GUIDs however it is annoying having to leave the Visual Studio environment.
I believe Visual Studio 2005 used to have it as an option under the Tools menu however [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One of the common tasks involved when creating sharepoint solutions is the generation of GUIDs. Visual Studio comes with a tool called GuidGen that lets you create GUIDs however it is annoying having to leave the Visual Studio environment.</p>
<p>I believe Visual Studio 2005 used to have it as an option under the Tools menu however i haven&#8217;t found where i can add the same shortcut in Visual Studio Team System 2008 (though i do notice that Visual Studio 2008 Professional DOES have a &#8220;Create GUID&#8221; shortcut under Tools - i&#8217;d still prefer the macro shortcut for ease of use especially when creating a lot of features).</p>
<p>I have however found a nifty alternate solution by <a href="http://www.wirwar.com/blog/2007/11/03/generating-guids-in-the-visual-studio-ide/" title="Leon Zandman" target="_blank">Leon Zandman</a> that describes creating a Macro to insert a guid into your current file. I&#8217;d just like to clarify some of the steps for those that haven&#8217;t dealt with Macros in Visual Studio 2008 before.</p>
<ol>
<li>Load Visual Studio 2008 and goto Tools -&gt; Macros -&gt; Macro Explorer (Alt-F8 for short)<a href="http://mundeep.files.wordpress.com/2008/04/01-macro-explorer.png" title="Macro Explorer"><img src="http://mundeep.files.wordpress.com/2008/04/01-macro-explorer.thumbnail.png" alt="Macro Explorer" /></a></li>
<li>Right-click on &#8220;Macros&#8221; then select New Macro Project</li>
<li>Name your project (eg. GUIDGenerator) and choose a location to save it (note no space allowed in Project Name).</li>
<li>This should give you a new project with a &#8220;Module1&#8243; sitting underneath it. Right-click on &#8220;Module1&#8243; and select &#8220;Rename&#8221; to give it a more meaningful name (eg. GUIDGenModule).</li>
<li>Double-click on the newly renamed module and you should be shown the Visual Studio Macro IDE.</li>
<li>Enter the following code (the &#8220;D&#8221; in ToString can be customised see <a href="http://www.wirwar.com/blog/2007/11/03/generating-guids-in-the-visual-studio-ide/" title="Leon Zandman" target="_blank">Leon&#8217;s</a> article):
<ul>
<li>
<pre name="code" class="vb">
   Sub Create_GUID()
        DTE.ActiveDocument.Selection.Text = System.Guid.NewGuid().ToString(&quot;D&quot;).ToUpper()
    End Sub
</pre>
</li>
</ul>
</li>
<li>Save and close the Macro IDE.</li>
<li>Back in the main Visual Studio window goto Tools -&gt; Options</li>
<li>Goto the &#8220;Keyboard&#8221; option under the &#8220;Environment&#8221; tab.</li>
<li>In the &#8220;Show Commands Containing&#8221; text box type in &#8220;Create_GUID&#8221;</li>
<li>Select the Macro sub that you just created from the list (it should be the only one)</li>
<li>Click inside the &#8220;Press Shortcut Keys&#8221; textbox then press your desired keyboard shortcut for inserting a GUID (eg. Alt+G as Leon suggested makes a lot of sense).</li>
<li>Ensure the &#8220;Use Shortcut in&#8221; option is &#8220;Global&#8221; and click on &#8220;Assign&#8221;</li>
<li>Close the options window and you should be able to start using your keyboard shortcut to quickly insert GUIDs into text!</li>
<li>If you have any other Visual Studio windows open at the time you will need to close them and reload for the macro for the macro to be loaded (or you can goto the Macro Explorer window and manually load your Macro project)</li>
</ol>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=7&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2008/03/27/quickly-generating-guids-in-visual-studio-2008/feed/</wfw:commentRss>
	
		<media:content url="http://mundeep.files.wordpress.com/2008/04/01-macro-explorer.thumbnail.png" medium="image">
			<media:title type="html">Macro Explorer</media:title>
		</media:content>
	</item>
		<item>
		<title>Retrieve location of Temp folder for Current User</title>
		<link>http://mundeep.wordpress.com/2008/03/12/retrieve-location-of-temp-folder-for-current-user/</link>
		<comments>http://mundeep.wordpress.com/2008/03/12/retrieve-location-of-temp-folder-for-current-user/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 04:09:00 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[c#]]></category>

		<category><![CDATA[io]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/?p=6</guid>
		<description><![CDATA[To determine the location of the Temp folder of the current user (generally for writing temporary files) use the following bit of c#:


string tempFolder = System.IO.Path.GetTempPath();

       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To determine the location of the Temp folder of the current user (generally for writing temporary files) use the following bit of c#:</p>
<pre name="code" class="csharp">

string tempFolder = System.IO.Path.GetTempPath();
</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=6&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2008/03/12/retrieve-location-of-temp-folder-for-current-user/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove Non-Alphanumeric Characters from a String</title>
		<link>http://mundeep.wordpress.com/2008/03/07/remove-non-alphanumeric-characters-from-a-string/</link>
		<comments>http://mundeep.wordpress.com/2008/03/07/remove-non-alphanumeric-characters-from-a-string/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 00:51:38 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[c#]]></category>

		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/?p=5</guid>
		<description><![CDATA[A colleague was looking for an easy way to remove all non-alphanumeric characters from a string and it took some time to find the easiest way was to use RegEx.Replace() as follows:

Regex.Replace(stringToCleanUp, &#34;[\W]&#34;, &#34;&#34;);

while /w (lowercase) matches any &#8216;word&#8217; character, equivalent to [a-zA-Z0-9_]
/W matches any &#8216;non-word&#8217; character, ie. anything NOT matched by /w
As an alternative [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A colleague was looking for an easy way to remove all non-alphanumeric characters from a string and it took some time to find the easiest way was to use <a href="http://msdn2.microsoft.com/en-us/library/e7f5w83z.aspx">RegEx.Replace()</a> as follows:</p>
<pre name="code" class="csharp">
Regex.Replace(stringToCleanUp, &quot;[\W]&quot;, &quot;&quot;);
</pre>
<p>while /w (lowercase) matches any &#8216;word&#8217; character, equivalent to [a-zA-Z0-9_]<br />
/W matches any &#8216;non-word&#8217; character, ie. anything NOT matched by /w</p>
<p>As an alternative if you don&#8217;t want to allow the underscore you can use [^a-zA-Z0-9].</p>
<p>The following regular expression quick reference helped in finding this solution:<br />
<a href="http://www.autohotkey.com/docs/misc/RegEx-QuickRef.htm">Regular Expressions Quick Reference</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=5&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2008/03/07/remove-non-alphanumeric-characters-from-a-string/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Checking if a SPWeb Exists</title>
		<link>http://mundeep.wordpress.com/2007/12/19/checking-if-a-spweb-exists/</link>
		<comments>http://mundeep.wordpress.com/2007/12/19/checking-if-a-spweb-exists/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 01:06:35 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<category><![CDATA[spweb]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/2007/12/19/checking-if-a-spweb-exists/</guid>
		<description><![CDATA[Ran into a problem today where we were incorrectly trying to check if a web existed. We were trying:


private bool ChildWebExists(SPWeb parentWeb, string childWebName) {
    return null != parentWeb.Webs[childWebName];
}

however this always returns an actual SPWeb object, turns out the correct way is to check the Exists property of the returned object ie:


private [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ran into a problem today where we were incorrectly trying to check if a web existed. We were trying:</p>
<pre name="code" class="csharp">

private bool ChildWebExists(SPWeb parentWeb, string childWebName) {
    return null != parentWeb.Webs[childWebName];
}
</pre>
<p>however this always returns an actual SPWeb object, turns out the correct way is to check the Exists property of the returned object ie:</p>
<pre name="code" class="csharp">

private bool ChildWebExists(SPWeb parentWeb, string childWebName) {
    using (SPweb childWeb = parentWeb.Webs[childWebName]) {
        return childWeb.Exists;
    }
}
</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=4&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2007/12/19/checking-if-a-spweb-exists/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing SQL Server 2005 Management Studio</title>
		<link>http://mundeep.wordpress.com/2007/11/23/installing-sql-server-2005-management-studio/</link>
		<comments>http://mundeep.wordpress.com/2007/11/23/installing-sql-server-2005-management-studio/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 01:42:34 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Setup]]></category>

		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://mundeep.wordpress.com/2007/11/23/installing-sql-server-2005-management-studio/</guid>
		<description><![CDATA[For some reason Microsoft decided to &#8216;hide&#8217; the installation of the Management Studio in 2005. In Sql Server 2000 you simply choose to install the &#8220;Client Tools&#8221; only. For SQL Server 2005 to just install the Management Studio as a standalone you need to browse to the &#8220;Tools\Setup&#8221; folder underneath the SQL Server install folder [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For some reason Microsoft decided to &#8216;hide&#8217; the installation of the Management Studio in 2005. In Sql Server 2000 you simply choose to install the &#8220;Client Tools&#8221; only. For SQL Server 2005 to just install the Management Studio as a standalone you need to browse to the &#8220;Tools\Setup&#8221; folder underneath the SQL Server install folder (eg. in my case of an English 64-bit install &#8220;DVD-ROM:\ENGLISH\SQL2005\DEVELOPER\SQL Server x64\Tools\Setup&#8221;) and execute &#8220;SqlRun_Tools.msi&#8221;. The Mangmenet Studio is part of the Client Tools -&gt; Management Tools.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=3&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2007/11/23/installing-sql-server-2005-management-studio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://mundeep.wordpress.com/2007/09/02/hello-world/</link>
		<comments>http://mundeep.wordpress.com/2007/09/02/hello-world/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 15:02:47 +0000</pubDate>
		<dc:creator>mundeep</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Obligitary first post. Time to start blogging!
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Obligitary first post. Time to start blogging!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mundeep.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mundeep.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mundeep.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mundeep.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mundeep.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mundeep.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mundeep.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mundeep.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mundeep.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mundeep.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mundeep.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mundeep.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mundeep.wordpress.com&blog=1630736&post=1&subd=mundeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mundeep.wordpress.com/2007/09/02/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>