Neil McDonald's Dynamics 365 Blog

Posts Tagged ‘advancedfind

Unresolved email clear out

leave a comment »

Unresolved_email_senders

I find that our CRM queues receive a lot of spam and I was looking for an easy way to clear this out. The easiest method I’ve found is deleting emails with unresolved senders which do not have the ‘regarding’ set. The Advanced Find above returns most of the spam received and makes it very simple to clear it all out.
Read the rest of this entry »

Written by neilmcd

Aug 6, 2010 at 1:33 pm

Posted in CRM 4

Tagged with ,

IE8 crashing when using picklists in Advanced Finds

leave a comment »

I’ve been having an issue where IE8 would crash when trying to use picklists in advanced finds (see below example).

It may not be a common issue, but I posted it on the MS partner forums and got the below response which has fixed it for me, so hopefully it will help someone else out too!

Edit AdvFind.aspx and add the following code. AdvFind.aspx can be found in the CRM web directoryAdvancedFind

NOTE: The code needs to be added right below function window.onload(){

<% if (Request.Params["AutoRun"] != "False")
{
%>
if (location.href.indexOf("?") > 0)
location.href = location.href + "&AutoRun=False";
else
location.href = location.href + "?AutoRun=False";
<%
}
%>

Written by neilmcd

Jul 14, 2010 at 10:05 am