﻿<?xml version="1.0" encoding="UTF-8"?>
<!--RSS generated by Microsoft SharePoint Foundation RSS Generator on 5/19/2012 12:17:18 AM -->
<?xml-stylesheet type="text/xsl" href="/community/blog/_layouts/RssXslt.aspx?List=3f2db4d9-cbf3-4619-9077-133fcd1aa332" version="1.0"?>
<rss version="2.0">
  <channel>
    <title>Blog | Collective Intelligence, Inc.: Posts</title>
    <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/AllPosts.aspx</link>
    <description>RSS feed for the Posts list.</description>
    <lastBuildDate>Sat, 19 May 2012 04:17:18 GMT</lastBuildDate>
    <generator>Microsoft SharePoint Foundation RSS Generator</generator>
    <ttl>60</ttl>
    <language>en-US</language>
    <image>
      <title>Blog | Collective Intelligence, Inc.: Posts</title>
      <url>http://www.collectiveintelligence.com/community/blog/_layouts/images/siteIcon.png</url>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/AllPosts.aspx</link>
    </image>
    <item>
      <title>InfoPath forms redirect after submission</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=25</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass17ED3A9C811B42089F2B9EE481C4078F">After creating several infopath forms... I needed a method to redirect the users back to the sharepoint homepage rather then sending them to the allitems page.  In certain situations, you may only want an admin or supervisor to view the List items, not normal users.  So I discovered this url method
<blockquote>
&amp;Source=http://sharepoint-landing/Pages/Default.aspx</blockquote>

You will need to place this snippet directly after the first XsnLocation=http... and directly before &amp;SaveLocation=http...

The final URL should look something like this (minus the &lt;br&gt;)
<blockquote>
http://sp/Pages/Infopath/_layouts/FormServer.aspx?XsnLocation=http://sp/Pages/Infopath/Form.xsn
<span style="font-weight:bold">&amp;Source=http://sharepoint-landing/Pages/Default.aspx</span>
&amp;SaveLocation=http://sp/Pages/Infopath/Forms
&amp;Source=http://sp/Pages/Infopath/AllItems.aspx&amp;DefaultItemOpen=1</blockquote>
​**NOTE: Redirects can only occur within the same site collection.</div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=11&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=11&RootFolder=*">Microsoft InfoPath</a></div>
<div><b>Published:</b> 2/21/2012 12:27 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2007; SharePoint 2010; Microsoft InfoPath</category>
      <pubDate>Tue, 21 Feb 2012 17:28:26 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=25</guid>
    </item>
    <item>
      <title>Hiding Calendar start times</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=24</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass0A22EC63FA23406E95DD5E10494D674B">Back to MOSS 2007.  I was tasked to hide the starting times within the multiple calendar views.  So I instantly thought, its CSS styling time... and this is what I came up with. <div><br /></div>
<div>
Within the calendar page, I added a new content editor web part and made it a hidden webpart.  I then went into the source editor and added these lines of code.
<blockquote>
&lt;style&gt;
.ms-cal-weekitem A NOBR {display:none;} </blockquote>
<blockquote>.ms-cal-dayitem nobr{display:none;} </blockquote>
<blockquote>td.ms-cal-monthitem A NOBR {display:none;}
&lt;/style&gt;</blockquote>

This will override the core.css styles and hide the starting times when viewing a weekly, daily, and monthly calendar.  This will allow the events to sort vertically and not stretch the date by sorting horizontally.

Please enjoy.​</div></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 12:26 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; SharePoint 2007; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 17:27:12 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=24</guid>
    </item>
    <item>
      <title>Publishing Portal minus the Approval Workflow</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=23</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassA70143A6D55B453282B2E9962499528E">After installing a SharePoint 2010 Publishing Enterprise Portal, I noticed the publishing is now two parts, it includes an out of the box approval workflow.  This is good if you need a two step workflow attached.  However, most small companies do not need a content approval process... so how do we get around this? <div><br /></div>
<div>Its a manually process, but I found out if you go through each library and do the following steps <div><br /></div>
<div>
Site Actions &gt; Edit Page &gt; Click Page Tab &gt; Library Settings &gt; Versioning Settings </div>
<div><br /></div>
<div>
Then set &quot;Require content approval for submitted items&quot; to NO </div>
<div><br /></div>
<div>You will have to go through each library and switch this settings to NO. 
(even picture and document libraries are defaults to content approval) </div>
<div><br /></div>
<div>
After doing this, you now can simply click publish and your content is LIVE.</div></div></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a></div>
<div><b>Published:</b> 2/2/2012 12:24 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2010</category>
      <pubDate>Tue, 21 Feb 2012 17:25:47 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=23</guid>
    </item>
    <item>
      <title>Files in SharePoint 2010 Save Dialog</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=22</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassEB9DE56E65E14A2EA56D737EB759255F"><p>​The first time I setup a SharePoint 2010 instance, I noticed that the document libraries were only allowing users to save a local copy to their hard drive before opening the file. After doing some research I found out that this is a new tightened security added in from Microsoft.</p>
<p>In order to get around this feature, simply log into central admin and click on the current web application.</p>
<p>Then click General Settings and change &quot;Browser File Handling&quot; from Strict (default) to Permissive.</p>
<p>Here is the default info under General Settings</p>
<p><strong>Browser File Handling</strong></p>
<p>Specifies whether additional security headers are added to documents served to web browsers. These headers specify that a browser should show a download prompt for certain types of files (for example, .html) and to use the server's specified MIME type for other types of files.</p>
<p><strong>Permissive</strong> Specifies no headers are added, which provides a more compatible user experience.</p>
<p><strong>Strict</strong> Adds headers that force the browser to download certain types of files. The forced download improves security for the server by disallowing the automatic execution of Web content that contributors upload.</p></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a></div>
<div><b>Published:</b> 2/1/2012 12:22 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2010</category>
      <pubDate>Tue, 21 Feb 2012 17:23:34 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=22</guid>
    </item>
    <item>
      <title>Web Part Maintenance View</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=21</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassB8180CC1E97C4870B3AA0CAEC9B43794">
<p>Often times when building custom web parts or hanging third party web parts, error may occur or sometimes a script error is thrown.  Well how do I edit the web part page and delete the erroring web part? Certain cases, you don't even have access to site actions... so what do you do?</p>
<p>Simple work around... add ?contents=1 at the end of whatever page you need to delete the buggy web part from.</p>
<p>For example, URL of the erroring page<br />http://myfoundation/Home/default.aspx</p>
<p>Web Part Maintenance Page<br />http://myfoundation/Home/default.aspx?contents=1​</p>
<p></p>
<p></p></div>
​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 12:13 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; SharePoint 2010; SharePoint 2007; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 17:14:29 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=21</guid>
    </item>
    <item>
      <title>SharePoint Designer - Eat, Sleep, Breathe Designer.</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=20</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass6EA576571400430695F12DB765748EC7">With SharePoint Designer 2010, you can build complete, rich, reusable, process-centric applications on the SharePoint platform that integrate external data. Developers can use SharePoint Designer 2010 to get a quick start on SharePoint development projects. <div><br /></div>
<div>This is a quick reference for all your SharePoint Designer Needs: <br /></div>
<div><div><b><br /></b></div>
<div>
<b>Introductory Video - SharePoint Designer 2010 Intro</b>
<a href="http://www.microsoft.com/showcase/en/us/details/82bc0283-1da2-4b91-818c-4a40c9629609">http://www.microsoft.com/showcase/en/us/details/82bc0283-1da2-4b91-818c-4a40c9629609</a></div>
<div><br /><a href="http://www.microsoft.com/showcase/en/us/details/82bc0283-1da2-4b91-818c-4a40c9629609"></a>

<div style="margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px">
<b>Product Information</b></div>
<div style="margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px">
<a href="http://sharepoint.microsoft.com/en-us/product/related-technologies/pages/sharepoint-designer.aspx">http://sharepoint.microsoft.com/en-us/product/related-technologies/pages/sharepoint-designer.aspx</a></div>
<div style="margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px"><br /></div>
<div style="margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px">

</div>
<div style="margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px">
</div>
<div style="margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px">
<b>SharePoint Designer Developer Center</b></div>
<div>
<a href="http://msdn.microsoft.com/en-us/office/bb421303.aspx">http://msdn.microsoft.com/en-us/office/bb421303.aspx</a></div>
<div><br /></div>

<b>Sharepoint 2010 x86 (32-bit)</b>
<a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=d88a1505-849b-4587-b854-a7054ee28d66&amp;displaylang=en">http://www.microsoft.com/downloads/en/details.aspx?FamilyID=d88a1505-849b-4587-b854-a7054ee28d66&amp;displaylang=en</a> </div>
<div><br /></div>
<div><b>SharePoint 2010 x64 (64-bit)</b>
<a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=566d3f55-77a5-4298-bb9c-f55f096b125d&amp;displaylang=en">http://www.microsoft.com/downloads/en/details.aspx?FamilyID=566d3f55-77a5-4298-bb9c-f55f096b125d&amp;displaylang=en</a> </div>
<div><b><br /></b></div>
<div>
<b>SharePoint 2007 </b>
<a href="http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&amp;FamilyID=baa3ad86-bfc1-4bd4-9812-d9e710d44f42">http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&amp;FamilyID=baa3ad86-bfc1-4bd4-9812-d9e710d44f42</a></div></div></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a></div>
<div><b>Published:</b> 2/21/2012 12:10 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2007; SharePoint 2010</category>
      <pubDate>Tue, 21 Feb 2012 17:11:17 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=20</guid>
    </item>
    <item>
      <title>Moving SharePoint 2010 Central Admin from Web Server to App Server</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=19</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass97FCD95C47FF4DA8BA8C76C8A7584EFB">I always heard horror stories from moving Central Administration around, but once I gave it my first try... I realized it wasn't even that hard for 2010.  Here are the simple steps to perform to move your Central Administration from your Web Server to your App Server.
<ol>
<li><b>On the Web Server where CA is currently located</b></li>
<ul>
<li>Run the SP configuration wizard</li>
<li>Click Do not disconnect from the server farm</li>
<li>Click Yes, Remove this website from this machine (removes IIS site)</li>
<li>Click OK<br /><br /></li>
</ul>
<li><b>Now, on the App Server</b></li>
<ul>
<li>Run the SP configuration wizard</li>
<li>Click Do not disconnect from the server farm</li>
<li>Click Use this machine to the CA website</li>
<li>Place same port # :1111</li>
<li>Click Next<br /><br /></li>
</ul>
<ol></ol>
<li><b>Double Check your newly located Central Administration</b></li>
<ul>
<li>You may have to re-run the Farm Configuration Wizard<br /><br /></li>
</ul>
<li><b>Double Check your Services on each server<br /><br /></b></li>
<li><b>Double Check the Shared Service Provider<br /><br /></b></li>
<li><b>Double Check your event log for any unforeseen errors.</b></li>
</ol>
<div>
That's It, Once you successfully moved CA, if you log into your Web Server and launch CA, you will notice it is now pointed to the new App Server.<br /><br /></div>
<div>

</div>
<div>
<b>*NOTED: </b>Best Practice is to Host your Central Administration on your Application Server.<br /><br /></div>
<div>

</div>
<div>
Enjoy!</div>
​</div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a></div>
<div><b>Published:</b> 2/21/2012 12:09 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2010</category>
      <pubDate>Tue, 21 Feb 2012 17:10:00 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=19</guid>
    </item>
    <item>
      <title>Moving ALL SharePoint 2010 Database to a Storage Area Network</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=18</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass4306A435E8D74E68A39E23D2F235A0BA">Here is the approach that I took, when moving all my SharePoint 2010 Databases (including admin, config and search), so far so good with my current SharePoint 2010 Farm.
<ol>
<li>On the server with Central Administration, I stopped the following services.</li>
<ul>
<li>SharePoint 2010 Administration</li>
<li>SharePoint 2010 Timer</li>
<li>SharePoint 2010 Tracing</li>
<li>SharePoint 2010 User Code Host</li>
<li>SharePoint 2010 VSS Writer</li>
<li>SharePoint Foundation Search V4</li>
<li>World Wide Web Publishing Service</li>
<li>SharePoint Server Search 14</li>
<li>Web Analytics Data Processing Service</li>
<li>Web Analytics Web Service<br /><br /></li>
</ul>
<li>Then on my MSSQL database, I mounted a new drive using the ISCSI initiator, which created a new storage drive where my new Databases will live.</li>
<ul>
<li>Nice walk thru for the ISCSI initiator process - <a href="http://mikefrobbins.com/2010/08/19/iscsi-initiator-configuration-on-windows-2008-r2-server-core/">http://mikefrobbins.com/2010/08/19/iscsi-initiator-configuration-on-windows-2008-r2-server-core/</a><br /><br />
</li>
</ul>
<li>Next, using SQL Server Management Studio, I detached all my databases one by one.
<br /><br /></li>
<li>Then I simply copied ALL the SP databases over to my new drive. 
(copy all .MDFs and .LDFs)<br /></li>
<ul>
<li>On my new drive, I did place the new DBs in a folder structure simliar to my original SQL \\MSSQL\DATA\<br /><br /></li>
</ul>
<li>Next, using SQL Server Management Studio, I attached all the databases from the new path.</li>
<ul>
<li><b>NOTE:</b> Be sure to run management studio AS ADMIN or your SharePoint_Config will attach as Read-Only, which will cause you issues with your farm.<br /><br />
</li>
</ul>
<li>Once all the databases are reattached and running, I rebooted the SharePoint Servers.
<br /><br /></li>
<li>I then went back into my server with CA, ran the SharePoint Configuration Wizard, which allowed me to reconnect to the Farm, which I had to supply my existing Farm PassPhrase.
<br /><br /></li>
<li>I had to also reconnect the SharePoint Central Administration through the Wizard.</li>
<ul>
<li>One thing I did notice is that I had to delete my current CA from IIS, because it conflicting with the wizard.</li>
<li>But once the configuration wizard was complete, it reconnected and recreated the CA in IIS.
<br /><br /></li>
</ul>
<li>Thats it, CA came back up, all my web servers were reconnected and life is good.
<br /><br /></li>
<li>Be sure to double check your Health Analyzer and your Services on Servers.<br /><br /></li>
</ol>
​</div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 12:07 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; SharePoint 2010; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 17:08:30 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=18</guid>
    </item>
    <item>
      <title>Hiding Quick Launch Nav in SharePoint 2010</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=17</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass5806E72C2A5842528F1F93DF699B12FA">I found adding inline styles not only successfully hides the Quick Launch but if you also add a 0px margin, that will compress the left nav placeholder. This will need to be done in the Master page.
<div>

</div>
<div>
locate the following styles</div>
<div><br /></div>
<div>

</div>
<div>
<div>
<div>
&lt;div id=&quot;s4-leftpanel&quot; class=&quot;s4-notdlg&quot;&gt;</div>
<div><br /></div>
<div>
This div class references the ribbon itself, so we are goin to add a div style to display NONE</div>
<div><br /></div>
<div>

</div>
<div>
&lt;div class=&quot;s4-ca s4-ca-dlgNoRibbon&quot; id=&quot;MSO_ContentTable&quot;&gt;</div>
<div><br /></div>
</div>
</div>
<div>
<div>
</div>
</div>
<div>
This div class references the placeholder (navigation column) we will need to compress this and add a div style that will make the left margin a 0 px</div>
<div><br /></div>
<div>

</div>
<div>
after your done your two new tags should look simliar to these below</div>
<div><br /></div>
<div>

</div>
<div>
<div>
&lt;div id=&quot;s4-leftpanel&quot; style=&quot;display:none&quot; class=&quot;s4-notdlg&quot;&gt;</div>
<div><br /></div>
<div>
&lt;div class=&quot;s4-ca s4-ca-dlgNoRibbon&quot; style=&quot;margin-left:0px&quot; id=&quot;MSO_ContentTable&quot;&gt;</div>
<div><br /></div>
</div>
<div>
<div>
<div>

</div>
<div>
Thats it... once this is done, check the master page in and you will no longer see the quick launch.</div>
</div>
</div>
​</div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 12:06 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; SharePoint 2010; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 17:07:10 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=17</guid>
    </item>
    <item>
      <title>Commonly Used XSL Statements</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=16</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassB7CE9A4C34DB4CCEA1B909574A795366"><p><strong>Sample Code for a working XSL If Then Statement</strong></p>
<p>&lt;xsl:choose&gt;</p>
<p>&lt;xsl:when test=&quot;@new_website != ''&quot;&gt;&lt;a href=&quot;{@new_website}&quot; target=&quot;_blank&quot;&gt;&lt;strong&gt;FULL PROPERTY DETAILS&lt;/strong&gt;&lt;/a&gt;&lt;/xsl:when&gt;</p>
<p>&lt;xsl:otherwise&gt;&lt;a href=&quot;/PropertyPDFs/{@new_businesskey}.pdf&quot; target=&quot;_blank&quot;&gt;&lt;strong&gt;FULL PROPERTY DETAILS&lt;/strong&gt;&lt;/a&gt;&lt;/xsl:otherwise&gt;</p>
<p>&lt;/xsl:choose&gt;</p>
<p>​<strong>Sample Code for a working XSL Normalizing Spacing<br />(If value doesn't exist, Hide the spacing and label)</strong></p>
<div>&lt;xsl:if test=&quot;not(normalize-space(@new_warehousesqft) = '')&quot;&gt;Warehouse Sq. Ft.: &lt;xsl:value-of select=&quot;@new_warehousesqft&quot; /&gt;&lt;br /&gt;&lt;/xsl:if&gt;</div>
<div><strong>​<br /></strong></div></div>
​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 11:56 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; SharePoint 2007; SharePoint 2010; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 16:57:14 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=16</guid>
    </item>
    <item>
      <title>Reporting Service Web Part Error</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=15</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass860C96DFE9C747A187ADD49F8F77CF11"><p>Today we discovered an issue with the RS Webpart.  The issue was, the SPsessionStateService was disabled, the status of this service can only be viewed from Powershell.</p>
<ul><li>Uninstalled the rsSharePoint.msi, rebooted web server<br /><br /></li>
<li>Disabled the UAC (user access control)<br /><br /></li>
<li>Reinstalled rsSharePoint.msi, Activated RS Feature<br /><br /></li>
<li>Opened Powershell as Administrator</li>
<ul><li><span class="Apple-style-span" style="line-height:18px;font-family:'trebuchet ms', tahoma, arial;font-size:12px">PS C:\&gt; Enable-SPSessionStateService</span></li></ul></ul>
<p><font class="Apple-style-span" face="'trebuchet ms', tahoma, arial"><span class="Apple-style-span" style="line-height:18px;font-size:12px">Opened Page, Inserted Web Part, No Error.</span></font></p></div>
​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a></div>
<div><b>Published:</b> 2/21/2012 11:54 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2010</category>
      <pubDate>Tue, 21 Feb 2012 16:56:00 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=15</guid>
    </item>
    <item>
      <title>Stay Up to Date on the Availability of SharePoint Online Sites</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=14</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassABFBE2CDDD8A4CD89B55ECDBA0D11653">If your organization has a hosted SharePoint Online site provided as a service by Microsoft Online Services, there's an RSS feed you may want to review. Microsoft uses an RSS news feed to inform its subscribers about planned and unplanned downtime of its services, including SharePoint Online. The feed is updated with new information on a regular basis, and is an effective way to stay current on the status of your SharePoint Online service and any upcoming maintenance on it. The feed can be found at:<div><a href="https://rss.microsoftonline.com/feeds.aspx?center=default&amp;chan=notifications&amp;lang=en-US">https://rss.microsoftonline.com/feeds.aspx?center=default&amp;chan=notifications&amp;lang=en-US​</a><br /></div>
<div><br /></div>
<div>original source: <a href="http://secretsofsharepoint.com/cs/blogs/tips/archive/2011/06/01/stay-up-to-date-on-the-availability-of-sharepoint-online-sites.aspx">Secrets of SharePoint</a></div></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 11:53 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; SharePoint 2010; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 16:53:39 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=14</guid>
    </item>
    <item>
      <title>CRM 4.0 ManytoMany Import</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=13</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassEE3DDA7F88084112BB5A14ACB7F9C4C0"><p><span><strong>This a command line app.</strong></span></p>
<p>
<span>To Export, simply run the application with the following command line:</span><br />
</p>

<p><span>CRMAssocManyToMany.exe export &quot;&lt;server url&gt;&quot;
&quot;&lt;org name&gt;&quot; &quot;&lt;destination N-N table&gt;&quot;
&quot;&lt;Entity Type 1&gt;&quot; &quot;&lt;Entity Type 2&gt;&quot;
&quot;&lt;Export File Path/name&gt;&quot;<span> </span></span></p>
<p><span>
<span>To Import, simply run the application with the following command line:</span><br />
</span></p>

<p><span>CRMAssocManyToMany.exe
import &quot;&lt;server url&gt;&quot; &quot;&lt;org name&gt;&quot;
&quot;&lt;destination N-N table&gt;&quot; &quot;&lt;Entity Type 1&gt;&quot; &quot;&lt;Entity Type 2&gt;&quot; &quot;&lt;Import File
Path/name&gt;&quot;<span> </span></span></p>
<p><span>
<span>For example, the following command line inserts the keys (GUIDs) from the
C:\Import.txt table into the new_new_contactowners_contact many to many table,
and indicates that the first column in the file is &quot;contact&quot; entity
keys and the second column contains &quot;new_contactowners&quot; entity keys.</span><br />
</span></p>

<p><span>CRMAssocManyToMany.exe import &quot;http://crm01&quot; &quot;CItest&quot;
&quot;</span><span>new_new_contactowners_contact</span><span>&quot; &quot;</span><span>contact</span><span>&quot; &quot;</span><span>new_contactowners</span><span>&quot; &quot;C:\Import.txt&quot;<span> </span></span></p>
<p><span>
Import File Specification example line (CSV)<span>:</span><br /><span>
</span><br /><span>
&lt;Entity Type 1 GUID Key&gt;,&lt;Entity Type 2 GUID Key&gt;</span><br /><span>
</span><br /><span>
Where &lt;Entity Type X GUID key&gt; corresponds to the entity name at either
side of the N:N relationship; Note that these must be in the same order as the
&quot;&lt;Entity Type 1&gt;&quot; and &quot;&lt;Entity Type 2&gt;&quot; parameters
on the command line.</span><br /><span>
</span><br /><span>
<strong>Notes:</strong></span></span></p>
<span>

</span><p></p>
<ul><li><span>Do not include a
column name line in the file.</span></li>
<li>Do not wrap GUID
values in quotes</li></ul>
<p></p>
<span>

</span><p><span>Download Source: http://crmmanytomany.codeplex.com/​</span></p>

</div>
​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*">Dynamics CRM 4.0</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 11:51 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Dynamics CRM 4.0; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 16:52:15 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=13</guid>
    </item>
    <item>
      <title>Dynamics CRM 4.0 Build Versions</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=9</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass0D3EC347A5244F739CDD0E23730E6C36"><table cellspacing="1" class="table " style="border-right-width:3px;border-left-width:3px;border-top-width:0px;border-bottom-width:2px;background-image:initial;background-attachment:initial;font-family:'segoe ui', arial, verdana, tahoma, sans-serif;line-height:16px;text-align:left"><tbody><tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/952858/EN-US">952858</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 1 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">November 24, 2008</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.1113</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/959419/EN-US">959419</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 2 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">January 15, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.1312</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/961768/EN-US">961768</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 3 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">March 12, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.1408</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/968176/EN-US">968176</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 4 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">May 7, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.1551</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/970141/EN-US">970141</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 5 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">July 2, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.1645</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/970148/EN-US">970148</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 6 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">August 27, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.1750</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/971782/EN-US">971782</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 7 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">October 22, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.2138</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/975995/EN-US">975995</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 8 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">December 17, 2009</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.2542</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/977650/EN-US">977650</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 9 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">February 11, 2010</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.2644</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/979347/EN-US">979347</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 10 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">April 8, 2010</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.2741</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/default.aspx?kbid=981328">981328</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 11 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">June 3, 2010</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.2861</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/kb/2028381">2028381</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 12 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">July 29, 2010</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.2861</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/kb/2267499">2267499</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 13 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">September 23, 2010</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.0.7333.3018</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/kb/2389019">2389019</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 14 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">November 18, 2010</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3135</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/default.aspx?kbid=2449283">2449283</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 15 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">January 10, 2011</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3231</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/default.aspx?kbid=2477743">2477743</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 16 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">March 10, 2011</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3335</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/default.aspx?kbid=2477746">2477746</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 17 forMicrosoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">May 5, 2011</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3414</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/default.aspx?kbid=2477777">2477777</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 18 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">June 30, 2011</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3531</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a href="http://support.microsoft.com/default.aspx?kbid=2550097">2550097</a><span class="kb_space" style="padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></span></td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 19 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">August 25, 2011</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3628</td></tr>
<tr><td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/2550098/[LN">2550098</a> </td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 20 for Microsoft Dynamics CRM 4.0</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">November 10, 2011</td>
<td style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3732​</td></tr>
<tr><td rowspan="1" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial"><a class="KBlink" href="http://support.microsoft.com/kb/2621054">2621054</a> </td>
<td rowspan="1" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">Update Rollup 21 for Microsoft Dynamics CRM 4.0<br /></td>
<td rowspan="1" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">February 9, 2012<br />
  <br /></td>
<td rowspan="1" style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;vertical-align:top;background-image:initial;background-attachment:initial">4.00.7333.3822</td></tr></tbody></table></div>
<br />​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*">Dynamics CRM 4.0</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/20/2012 10:40 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>Dynamics CRM 4.0; CI - JImes; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 15:41:08 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=9</guid>
    </item>
    <item>
      <title>Formatting Phone Numbers on CRM fields</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=10</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassBA005FC8503B41C7AFAB219625EB0D69"><p>This code snippet is added to the field level onchange event.</p>
<p>This code formats the phone number, This method supports 7-digit and 10-digit numbers, for example, (410) 555-1212.</p>
<pre style="padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;margin-top:0px;margin-bottom:0px;font-family:consolas, courier, monospace;word-break:break-all;word-wrap:break-word;overflow-x:auto;overflow-y:auto;font-size:13px;text-align:left">// Get the field that fired the event.
var oField = event.srcElement;

// Validate the field information.
if (typeof(oField) != &quot;undefined&quot; &amp;&amp; oField != null)
{
 // Remove any non-numeric characters.
 var sTmp = oField.DataValue.replace(/[^0-9]/g, &quot;&quot;);

 // If the number has a valid length, format the number.
 switch (sTmp.length)
 {
  case &quot;4105551212&quot;.length:
  oField.DataValue = &quot;(&quot; + sTmp.substr(0, 3) + &quot;) &quot; +
  sTmp.substr(3, 3) + &quot;-&quot; + sTmp.substr(6, 4);
  break;

  case &quot;5551212&quot;.length:
  oField.DataValue = sTmp.substr(0, 3) + &quot;-&quot; +
  sTmp.substr(3, 4);
  break;
 } </pre>
<p><span style="font-family:consolas, courier, monospace;font-size:13px;text-align:left">}</span>​</p>
<p>source: <a href="http://msdn.microsoft.com/en-us/library/cc468409.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/cc468409.aspx​</a></p></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*">Dynamics CRM 4.0</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/16/2012 11:11 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>Dynamics CRM 4.0; CI - JImes; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 16:11:59 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=10</guid>
    </item>
    <item>
      <title>Mapping SharePoint Docs as Network Drives</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=6</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassEEDDA86098D947C18AF82870990DE55D"><p>SharePoint has the ability to map document libraries as network drives. This makes it easier for the end user to adobt document libraries and save them quicker.</p>
<div>In order to SharePoint docs as network drives you need to do the following:<br /></div>
<div>Windows 7<br /></div>
<ul><li>Open My Computer &gt; Click Map Network Drive<br /></li>
<li>Browse to the desired Doc Lib, Copy and Paste the URL, Do not include any trailing pages or folders, you only want the doc lib.<br /></li>
<li>example: ​<a href="https://secure.sharepointsite.com/sales/Client Library">https://secure.sharepointsite.com/sales/Client%20Library</a><br /></li>
<li>Select Network Letter &gt; Select reconnect at log in &gt; Enter in your Password<br /></li></ul>
<div>Wi<span class="ms-rteThemeFontFace-1">ndows XP</span></div>
<span class="ms-rteThemeFontFace-1"></span><div><ul><li><span class="ms-rteThemeFontFace-1">Open My Computer &gt; </span><span class="Apple-style-span ms-rteThemeFontFace-1" style="line-height:13px">Click Tools &gt; Map network drive</span><br /></li>
<li><span class="Apple-style-span ms-rteThemeFontFace-1" style="line-height:13px">Browse to the desired Doc Lib, Copy and Paste the URL, Do not include any trailing pages or folders, you only want the doc lib.<br /></span></li>
<li><span class="Apple-style-span ms-rteThemeFontFace-1" style="line-height:13px"><span class="Apple-style-span" style="line-height:normal;font-family:verdana, sans-serif">There is one extra step for windows XP machines, you need to take out the S in httpS, XP can not connect to secure sites. You also need to take out the %20, XP does not understand those characters to represent a space. When your ready to go, your URL should look similar to this one.<br /></span></span></li>
<li><span class="Apple-style-span ms-rteThemeFontFace-1" style="line-height:13px"><span class="Apple-style-span" style="line-height:normal;font-family:verdana, sans-serif">example: : ​https://secure.sharepointsite.com/sales/Client Library</span><br /></span></li>
<li><span class="Apple-style-span ms-rteThemeFontFace-1" style="line-height:13px"><span class="Apple-style-span" style="line-height:normal;font-family:verdana, sans-serif"><span class="Apple-style-span" style="font-family:verdana, sans-serif">Select Network Letter &gt; Select reconnect at log in &gt; Enter in your Password​</span></span></span></li></ul></div></div></div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=2&RootFolder=*">SharePoint 2010</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a></div>
<div><b>Published:</b> 1/9/2012 4:23 PM</div>
]]></description>
      <author>Justin Imes</author>
      <category>CI - JImes; Microsoft; SharePoint 2010; SharePoint 2007</category>
      <pubDate>Mon, 09 Jan 2012 21:21:23 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=6</guid>
    </item>
    <item>
      <title>Adding items to Site Action WSS/MOSS</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=12</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClass12280D4D21DD47DAAF51C3C7C6246B2C"><p>These customization will be done in the Master Page, locate the existing Site Action Code and add these as desired.</p>
<p>The Site Action will start with a Table Element<br />&lt;table height=100% class=&quot;ms-siteaction&quot; align=&quot;right&quot; cellpadding=0 cellspacing=0&gt;<br />Right below this, you will see the start of the Site Action Code. Add the following code after the last &lt;SharePoint: MenuItemTemplate .... .... /&gt;</p>
<p>**This will add a View All Site Content link under the Site Actions menu.</p>
<p>&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=&quot;ViewLists&quot; <br />        Text=&quot;View All Site Content&quot; <br />        Description=&quot;Browse all site lists and subsites&quot; <br />        ImageUrl=&quot;/_layouts/images/Actionscreate.gif&quot; <br />        MenuGroupId=&quot;100&quot; <br />        Sequence=&quot;300&quot; <br />        UseShortId=&quot;true&quot; <br />        ClientOnClickNavigateUrl=&quot;~site/_layouts/viewlsts.aspx&quot; <br />        PermissionsString=&quot;EnumeratePermissions,ManageWeb,ManageSubwebs, <br />        AddAndCustomizePages,ApplyThemeAndBorder,ManageAlerts,ManageLists,ViewUsageData&quot;<br />        PermissionMode=&quot;Any&quot; /&gt;<br /></p>
<div>**This will add a Log Out link under the Site Actions menu.</div>
<div> </div>
<p>&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=&quot;LogOut&quot; <br />        Text=&quot;LOGOUT&quot; <br />        Description=&quot;Logout of this site&quot; <br />        ImageUrl=&quot;/_layouts/images/Error.gif&quot; <br />        MenuGroupId=&quot;100&quot; <br />        Sequence=&quot;300&quot; <br />        UseShortId=&quot;true&quot; <br />        ClientOnClickNavigateUrl=&quot;~site/_layouts/SignOut.aspx&quot; <br />        PermissionsString=&quot;EnumeratePermissions,ManageWeb,ManageSubwebs, <br />        AddAndCustomizePages,ApplyThemeAndBorder,ManageAlerts,ManageLists,ViewUsageData&quot;<br />        PermissionMode=&quot;Any&quot; /&gt;​</p></div>
​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=7&RootFolder=*">SharePoint 2007</a></div>
<div><b>Published:</b> 2/21/2012 11:30 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>Microsoft; CI - JImes; SharePoint 2007</category>
      <pubDate>Tue, 21 Feb 2012 16:31:25 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=12</guid>
    </item>
    <item>
      <title>Outlook CRM Connector Discoveries</title>
      <link>http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=11</link>
      <description><![CDATA[<div><b>Body:</b> <div class="ExternalClassE5E46FC4F96E498CB9445003F85A629F">









<style>
.ExternalClassE5E46FC4F96E498CB9445003F85A629F p.MsoNormal, .ExternalClassE5E46FC4F96E498CB9445003F85A629F li.MsoNormal, .ExternalClassE5E46FC4F96E498CB9445003F85A629F div.MsoNormal
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;font-family:Cambria;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F p.MsoListParagraph, .ExternalClassE5E46FC4F96E498CB9445003F85A629F li.MsoListParagraph, .ExternalClassE5E46FC4F96E498CB9445003F85A629F div.MsoListParagraph
{margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.5in;margin-bottom:.0001pt;font-size:12.0pt;font-family:Cambria;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F p.MsoListParagraphCxSpFirst, .ExternalClassE5E46FC4F96E498CB9445003F85A629F li.MsoListParagraphCxSpFirst, .ExternalClassE5E46FC4F96E498CB9445003F85A629F div.MsoListParagraphCxSpFirst
{margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.5in;margin-bottom:.0001pt;font-size:12.0pt;font-family:Cambria;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F p.MsoListParagraphCxSpMiddle, .ExternalClassE5E46FC4F96E498CB9445003F85A629F li.MsoListParagraphCxSpMiddle, .ExternalClassE5E46FC4F96E498CB9445003F85A629F div.MsoListParagraphCxSpMiddle
{margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.5in;margin-bottom:.0001pt;font-size:12.0pt;font-family:Cambria;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F p.MsoListParagraphCxSpLast, .ExternalClassE5E46FC4F96E498CB9445003F85A629F li.MsoListParagraphCxSpLast, .ExternalClassE5E46FC4F96E498CB9445003F85A629F div.MsoListParagraphCxSpLast
{margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.5in;margin-bottom:.0001pt;font-size:12.0pt;font-family:Cambria;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F .MsoChpDefault
{font-family:Cambria;}
@page WordSection1
{size:8.5in 11.0in;margin:1.0in 1.25in 1.0in 1.25in;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F div.WordSection1
{page:WordSection1;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F ol
{margin-bottom:0in;}
.ExternalClassE5E46FC4F96E498CB9445003F85A629F ul
{margin-bottom:0in;}
</style>






<p></p>
<ul><li>Minimum Requirements on Client Machine<br /></li>
<ul><li>At least Microsoft Office 2003 SP3 and XP SP3</li>
<li>Must be on the same network (domain)</li>
<li>Must be have the same version (roll-up) as the
CRM Server</li></ul>
<li>New Contacts can be created and synced to CRM if
Track in CRM is enabled on the new contact record.<br /></li>
<ul><li>If a CRM record is sync’d and “Track in CRM” is
disabled, any changes in outlook will not be affected in CRM.</li>
<li>If a CRM record is deleted in Outlook, it will
not be sync’d again, but will remain intact in CRM.</li></ul>
<li>Ability to create any New Activity (e.g. task,
fax, phone call, appointment, etc.)<br /></li>
<li>Ability to create New Records and save directly
into CRM (e.g. account, contact, Lead etc.)<br /></li>
<li>Ability to view Parent (Account) Record from
outlook, it will open CRM window.<br /></li>
<li>Two-way sync as long as Track in CRM is enabled
in outlook contact records.<br /></li>
<li>15 minute Sync Intervals from CRM to Outlook<br /></li>
<li>Real-Time Sync from Outlook to CRM<br /></li>
<ul><li>Except Parent Customer/Company</li></ul>
<li>“Sync with CRM” does a full sync, not
incremental<br /></li>
<li>Contacts are loaded into the default contact
folder<br /></li>
<li>Contacts are loaded by filters via the Modify
Local Data Groups<br /></li>
<ul><li>Setup filters the same as views</li></ul>
<li>If the local data groups are out of sync, you
must delete the group and recreate in order to re-sync.<br /></li>
<li>In Options - Update the company field for
Outlook Contacts<br /></li>
<ul><li><span><span>T</span></span>his allows the Company Field to be populated by
Parent Customer (Account Name)</li>
<li>This seems to be just an alias, this is the only
field that doesn’t get updated when syncing from Outlook to CRM.​</li></ul></ul>
<p></p>











































</div>
​</div>
<div><b>Category:</b> <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=3&RootFolder=*">Dynamics CRM 4.0</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=4&RootFolder=*">CI - JImes</a>; <a onclick="OpenPopUpPage('http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*', RefreshPage); return false;" href="http://www.collectiveintelligence.com/community/blog/_layouts/listform.aspx?PageType=4&ListId={9F8C86CB-B60D-4537-936E-F3D2741E1DD0}&ID=1&RootFolder=*">Microsoft</a></div>
<div><b>Published:</b> 2/21/2012 11:27 AM</div>
]]></description>
      <author>Justin Imes</author>
      <category>Dynamics CRM 4.0; CI - JImes; Microsoft</category>
      <pubDate>Tue, 21 Feb 2012 16:28:09 GMT</pubDate>
      <guid isPermaLink="true">http://www.collectiveintelligence.com/community/blog/Lists/Posts/ViewPost.aspx?ID=11</guid>
    </item>
  </channel>
</rss>
