<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>NicolBlog : NicolTIP</title><link>http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx</link><description>Tags: NicolTIP</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>NicolTIP#008: Windows 7 *God* mode</title><link>http://blogs.msdn.com/nicold/archive/2010/01/07/nicoltip-008-windows-7-god-mode.aspx</link><pubDate>Thu, 07 Jan 2010 09:30:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9945053</guid><dc:creator>NicolD</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/nicold/comments/9945053.aspx</comments><wfw:commentRss>http://blogs.msdn.com/nicold/commentrss.aspx?PostID=9945053</wfw:commentRss><description>&lt;p&gt;God Mode is a &lt;em&gt;secret &lt;/em&gt;Windows 7 Feature (If you can call so!!), which provides you an extended control panel to control your machine.&lt;/p&gt;  &lt;p&gt;Here are the Steps to invoke the God Mode:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Create a new folder (right-click and click on “New Folder”). Right-click on the folder and click on rename, copy and paste this: &lt;b&gt;GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}&lt;/b&gt;&lt;/li&gt;    &lt;li&gt;This folder will now be a shortcut to the Windows 7 God Mode. The Godmode allows you to quickly access many Windows 7 functions via a GUI.&lt;/li&gt; &lt;/ul&gt;  &lt;p align="center"&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/nicold/WindowsLiveWriter/NicolTIP008Windows7Godmode_93AC/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/nicold/WindowsLiveWriter/NicolTIP008Windows7Godmode_93AC/image_thumb.png" width="125" height="144" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/nicold/WindowsLiveWriter/NicolTIP008Windows7Godmode_93AC/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/nicold/WindowsLiveWriter/NicolTIP008Windows7Godmode_93AC/image_thumb_1.png" width="761" height="772" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9945053" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx">NicolTIP</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Window+7/default.aspx">Window 7</category></item><item><title>NicolTIP#005: How to show the same content in two ore more positions using master page in ASP.NET</title><link>http://blogs.msdn.com/nicold/archive/2009/03/08/nicoltip-005-how-to-show-the-same-content-in-two-ore-more-positions-using-master-page-in-asp-net.aspx</link><pubDate>Sun, 08 Mar 2009 14:47:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9465578</guid><dc:creator>NicolD</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/nicold/comments/9465578.aspx</comments><wfw:commentRss>http://blogs.msdn.com/nicold/commentrss.aspx?PostID=9465578</wfw:commentRss><description>&lt;p&gt;To write a web site and give to the entire site a coherent “look” with ASP.NET and master pages is very easy and productive. In brief, into the master page you need to put “placeholders” using the tag &amp;lt;asp:ContentPlaceHolder/&amp;gt; and into the content page, you can map real content with contenplaces (&lt;a href="http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx" target="_blank"&gt;more information&lt;/a&gt;).&lt;/p&gt;  &lt;p&gt;Sometime can be required to put the same content in more places, an example is the “title” field that you could put both in the header\title field and into a H1 tag into the body.&lt;/p&gt;  &lt;p&gt;This means, starting from the following content page:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;&amp;lt;%@ Page Title=&amp;quot;&amp;quot; Language=&amp;quot;C#&amp;quot; MasterPageFile=&amp;quot;~/MasterPages/Root.Master&amp;quot; AutoEventWireup=&amp;quot;true&amp;quot; %&amp;gt;        &lt;br /&gt;&amp;lt;asp:Content ID=&amp;quot;Content1&amp;quot; ContentPlaceHolderID=&amp;quot;Title&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;font color="#ff0000"&gt;This is my title&lt;/font&gt;&amp;lt;/asp:Content&amp;gt;         &lt;br /&gt;&amp;lt;asp:Content ID=&amp;quot;Content2&amp;quot; ContentPlaceHolderID=&amp;quot;MyContent&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;font color="#008000"&gt;This is my content&lt;/font&gt;&amp;lt;/asp:Content&amp;gt;&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;To obtain the following html output:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;&amp;lt;html&amp;gt;        &lt;br /&gt;&amp;lt;head&amp;gt;         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;title&amp;gt;&lt;font color="#ff0000"&gt;This is my title&lt;/font&gt;&amp;lt;/title&amp;gt;         &lt;br /&gt;&amp;lt;/head&amp;gt;         &lt;br /&gt;&amp;lt;body&amp;gt;         &lt;br /&gt;&amp;lt;h1&amp;gt;&lt;font color="#ff0000"&gt;This is my title&lt;/font&gt;&amp;lt;/h1&amp;gt;         &lt;br /&gt;&lt;font color="#008000"&gt;This is my content&lt;/font&gt;         &lt;br /&gt;&amp;lt;/body&amp;gt;         &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;The easy way I found is shown in the following master page:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;&amp;lt;%@ Master Language=&amp;quot;C#&amp;quot; AutoEventWireup=&amp;quot;true&amp;quot; CodeBehind=&amp;quot;Root.master.cs&amp;quot; Inherits=&amp;quot;NicolD.MasterPages.Root&amp;quot; %&amp;gt;&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font face="Courier New"&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;        &lt;br /&gt;&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &amp;gt;         &lt;br /&gt;&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;title&amp;gt;&lt;font color="#ff0000"&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;Title&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:ContentPlaceHolder&amp;gt;&lt;/font&gt;&amp;lt;/title&amp;gt;         &lt;br /&gt;&amp;lt;/head&amp;gt;         &lt;br /&gt;&amp;lt;body&amp;gt;         &lt;br /&gt;&amp;lt;h1&amp;gt;&lt;font color="#0000ff"&gt;&amp;lt;span id=&amp;quot;TitleOnPage&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;/font&gt;&amp;lt;/h1&amp;gt;         &lt;br /&gt;&lt;font color="#008000"&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;MyContent&amp;quot; runat=&amp;quot;server&amp;quot; Visible=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/asp:ContentPlaceHolder&amp;gt;&lt;/font&gt;         &lt;br /&gt;&amp;lt;/body&amp;gt;         &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;the true secret is in the master page’s code behind:-), where I filled “TitleOnPage” with “Title” place holder content.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;public partial class Root : System.Web.UI.MasterPage        &lt;br /&gt;{         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; protected override void OnInit(EventArgs e)         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; {         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; base.OnInit(e); &lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; this.Page.LoadComplete += new EventHandler(Page_LoadComplete);        &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; } &lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160;&amp;#160; private void Page_LoadComplete(object sender, EventArgs e)        &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; {         &lt;br /&gt;&lt;/font&gt;&lt;font face="Courier New"&gt;&lt;font color="#0000ff"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; LiteralControl lc = (LiteralControl)Title.Controls[0];          &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; TitleOnPage.InnerText = lc.Text;&lt;/font&gt;         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; } &lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font face="Courier New"&gt;}&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9465578" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/nicold/archive/tags/.NET/default.aspx">.NET</category><category domain="http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx">NicolTIP</category><category domain="http://blogs.msdn.com/nicold/archive/tags/ContentPlaceHolder/default.aspx">ContentPlaceHolder</category><category domain="http://blogs.msdn.com/nicold/archive/tags/master+page/default.aspx">master page</category></item><item><title>NicolTIP#004: seven new keyboard shortcuts for Window 7</title><link>http://blogs.msdn.com/nicold/archive/2009/02/26/nicoltip-004-seven-new-keyboard-shortcuts-for-window-7.aspx</link><pubDate>Thu, 26 Feb 2009 12:43:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9446129</guid><dc:creator>NicolD</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/nicold/comments/9446129.aspx</comments><wfw:commentRss>http://blogs.msdn.com/nicold/commentrss.aspx?PostID=9446129</wfw:commentRss><description>&lt;p&gt;I love keyboard shortcuts and W7 add some new really cool…&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip1"&gt;&lt;b&gt;Managing Your Windows&lt;/b&gt;&lt;/a&gt;. Windows 7 simplifies document and program management by allowing you to “dock” a window or manipulate its size with one mouse maneuver or a simple keystroke. To dock your window on one half of the screen, drag it to the left or right and it will change its size to fit that half of the screen. To manipulate the vertical size of a window, you can drag the window to the top to maximize it, or double-click the window’s top or bottom border to maximize it vertically while keeping the same width. &lt;/p&gt;  &lt;p&gt;You can also perform all of these functions with keystrokes: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;Windos key+Left Arrow&lt;/b&gt; and &lt;b&gt;Windos key&lt;/b&gt;&lt;b&gt;+Right Arrow&lt;/b&gt; dock to half the screen &lt;/li&gt;    &lt;li&gt;&lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Up Arrow&lt;/b&gt; and &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+ Down Arrow&lt;/b&gt; maximize and minimize &lt;/li&gt;    &lt;li&gt;&lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Shift+Up Arrow&lt;/b&gt; and &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Shift+Down Arrow&lt;/b&gt; maximize &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;and restore vertical size.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip2"&gt;&lt;b&gt;Multi-Monitor Window Management.&lt;/b&gt;&lt;/a&gt;&lt;b&gt; &lt;/b&gt;Windows 7 makes using multiple monitors as convenient as it should be. When you’re working multi-monitor, use the keyboard shortcuts &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Shift+Left Arrow&lt;/b&gt; and &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Shift+Right Arrow&lt;/b&gt; to move windows from one monitor to another. The rearranged window will keep its relative position to the top-left origin on the new monitor.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip3"&gt;&lt;b&gt;Project Your Display With Ease.&lt;/b&gt;&lt;/a&gt; Plugging in a projector and projecting your display is a snap with the Windows 7 driver display utility, &lt;b&gt;displayswitch.exe&lt;/b&gt;. Simply hit &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+P&lt;/b&gt; and you’ll be rewarded with the following easy-to-navigate pop-up window. By hitting your arrow keys (or &lt;b&gt;Windos key&lt;/b&gt;&lt;b&gt;+P&lt;/b&gt;) you can switch through multiple display settings, such as “clone”, “extend” or “external only”.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip4"&gt;&lt;b&gt;Live Clutter-Free.&lt;/b&gt;&lt;/a&gt;&lt;b&gt; &lt;/b&gt;We live with enough clutter in our lives. Windows 7 gets rid of all the superfluous windows behind your active window. Just hit &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Home&lt;/b&gt; to minimize all inactive windows. To restore the windows when you’d like them, just press&lt;strong&gt;:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Home again&lt;/b&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip5"&gt;&lt;b&gt;Help the Help Desk Help You.&lt;/b&gt;&lt;/a&gt;&lt;b&gt; &lt;/b&gt;Solving problems unique to a machine can be an arduous task for both the end-user and the help desk. That’s why Windows 7 introduces the Problem Steps Recorder, a screen-capture tool that allows the end-user to record the problems they’re having step-by-step. It’s as simple as hitting “record” then adding in comments as needed. A HTML-based file is converted to a .ZIP folder, which is easily passed on to the help desk. The program is accessible from the Control Panel under “Record steps to reproduce a problem” or run &lt;b&gt;psr.exe&lt;/b&gt; from Explorer.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip6"&gt;&lt;b&gt;Aero Peek Your Desktop.&lt;/b&gt;&lt;/a&gt;&lt;b&gt; &lt;/b&gt;A lesser-known versatile tool on the taskbar introduced with Windows 7 is the Windows&lt;sup&gt;®&lt;/sup&gt; Aero&lt;sup&gt;®&lt;/sup&gt; feature, “Aero Peek” – the small rectangle in the lower right hand corner. It allows you to peek at any of the icons or gadgets on your desktop. The keyboard shortcut &lt;b&gt;&lt;b&gt;Windos key&lt;/b&gt;+Space&lt;/b&gt; performs the same function.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a name="Tip7"&gt;&lt;b&gt;Shuffling Through Program Windows.&lt;/b&gt;&lt;/a&gt;&lt;b&gt; &lt;/b&gt;If you’re running a number of files from the same program, such as multiple documents in Microsoft Word, Windows 7 allows you to switch through these windows with ease. Simply hold down the &lt;b&gt;Ctrl&lt;/b&gt; key while repeatedly clicking the icon from the taskbar. Each click will change the window to the next in the sequence, in the order that you opened them.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9446129" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx">NicolTIP</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Window+7/default.aspx">Window 7</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Shortcut/default.aspx">Shortcut</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Keyboard/default.aspx">Keyboard</category></item><item><title>NicolTIP#003: How to install Windows SharePoint Services 3.0 Tools - Visual Studio 2008 Extensions, Version 1.2 on Windows Vista</title><link>http://blogs.msdn.com/nicold/archive/2009/02/17/nicoltip003-how-to-install-windows-sharepoint-services-3-0-tools-visual-studio-2008-extensions-version-1-2-on-windows-vista.aspx</link><pubDate>Tue, 17 Feb 2009 14:46:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9427471</guid><dc:creator>NicolD</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/nicold/comments/9427471.aspx</comments><wfw:commentRss>http://blogs.msdn.com/nicold/commentrss.aspx?PostID=9427471</wfw:commentRss><description>&lt;p&gt;If you try to install &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7bf65b28-06e2-4e87-9bad-086e32185e68" target="_blank"&gt;Windows SharePoint Services 3.0 Tools - Visual Studio 2008 Extensions, Version 1.2&lt;/a&gt; on Windows Vista, you will get an error message telling you that you have to install Windows SharePoint Services 3.0 in order to install the tools. Windows SharePoint Services 3.0 (WSS 3.0) doesn't support non Windows Servers OS, so it's not possible to install WSS 3.0 on Windows Vista, which means you will not be able to install VS 2008 Extensions on your development machine.&lt;/p&gt;  &lt;p&gt;This happens because setup just checks on the registry the presence of a specific key. To avoid this behavior and install these extensions on Vista (but should work on XP as well) just write the following key on your machine registry:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\12.0]      &lt;br /&gt;&lt;em&gt;&amp;quot;Sharepoint&amp;quot;=&amp;quot;Installed&amp;quot;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9427471" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/nicold/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx">NicolTIP</category><category domain="http://blogs.msdn.com/nicold/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Registry/default.aspx">Registry</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Sharepoint/default.aspx">Sharepoint</category></item><item><title>NicolTIP#002: Create a manifest.xml extracting content type(s) and columns from a site using Sharepoint Designer</title><link>http://blogs.msdn.com/nicold/archive/2009/02/15/nicoltip-002-create-a-manifest-xml-extracting-content-type-s-and-columns-from-a-site-using-sharepoint-designer.aspx</link><pubDate>Sun, 15 Feb 2009 18:55:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9424457</guid><dc:creator>NicolD</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/nicold/comments/9424457.aspx</comments><wfw:commentRss>http://blogs.msdn.com/nicold/commentrss.aspx?PostID=9424457</wfw:commentRss><description>&lt;p&gt;Step to extract a content type and columns to CAML (XML)&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Create you content type and columns in the web UI. &lt;/li&gt;    &lt;li&gt;Create a list/library item using you new content type. &lt;/li&gt;    &lt;li&gt;Load up &lt;strong&gt;Sharepoint Designer &lt;/strong&gt;to the site where you created you item. &lt;/li&gt;    &lt;li&gt;From the File menu, click &lt;strong&gt;Export -&amp;gt; Personal Web Package&lt;/strong&gt;. &lt;/li&gt;    &lt;li&gt;In the export web package window select the list/library where your create the item using the new content type and click &lt;strong&gt;add&lt;/strong&gt;. &lt;/li&gt;    &lt;li&gt;Save the package to your local drive. &lt;/li&gt;    &lt;li&gt;Next browse to where you saved the file and rename it from &lt;strong&gt;.fwp&lt;/strong&gt; to &lt;strong&gt;.cab&lt;/strong&gt;. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Extract manifest.xml to your local drive&lt;/strong&gt;. &lt;/li&gt;    &lt;li&gt;Load the file up in your favourite XML viewer (might take a second or two it can be a large file). &lt;/li&gt;    &lt;li&gt;Navigate to the UserLists/Field node (Solution/UserLists/Fields). &lt;/li&gt;    &lt;li&gt;within this node look for your field, you will be able to see the CAML that describes your field. &lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9424457" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx">NicolTIP</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Content+Type/default.aspx">Content Type</category><category domain="http://blogs.msdn.com/nicold/archive/tags/manifest.xml/default.aspx">manifest.xml</category><category domain="http://blogs.msdn.com/nicold/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Sharepoint+Designer/default.aspx">Sharepoint Designer</category></item><item><title>NicolTIP#001: edit easily your machine's HOST file</title><link>http://blogs.msdn.com/nicold/archive/2009/02/11/nicoltip-001-edit-easily-your-machine-s-host-file.aspx</link><pubDate>Wed, 11 Feb 2009 19:57:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9412999</guid><dc:creator>NicolD</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/nicold/comments/9412999.aspx</comments><wfw:commentRss>http://blogs.msdn.com/nicold/commentrss.aspx?PostID=9412999</wfw:commentRss><description>&lt;p&gt;Edit the HOST file in Vista is difficult than ever, thanks to UAC. If you’re a geek that changes HOST file daily this can be a bit frustrating. I circumnavigated the difficulty with a shortcut.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Right click on the folder you want to place the hyperlink (i.e. desktop) and select “new-&amp;gt;Shortcut” &lt;/li&gt;    &lt;li&gt;As location of the item type: &lt;strong&gt;notepad.exe C:\Windows\System32\drivers\etc\hosts&lt;/strong&gt; &lt;/li&gt;    &lt;li&gt;As Shortcut name type “Edit HOST file (as administrator)” &lt;/li&gt;    &lt;li&gt;right click on the new shortcut just created and select “properties” &lt;/li&gt;    &lt;li&gt;Select “Advanced” &lt;/li&gt;    &lt;li&gt;Select “Run as Administrator” &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;Now, if you need to edit the HOST file (and folder where you put the shortcut is indexed by vista search) just click on start button and type “edit host”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/nicold/WindowsLiveWriter/NicolTIP001editeasilymachineHOSTfile_D8A2/nicoldtip01_2.png"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Edit Machine HOST file" border="0" alt="Edit Machine HOST file" src="http://blogs.msdn.com/blogfiles/nicold/WindowsLiveWriter/NicolTIP001editeasilymachineHOSTfile_D8A2/nicoldtip01_thumb.png" width="454" height="789" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9412999" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/nicold/archive/tags/Vista/default.aspx">Vista</category><category domain="http://blogs.msdn.com/nicold/archive/tags/Host+file/default.aspx">Host file</category><category domain="http://blogs.msdn.com/nicold/archive/tags/NicolTIP/default.aspx">NicolTIP</category><category domain="http://blogs.msdn.com/nicold/archive/tags/UAC/default.aspx">UAC</category></item></channel></rss>