Microsoft Mobile Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Wednesday, 29 April 2009

Change the CRMAppPool Identity

Posted on 07:45 by Unknown
Most likely this is recorded in a thousand places, but I had a hard time finding info about what steps need to be taken to change the identity of the CrmAppPool. All you need to do is:- Create a user in Active Directory- Make sure the user has Domain User rights- Add the user to the PrivUserGroup of CRM- Make sure the user has 'log on as a service' priviledgeThe last step can be executed on two
Read More
Posted in installation | No comments

Automatic provisioning of Organizations

Posted on 02:36 by Unknown
Microsoft CRM does have a separate webservice for doing deployment related activities. There is a Deployment SDK especially for this webservice. You can download that here. One of the activities you can execute is automatic provisioning of new organizations. In this post I'll dive into the code required for this as well as some of the common issues while doing so.Basically following the next
Read More
Posted in installation, sdk | No comments

Thursday, 23 April 2009

Walk through all elements on a form

Posted on 01:08 by Unknown
In some cases it is required to set all attributes on a form to disabled or do some other logic like checking which attribute has been changed. To do this you do need to walk through each attribute of the CRM form. My fellow MVP Mitch Milam has posted the technique to do this more than a year ago:http://blogs.infinite-x.net/2007/11/21/disabling-all-fields-on-a-crm-form/The most important piece of
Read More
Posted in customization, javascript | No comments

Thursday, 16 April 2009

401 Unauthorized when accessing the webservice

Posted on 15:02 by Unknown
While there are many situations in which you can retrieve the error message 401: Unauthorized, there are some more difficult to find than others. Of course you have After you have checked the basic settings including:- Are the default credentials used- Does the user have an account in CRM- Does the user have enough priviledges in CRM- Is Windows Authentication enabled for the CRM website- Is
Read More
Posted in error | No comments

Hiding elements: the next evolution

Posted on 14:35 by Unknown
One of my colleagues, Richard McCormick, has written a blog post for the Avanade internal employees. He has asked me to make this post publically available since it might be interesting for more people. Read on and get great code samples on how to hide attributes, elements and sections.Hiding Links & Controls in CRM 4 Before I go on, I should point out that this solution is technically
Read More
Posted in customization, guest post, javascript | No comments

CRMAsyncService using 100% CPU

Posted on 13:41 by Unknown
With one of my projects I've experienced a situation in which the CRMAsyncService is requiring 99% CPU power. Since this doesn't leave much left for CRM, we needed to get this fixed. One of my colleagues, Maarten Smid, came up with the solution of installing the Service Pack 1 for .NET 3.0. But before this can be installed, some prerequisites needed to be installed.The first step is to install
Read More
Posted in error | No comments

Plugin registration tools for Visual Studio 2005

Posted on 13:34 by Unknown
The newest update of the SDK, version 4.0.8, includes updated projects for the plugin registration tool as well as the plugin developer tool. While I usually am pleased with updates, this update could cause some issues for some people. The updated projects are build in Visual Studio 2008 whereas they used to be build in Visual Studio 2005. This means that you will not be able anymore to run the
Read More
Posted in plug-in, sdk | No comments

Friday, 10 April 2009

Displaying inactive records in associated view

Posted on 05:46 by Unknown
In some situations you do want to show the inactive records in an associated view as well. My fellow MVP George Doubinski wrote an article about how to solve this by using a plugin:http://crm.georged.id.au/post/2008/03/07/Displaying-inactive-records-in-associated-view.aspx.In this post I will show that there are more routes to Rome. I've looked into the option of editing the query which is being
Read More
Posted in customization | No comments
Newer Posts Older Posts Home
Subscribe to: Comments (Atom)

Popular Posts

  • Performance test with 100.000 concurrent users
    Did you know that Microsoft and Dell performed a performance test on Dynamics CRM which included 100.000 concurrent users? They created a wh...
  • Quick Yammer & CRM Demo
    Most, if not all of you, know that Microsoft has acquired Yammer in June 2012. Now Microsoft has released the integration between Yammer and...
  • Guest star on mscrm team blog
    Jim Glass e-mailed me some time ago. This was the content:Ronald, would you like to be the CRM Team blog guest blogger for February? You can...
  • MS CRM SDK 3.0.4
    Microsoft posted the newest version of the SDK for MS CRM 3.0 yesterday. We're on version 3.0.4 now.Download the SDK here.OverviewThe Mi...
  • CRM Blog World Updated
    One of the most viewed pages on my blog is still the Blog World. When Dynamics CRM wasn't called Dynamics CRM yet, I have started to gat...
  • AttributeInfo.TypeName(int) != AttributeMetadata.Type.Name(float)
    You might bump into an error message while importing an entity from a customizations file. The error show could be:Error: lead: AttributeInf...
  • It's been a while
    At the moment I'm at the MVP Summit spending time with a bunch of great minds in the industry. One of the guys made me realize that it...
  • Unexpected 401 when using NetworkService in Web Service call
    When you are calling any CRM Web Service and you decide to specify your own credentials by using a new instance of NetworkCredential, then y...
  • Wintersport
    It's been a while since my last posting. Well, for that I do have a good reason. I've been in France, Alpe d'Huez, for a week fo...
  • Convergence Update
    This event is amazing!I'm astonished by the set-up of this event, the attendees and all the good news which is being announced. I just a...

Categories

  • addons
  • article
  • async
  • avanade
  • azure
  • biztalk
  • blog
  • callout
  • convergence
  • crm5.0
  • customization
  • dotnetmag
  • enterprise
  • error
  • events
  • ExactTarget
  • excel
  • export
  • fetchxml
  • guest post
  • hotfix
  • import
  • installation
  • isv.config
  • javascript
  • live
  • lookup
  • mailmerge
  • metadata
  • migration
  • mobile
  • mvp
  • office
  • offtopic
  • outlook client
  • performance
  • platform
  • plug-in
  • reports
  • rollup
  • sdk
  • SharePoint
  • sqlserver
  • surface
  • titan
  • training
  • unsupported
  • virtualpc
  • whs

Blog Archive

  • ►  2013 (3)
    • ►  August (1)
    • ►  February (2)
  • ►  2010 (19)
    • ►  October (3)
    • ►  July (2)
    • ►  June (3)
    • ►  May (3)
    • ►  April (5)
    • ►  March (1)
    • ►  January (2)
  • ▼  2009 (28)
    • ►  November (1)
    • ►  October (4)
    • ►  September (2)
    • ►  June (2)
    • ▼  April (8)
      • Change the CRMAppPool Identity
      • Automatic provisioning of Organizations
      • Walk through all elements on a form
      • 401 Unauthorized when accessing the webservice
      • Hiding elements: the next evolution
      • CRMAsyncService using 100% CPU
      • Plugin registration tools for Visual Studio 2005
      • Displaying inactive records in associated view
    • ►  March (2)
    • ►  February (2)
    • ►  January (7)
  • ►  2008 (36)
    • ►  December (2)
    • ►  November (1)
    • ►  October (3)
    • ►  September (7)
    • ►  July (6)
    • ►  June (1)
    • ►  May (1)
    • ►  March (4)
    • ►  February (4)
    • ►  January (7)
  • ►  2007 (61)
    • ►  November (2)
    • ►  October (5)
    • ►  August (1)
    • ►  July (3)
    • ►  June (6)
    • ►  May (6)
    • ►  April (8)
    • ►  March (11)
    • ►  February (12)
    • ►  January (7)
  • ►  2006 (53)
    • ►  December (4)
    • ►  November (5)
    • ►  October (7)
    • ►  September (3)
    • ►  August (6)
    • ►  July (4)
    • ►  June (6)
    • ►  May (1)
    • ►  April (1)
    • ►  March (6)
    • ►  February (2)
    • ►  January (8)
  • ►  2005 (30)
    • ►  December (3)
    • ►  November (5)
    • ►  October (7)
    • ►  September (6)
    • ►  August (3)
    • ►  July (6)
Powered by Blogger.

About Me

Unknown
View my complete profile