Skip to main content

Posts

Showing posts from June, 2009

Change the CRM Loading Icon

Use this at your own risk. Ever want to change the loading icon from the green circle... to something more interesting? Well I found a great loading icon for CRM over at Ascentium, http://consulting.ascentium.com/blog/crm/Post189.aspx . Goto your CRM webserver, and open \CRMWeb\_imgs\AdvFind in Windows Explorer. Make a copy, or rename progress.gif. Save the graphic above as progress.gif to that directory. Clear your IE cache and the new icon will appear when you perform search or loading functions.

Multiple Chained Picklists in CRM 4.0

I have been using a different method to accomplish this, but with the new SDK, this method for creating Dependant picklists solves an issue of mine with chaining mulitple together. http://blogs.msdn.com/crm/archive/2009/06/08/new-dependent-picklist-sample.aspx

Script - Detecting OS Architecture

If you need to run different commands depending if the OS is 32 Bit or 64 Bit, you can insert the code below into your script. REM Check OS architecture ECHO %processor_architecture% | FIND "x64" IF ERRORLEVEL 1 (GOTO 64BIT) ELSE (GOTO 32BIT) :64BIT Insert your 64 Bit commands here GOTO EXIT :32BIT Insert your 32 Bit commands here GOTO EXIT :EXIT exit