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

<channel>
	<title>Bradley M. Law &#187; Uncategorized</title>
	<atom:link href="http://bradleymlaw.com/wp/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradleymlaw.com/wp</link>
	<description>Technology, CRM and Stuff.</description>
	<lastBuildDate>Mon, 16 Aug 2010 13:59:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CRM Picklist Values for Report Paramaters</title>
		<link>http://bradleymlaw.com/wp/2010/07/24/crm-picklist-values-for-report-paramaters/</link>
		<comments>http://bradleymlaw.com/wp/2010/07/24/crm-picklist-values-for-report-paramaters/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 01:30:33 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=376</guid>
		<description><![CDATA[Great way to pull report parameters by Customer Effective here.]]></description>
			<content:encoded><![CDATA[<p>Great way to pull report parameters by Customer Effective <a href="http://blog.customereffective.com/blog/2010/06/crm-picklist-values-for-your-report-parameter.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/07/24/crm-picklist-values-for-report-paramaters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting attribute description as a tooltip for a field in entities forms in Microsoft Dynamics CRM 4.0</title>
		<link>http://bradleymlaw.com/wp/2010/07/24/setting-attribute-description-as-a-tooltip-for-a-field-in-entities-forms-in-microsoft-dynamics-crm-4-0/</link>
		<comments>http://bradleymlaw.com/wp/2010/07/24/setting-attribute-description-as-a-tooltip-for-a-field-in-entities-forms-in-microsoft-dynamics-crm-4-0/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 01:09:50 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=374</guid>
		<description><![CDATA[Great code I have not tried yet but I am certain I will need it by ANDRIY A33IK BUTENKO]]></description>
			<content:encoded><![CDATA[<p><a href="http://a33ik.blogspot.com/2010/01/setting-attribute-description-as.html">Great code</a> I have not tried yet but I am certain I will need it by ANDRIY A33IK BUTENKO</p>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/07/24/setting-attribute-description-as-a-tooltip-for-a-field-in-entities-forms-in-microsoft-dynamics-crm-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add IFRAME to a form, system and custom entities plus format IFRAME</title>
		<link>http://bradleymlaw.com/wp/2010/06/28/add-iframe-to-a-form-system-and-custom-entities-plus-format-iframe/</link>
		<comments>http://bradleymlaw.com/wp/2010/06/28/add-iframe-to-a-form-system-and-custom-entities-plus-format-iframe/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 02:33:16 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=358</guid>
		<description><![CDATA[This is a great piece of code I put together by merging two sets of code. Basically the following creates an IFRAME and formats the IFRAME in a professional manner. // Builds a string for the source attribute of an IFrame // Credit is given to Michael Hohne and Andrew Zimmer for the following code. [...]]]></description>
			<content:encoded><![CDATA[<p>This is a great piece of code I put together by merging two sets of code. Basically the following creates an IFRAME and formats the IFRAME in a professional manner.</p>
<pre class="brush: php;">
// Builds a string for the source attribute of an IFrame
// Credit is given to Michael Hohne and Andrew Zimmer for the following code.  For additional information, please
// refer to his stunnware site: http://www.stunnware.com/crm2/topic.aspx?id=JS27
//for formatting the IFRAME: http://blogs.inetium.com/blogs/azimmer/archive/2010/01/14/crm-displaying-related-entity-in-iframe-slightly-improved.aspx

function GetFrameSource(tabSet, roleOrd) {

    if (crmForm.ObjectId != null) {

        var roleOrdParamMissing = (typeof(roleOrd) == &quot;undefined&quot;) || (roleOrd == null);

        var oId = crmForm.ObjectId;
        var oType = crmForm.ObjectTypeCode;
        var security = crmFormSubmit.crmFormSubmitSecurity.value;

        var url = &quot;areas.aspx?oId=&quot; + oId + &quot;&amp;oType=&quot; + oType + &quot;&amp;security=&quot; + security + &quot;&amp;tabSet=&quot; + tabSet;

        if (!roleOrdParamMissing) {
            url += &quot;&amp;roleOrd=&quot; + roleOrd;
        }

        return url;
    }

    else {
        return &quot;about:blank&quot;;
    }
}

 // Waits for the content window of the IFrame to be ready
  function FixStylingInFrameSource(iframeID) {
      // Check the content window's ready state
      if (document.getElementById(iframeID).contentWindow.document.readyState
!= &quot;complete&quot;) {
          // Re-run this function in 10 ticks
          window.setTimeout(function() { FixStylingInFrameSource(iframeID) }, 10);
      }
      // Content window is ready
      else {
          // Change the background color
          document.getElementById(iframeID).contentWindow.document.body.style.backgroundColor = &quot;#eef0f6&quot;;
          // Remove the left border
          document.getElementById(iframeID).contentWindow.document.body.all(0).style.borderLeftStyle = &quot;none&quot;;
          // Remove padding
          document.getElementById(iframeID).contentWindow.document.body.all(0).all(0).all(0).all(0).style.padding = &quot;0px&quot;;

          // Make the cell the full width of the IFRAME
         document.getElementById(iframeID).contentWindow.document.body.all(0).style.width = &quot;102%&quot;

          // Show the IFrame
          document.getElementById(iframeID).style.display = &quot;block&quot;;
      }
  }

crmForm.all.IFRAME_organizaton_programs.src = GetFrameSource(&quot;new_account_organizationswithprograms&quot;);

if(crmForm.FormType != 1)
{
FixStylingInFrameSource('IFRAME_organizaton_programs');
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/06/28/add-iframe-to-a-form-system-and-custom-entities-plus-format-iframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRM 4.0 Concatenate Lookup Fields or regular fields on Form</title>
		<link>http://bradleymlaw.com/wp/2010/06/28/crm-4-0-concatenate-lookup-fields-on-form/</link>
		<comments>http://bradleymlaw.com/wp/2010/06/28/crm-4-0-concatenate-lookup-fields-on-form/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 02:14:47 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=353</guid>
		<description><![CDATA[Found a couple of solutions posted in the MS forums on this post, I had the best luck with the following: To start update new_OpportunityID and new_ContactID with your fields, this example concatenates the Opportunity ID and Contact ID lookup fields. var lookupItemOppID = new Array; lookupItemOppID = crmForm.all.new_OpportunityID.DataValue; var vOpportunityID= (lookupItemOppID[0] != null) ? [...]]]></description>
			<content:encoded><![CDATA[<p>Found a couple of solutions posted in the MS forums on <a href="http://social.microsoft.com/Forums/en/crm/thread/6f573b29-1a91-4c23-9af7-7f116f6c79c5?prof=required">this </a>post, I had the best luck with the following:</p>
<p>To start update new_OpportunityID and new_ContactID with your fields, this example concatenates the Opportunity ID and Contact ID lookup fields.</p>
<pre class="brush: php;">
var lookupItemOppID = new Array;
lookupItemOppID = crmForm.all.new_OpportunityID.DataValue;

var vOpportunityID= (lookupItemOppID[0] != null) ? lookupItemOppID[0].name : &quot;&quot;;

var lookupItemConID = new Array;
lookupItemConID = crmForm.all.new_ContactID.DataValue;

var vContactID= (lookupItemConID[0] != null) ? lookupItemConID[0].name : &quot;&quot;;

CrmForm.all.new_name.DataValue = vOpportunityID + &quot; - &quot; + vContactID;
</pre>
<p>This will concatenate two normal fields</p>
<pre class="brush: php;">crmForm.new_fullname.DataValue = crmForm.new_firstname.DataValue + &quot; &quot; + crmForm.new_lastname.DataValue;</pre>
<p>This will concatenate a lookup field and a normal text field</p>
<pre class="brush: php;">
if(crmForm.all.new_abreviationid.DataValue!=null)

var nameval=crmForm.all.new_abreviationid.DataValue[0].name;

crmForm.all.new_uasi.DataValue=nameval+&quot;,&quot;+crmForm.all.new_name.DataValue;
</pre>
<p>Then once you have the field completed you will want to <a href="http://bradleymlaw.com/wp/?p=10">force the change to the database</a>. This will be necessary when a user changes one of the values that creates the concatentated field. It will show the change on the form, however it will not force the change to the database. </p>
<pre class="brush: php;">
//force the result to the database
crmForm.all.DesiredField.ForceSubmit = true
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/06/28/crm-4-0-concatenate-lookup-fields-on-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a CRM 4.0 test/training organization from your production organization</title>
		<link>http://bradleymlaw.com/wp/2010/04/23/creating-a-crm-4-0-testtraining-organization-from-your-production-organization/</link>
		<comments>http://bradleymlaw.com/wp/2010/04/23/creating-a-crm-4-0-testtraining-organization-from-your-production-organization/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 12:49:29 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/2010/04/23/creating-a-crm-4-0-testtraining-organization-from-your-production-organization/</guid>
		<description><![CDATA[Great article on creating a CRM 4.0 test/training organization from your production organizationhttp://www.wipfli.com/BlogPost_MCRM_Blog_8_12_09.aspx]]></description>
			<content:encoded><![CDATA[<p>Great article on creating a CRM 4.0 test/training organization from your production organizationhttp://www.wipfli.com/BlogPost_MCRM_Blog_8_12_09.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/04/23/creating-a-crm-4-0-testtraining-organization-from-your-production-organization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the CRM For Outlook button appears in Microsoft Dynamics CRM</title>
		<link>http://bradleymlaw.com/wp/2010/03/22/removing-the-crm-for-outlook-button-appears-in-microsoft-dynamics-crm/</link>
		<comments>http://bradleymlaw.com/wp/2010/03/22/removing-the-crm-for-outlook-button-appears-in-microsoft-dynamics-crm/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 18:27:09 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=343</guid>
		<description><![CDATA[Made the mistake of leaving the &#8220;CRM for Outlook&#8221; button my web form before turning users loose into a UAT preparation enviornment. Here is an article on removing the link from the Microsoft Support Site @ http://support.microsoft.com/kb/2004601 This is interesting. Looks like others have been searcing perhaps? Note This is a &#8220;FAST PUBLISH&#8221; article created [...]]]></description>
			<content:encoded><![CDATA[<p>Made the mistake of leaving the &#8220;CRM for Outlook&#8221; button my web form before turning users loose into a UAT preparation enviornment. Here is an article on removing the link from the Microsoft Support Site @ <a href="http://support.microsoft.com/kb/2004601">http://support.microsoft.com/kb/2004601</a></p>
<p>This is interesting. Looks like others have been searcing perhaps?</p>
<blockquote><p><strong>Note </strong>This is a &#8220;FAST PUBLISH&#8221; article created directly from within the Microsoft support organization. The information contained herein is provided as-is in response to emerging issues. As a result of the speed in making it available, the materials may include typographical errors and may be revised at any time without notice. See Terms of Use (http://go.microsoft.com/fwlink/?LinkId=151500) for other considerations.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/03/22/removing-the-crm-for-outlook-button-appears-in-microsoft-dynamics-crm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRM Volume License Key &amp; Product Registration</title>
		<link>http://bradleymlaw.com/wp/2010/03/12/crm-volume-license-key-product-registration/</link>
		<comments>http://bradleymlaw.com/wp/2010/03/12/crm-volume-license-key-product-registration/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 19:01:11 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=335</guid>
		<description><![CDATA[Received this note from MS on pre-pided CRM Volume License Keys! In my case I had already copied all instalaltion media over to the new hardware from an old product download. Then I went searcing for my license key to find out its pre-pidded in the Volume Licensing .iso file still on the MS site. [...]]]></description>
			<content:encoded><![CDATA[<p>Received this note from MS on pre-pided CRM Volume License Keys! In my case I had already copied all instalaltion media over to the new hardware from an old product download. Then I went searcing for my license key to find out its pre-pidded in the Volume Licensing .iso file still on the MS site. To get to the license key you have to break/open the .iso file. I used <a href="http://wincdemu.sysprogs.org/">WinCDemu </a> loaded on another machine to mount the .iso then browsed the results.</p>
<p>Here is the txt frm Microsoft directly.</p>
<blockquote><p>License Keys<br />
New to Microsoft Dynamics CRM 4.0, for media obtained under Volume Licensing programs, license keys are embedded on the media (Media is ‘Pre-pidded*’) and will no longer need to be entered upon installation.  If you have downloaded a Trial or time limited version of Microsoft Dynamics CRM, and later purchase Volume License media and do not wish to re-install, you may input the license key from your purchased media within the Microsoft Dynamics CRM License Manager.  </p>
<p>The License Key may be located by searching the installation files contained on the media for the \server\i386\license.txt  or \server\amd64\license.txt file,  depending on whether you are installing in a 32 or 64 bit environment). </p>
<p>No License Keys posted to MVLS/VLSC<br />
IMPORTANT! Microsoft Dynamics CRM 4.0 license keys will not appear in the license key product listing that appears for some products in MVLS/VLSC.  The product keys are embedded in the VLSC downloads and on the physical media, so there is no need to enter a product key, except in the event a TRIAL version has been installed first.  If this is the case &#8211; see the TRIALs section.)<br />
Product Registration: Register within 30 Days!<br />
IMPORTANT! Upon installation of software, customers are required to register the product on-line (Internet Access is required) within 30 days.  If the product is not registered within 30 days it will be disabled for any further use.    However, product can be re-enabled for use upon registration any time if disabled due to the 30 day expiration.  Additional CALs added to the installation after initial purchase do not require additional registration.  Certain programs such as SPLA and the ISV Royalty Program, do not require registration.</p>
<p>Registration happens:<br />
•	Upon initial Installation of any edition<br />
•	When users Step Up/Upgrade from Trial or time limited to full license for all editions<br />
•	When users Step Up/Upgrade from Microsoft Dynamics Workgroup to Professional Server, or to Enterprise Server.   (Will need to re-register)<br />
•	When users Step Up/Upgrade from Microsoft Dynamics Professional Server to Enterprise  (will need to re-register)</p>
<p>Registration is required when a license key is obtained from these channels:<br />
•	Volume Licensing<br />
•	MSPP Gold and Gold Certified Partners<br />
•	Microsoft Action Pack (MAPS)<br />
•	System Builder Channel </p>
<p>Registration is NOT required when a license key is obtained from these channels:<br />
•	Trial<br />
•	ISV Royalty Program<br />
•	SPLA<br />
•	MSDN<br />
•	TechNet<br />
•	BRL/DPL
 </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2010/03/12/crm-volume-license-key-product-registration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRM 4.0 System Requirements and Required Components</title>
		<link>http://bradleymlaw.com/wp/2009/10/15/crm-4-0-system-requirements-and-required-components/</link>
		<comments>http://bradleymlaw.com/wp/2009/10/15/crm-4-0-system-requirements-and-required-components/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:13:09 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=269</guid>
		<description><![CDATA[My current engagement has a lot of red tape in terms of network teams and security teams, I must admit I have downloaded the Dynamics CRM Implementation Guide and Planning Guide several times over the last few years despite knowing it was available online. At any rate Tiaan van Niekerk 0f the CRM DE LA [...]]]></description>
			<content:encoded><![CDATA[<p>My current engagement has a lot of red tape in terms of network teams and security teams, I must admit I have downloaded the Dynamics CRM Implementation Guide and Planning Guide several times over the last few years despite knowing it was available online. At any rate Tiaan van Niekerk 0f the <a title="http://crmdelacreme.blogspot.com/" href="http://crmdelacreme.blogspot.com/" target="_blank">CRM DE LA CREME Blog</a> has summarized the items relating to CRM 4.0 System Requirements and Required Components.</p>
<blockquote><p>For the most up-to-date information about system requirements and required components, see the <a href="http://go.microsoft.com/fwlink/?linkid=78157" target="_blank">Microsoft Dynamics CRM 4.0 Server Readme</a>.<br />
For more information, see:<br />
<a href="http://technet.microsoft.com/en-us/library/dd979162.aspx" target="_self">Microsoft Dynamics CRM Server hardware requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979163.aspx" target="_self">Microsoft Dynamics CRM Server software requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979174.aspx" target="_self">Microsoft Dynamics CRM Connector for SQL Server Reporting Services</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979176.aspx" target="_self">Microsoft Dynamics CRM E-mail Router software requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979179.aspx" target="_self">Microsoft Dynamics CRM for Outlook hardware requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979180.aspx" target="_self">Microsoft Dynamics CRM for Outlook software requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979184.aspx" target="_self">Microsoft Dynamics CRM Web client software requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979185.aspx" target="_self">Microsoft Dynamics CRM Data Migration Manager hardware requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979186.aspx" target="_self">Data Migration Manager software requirements</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979189.aspx" target="_self">64-bit supported configurations</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979190.aspx" target="_self">Language support</a><br />
<a href="http://technet.microsoft.com/en-us/library/dd979194.aspx" target="_self">Currency support</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2009/10/15/crm-4-0-system-requirements-and-required-components/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Update Download the logo in Dynamics CRM 4.0</title>
		<link>http://bradleymlaw.com/wp/2009/10/02/change-update-download-the-logo-in-dynamics-crm-4-0/</link>
		<comments>http://bradleymlaw.com/wp/2009/10/02/change-update-download-the-logo-in-dynamics-crm-4-0/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 15:43:06 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=262</guid>
		<description><![CDATA[The default image is as follows: Referenced from Caesar De La Torre Blog here are some instructions for updating the logo in Dynamics CRM 4.0. This is of course a non supported change to the system. 1.- The image file is located in the following place: C:\Program Files\Microsoft CRM Server\CRMWeb\_imgs\masthead.jpg You could copy another image [...]]]></description>
			<content:encoded><![CDATA[<p>The default image is as follows:</p>
<p><img src="http://07altg.blu.livefilestore.com/y1pww9mtEJGAvG4IpI4Wu5dguXZ4xzcVPbV-Kyzr8qM9K-kPA877-W0jmKqCpkADjB0fnSla-u18Os8Gkd7d5SsVRe4WByDqk7k/masthead.jpg" /></p>
<p>Referenced from <a href="http://blogs.msdn.com/cesardelatorre/archive/2007/10/31/how-to-change-the-image-logo-in-dynamics-crm-4-0-titan.aspx">Caesar De La Torre Blog </a>here are some instructions for updating the logo in Dynamics CRM 4.0. This is of course a non supported change to the system. </p>
<blockquote><p>1.-<br />
The image file is located in the following place:<br />
C:\Program Files\Microsoft CRM Server\CRMWeb\_imgs\masthead.jpg<br />
You could copy another image with the same name within that folder.</p>
<p>2.-<br />
Also, you could change the .CSS definition, which is a TD, within:<br />
C:\Program Files\Microsoft CRM Server\CRMWeb\_common\styles\global-dynamic-styles.css.aspx</p>
<p>The TD name is:<br />
TD.ms-crm-MastHead-Logo<br />
Then, you could change the name of the image&#8217;s file within this TD definition. (in case you want to use a different image file).</p>
<p>Of course, I warn you that anything you change within CRM files could be re-applied when installing service-packs, etc., so be careful with this kind of changes&#8230;</p>
<p>Because of this, it is a clear unsupported stuff, even though it is a very simple customization. </p>
<p>I&#8217;m quite sure we&#8217;ll have it as a regular customization in future versions.</p>
<p>So!, It is a little hidden, but, quite easy, of course. <img src='http://bradleymlaw.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2009/10/02/change-update-download-the-logo-in-dynamics-crm-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Dynamics CRM 4.0 Client Configuration Wizard Fails With “Outlook Is Not Set As The Default Mail Client” On Windows Server 2008 X64</title>
		<link>http://bradleymlaw.com/wp/2009/09/01/ms-dynamics-crm-4-0-client-configuration-wizard-fails-with-%e2%80%9coutlook-is-not-set-as-the-default-mail-client%e2%80%9d-on-windows-server-2008-x64/</link>
		<comments>http://bradleymlaw.com/wp/2009/09/01/ms-dynamics-crm-4-0-client-configuration-wizard-fails-with-%e2%80%9coutlook-is-not-set-as-the-default-mail-client%e2%80%9d-on-windows-server-2008-x64/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 18:23:14 +0000</pubDate>
		<dc:creator>bradlaw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bradleymlaw.com/wp/?p=212</guid>
		<description><![CDATA[I had this issue when installing MS Outlook and attempting to use the CRM Client. This solves the error received when the client isntall claims that Outlook isn&#8217;t set as the default Email program. This article is by Joel Mansford and is titled MS Dynamics CRM 4.0 Client Configuration Wizard Fails With “Outlook Is Not [...]]]></description>
			<content:encoded><![CDATA[<p>I had this issue when installing MS Outlook and attempting to use the CRM Client. This solves the error received when the client isntall claims that Outlook isn&#8217;t set as the default Email program. This article is by Joel Mansford and is titled MS Dynamics CRM 4.0 Client Configuration Wizard Fails With “<a href="http://joelmansford.wordpress.com/2008/07/30/ms-dynamics-crm-40-client-configuration-wizard-fails-with-“outlook-is-not-set-as-the-default-mail-client”-on-windows-server-2008-x64/">Outlook Is Not Set As The Default Mail Client On Windows Server 2008 X64</a>&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://bradleymlaw.com/wp/2009/09/01/ms-dynamics-crm-4-0-client-configuration-wizard-fails-with-%e2%80%9coutlook-is-not-set-as-the-default-mail-client%e2%80%9d-on-windows-server-2008-x64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
