<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Richard's Infrastructure Blog</title><subtitle type="html">Solidsoft's Infrastructure Manager helps solve obscure problems.</subtitle><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/atom.aspx</id><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/atom.aspx" /><generator uri="http://communityserver.org" version="2.0.60217.2664">Community Server</generator><updated>2006-08-09T13:20:00Z</updated><entry><title>SQL Server 2005 Clean up maintenance plan not deleting files?</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/07/12/369.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/07/12/369.aspx</id><published>2007-07-12T14:10:00Z</published><updated>2007-07-12T14:10:00Z</updated><content type="html">&lt;P&gt;If you set up a maintenance plan to cleanup and delete old files from a folder and it doens't delete the files (a common problem as it turns out), create a new maintenance plan and add an 'Execute T-SQL Statement' task.&lt;BR&gt;&lt;BR&gt;The following will delete BAK and TRN files, enter it in the T-SQL statement window:&lt;BR&gt;&lt;BR&gt;&lt;FONT face="Courier New" size=2&gt;declare @dt datetime&lt;BR&gt;select @dt=getdate()-&lt;EM&gt;[number of day's files to keep, i.e. 14 to delete files over 14 days old]&lt;/EM&gt;&lt;BR&gt;EXECUTE master.dbo.xp_delete_file 0,N'&lt;EM&gt;[file folder]&lt;/EM&gt;',N'BAK',@dt&lt;BR&gt;EXECUTE master.dbo.xp_delete_file 0,N'&lt;EM&gt;[file folder]&lt;/EM&gt;',N'TRN',@dt&lt;BR&gt;&lt;BR&gt;&lt;FONT face="Times New Roman" size=3&gt;Set up a reccuring schedule to run once a day and save the new plan.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Old files will now be deleted and your hard drive won't fill up.&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=369" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Office 2007 icons and correct functioning in SharePoint 2003</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/05/23/348.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/05/23/348.aspx</id><published>2007-05-23T16:08:00Z</published><updated>2007-05-23T16:08:00Z</updated><content type="html">&lt;P&gt;Found this which worked like a charm:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://uksbsguy.com/blogs/doverton/archive/2007/03/13/how-to-get-companyweb-windows-sharepoint-services-v2-to-work-with-office-2007.aspx"&gt;http://uksbsguy.com/blogs/doverton/archive/2007/03/13/how-to-get-companyweb-windows-sharepoint-services-v2-to-work-with-office-2007.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get the icons working properly you need to unzip the file here: &lt;A href="http://www.it99.org/axl/ct.ashx?id=edab2641-4283-492c-8156-e4ddadfc2ee3&amp;amp;url=http%3a%2f%2fwww.it99.org%2faxl%2fdownload%2fOffice%25202007%2520Icons%2520for%2520SharePoint.zip"&gt;http://www.it99.org/axl/ct.ashx?id=edab2641-4283-492c-8156-e4ddadfc2ee3&amp;amp;url=http%3a%2f%2fwww.it99.org%2faxl%2fdownload%2fOffice%25202007%2520Icons%2520for%2520SharePoint.zip&lt;/A&gt;&amp;nbsp;and copy just the contents of the gif-light folder to 'C:\Program Files\Common Files\Microsoft Shared\web server extensions\60\TEMPLATE\IMAGES'&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=348" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>TFS stops working after SP1 install</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/05/22/347.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/05/22/347.aspx</id><published>2007-05-22T15:03:00Z</published><updated>2007-05-22T15:03:00Z</updated><content type="html">&lt;P&gt;Found this which fixes the problems TFS&amp;nbsp;Service Pack 1 creates &lt;img src="/emoticons/emotion-40.gif" alt="Hmm" /&gt;&lt;/P&gt;
&lt;P&gt;From: &lt;A href="http://www.codefounders.com/community/blogs/davidg/default.aspx"&gt;http://www.codefounders.com/community/blogs/davidg/default.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Before&amp;nbsp;you install TFS SP1 it informs you that you need to download and install another update first which puts the TFS server in a quiescent state so that there is no activity going on on the server whilst the update is performed, otherwise the TFS database may become corrupted. Once this in place then you can do the update, which&amp;nbsp;works correctly. The problems seem to stem first update puts the server in a quiescent state by applying an IP address restriction to the &lt;EM&gt;entire&lt;/EM&gt; web server used as the application tier front-end so that it can only accept requests from the localhost address (if you have other web sites hosted on this server, like our main company website for instance, this really isn't funny, though I appreciate that was probably the easiest way for the VS team to achieve the behaviour they require for update.) It also modifies some of the TFS databases and places them into single-user mode. My guess is that at the end of the SP1 update these changes are supposed to be undone leaving the TFS server in its original state. &lt;/P&gt;
&lt;P&gt;On our server, the IP address restriction was not removed from IIS and four of the TFS databases (TfsActivityLogging, TfsBuild, TfsIntegration and TfsVersionControl) were left in single-user mode. Manually temoving the IP address restriction using inetmgr and resetting the four databases back to multi-user mode using SQL Server Management Studio fixed the problem and all is now working as it should. Having finally brought TFS back to life, I have to say that it was definitely worthwhile installing SP1 as there are some noticeable performance improvements, and I haven't even had a chance to really play with it yet. &lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=347" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Virtual Server - Tired of having to repeatedly type passwords?</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/05/21/344.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/05/21/344.aspx</id><published>2007-05-21T07:49:00Z</published><updated>2007-05-21T07:49:00Z</updated><content type="html">&lt;P&gt;To stop having to keep re-authenticating while working in Virtual Server without using SSL, add the URL to your Intranet security zone in Internet Explorer.&lt;/P&gt;
&lt;P&gt;In IIS Manager on the Virtual Server:&lt;BR&gt;- Open the properties on the Default Web Site&lt;BR&gt;-&amp;nbsp;Click the Directroy Security tab&lt;BR&gt;-&amp;nbsp;Click Edit in the Authentication control box&lt;BR&gt;-&amp;nbsp;Check Basic authentication&lt;BR&gt;-&amp;nbsp;Uncheck Integrated Windown authentication&lt;/P&gt;
&lt;P&gt;Now when you use Virtual Server you should only have to authenticate once.&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=344" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Fixing broken virtual networking</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/04/25/293.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/04/25/293.aspx</id><published>2007-04-25T11:19:00Z</published><updated>2007-04-25T11:19:00Z</updated><content type="html">Found this page which is very uselful if you have virtual image networking problems on XP or Vista: &lt;A href="http://blogs.msdn.com/virtual_pc_guy/archive/2007/01/15/fixing-broken-virtual-networking.aspx"&gt;http://blogs.msdn.com/virtual_pc_guy/archive/2007/01/15/fixing-broken-virtual-networking.aspx&lt;/A&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=293" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>IE crashes when opening Office 2003 files previously opened in Office 2007 from SharePoint 2003.</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/02/26/263.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/02/26/263.aspx</id><published>2007-02-26T15:42:00Z</published><updated>2007-02-26T15:42:00Z</updated><content type="html">&lt;P&gt;If IE crashes when opening an Office 2003&amp;nbsp;file in Office 2003 that has been opened and saved (in Office 2003 format) in Office 2007, install the Office Compatability Pack (avalaible here: &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&amp;amp;displaylang=en&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=263" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>IE crashes when opening Office documents from SharePoint 2003 using Office 2007</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/02/12/253.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/02/12/253.aspx</id><published>2007-02-12T14:54:00Z</published><updated>2007-02-12T14:54:00Z</updated><content type="html">&lt;P&gt;&lt;FONT face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;FONT size=3&gt;&lt;SPAN&gt;Go to “C:\Program Files\Microsoft Office\Office12”&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;FONT size=3&gt;&lt;SPAN&gt;Delete “OWSSUPP.DLL”&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;FONT size=3&gt;&lt;SPAN&gt;“Start” -&amp;gt; “All Programs” -&amp;gt; “Microsoft Office” -&amp;gt; “Microsoft Office Tools” -&amp;gt; “Microsoft Office Diagnostics”&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;FONT size=3&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;FONT size=3&gt;&lt;SPAN&gt;Run the diagnostics and it should fix 1 issue in its last step.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=253" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Vista: Installing Networked Printers - Print Monitor is Unknown Error</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/02/07/252.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2007/02/07/252.aspx</id><published>2007-02-07T12:18:00Z</published><updated>2007-02-07T12:18:00Z</updated><content type="html">&lt;H3&gt;&lt;FONT size=2&gt;&lt;FONT face=Arial&gt;&lt;SPAN&gt;Problem:&lt;BR&gt;When installing a networked printer you receive a &lt;SPAN&gt;The Specified Print Monitor is Unknown&lt;/SPAN&gt; error&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT face=Arial size=2&gt;Solution:&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT size=2&gt;&lt;FONT face=Arial&gt;&lt;SPAN&gt;1.) &lt;/SPAN&gt;Enable UAC (Go into the control panel and type UAC in the search bar then follow through the 'wizard') -- restart your computer when prompted&lt;BR&gt;&lt;SPAN&gt;2.) &lt;/SPAN&gt;Install the printer&lt;BR&gt;&lt;SPAN&gt;3.) &lt;/SPAN&gt;Disable UAC&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Source:&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;A href="http://vistafix.blogspot.com/2006/12/installing-networked-printers-specified.html"&gt;&lt;FONT size=2&gt;http://vistafix.blogspot.com/2006/12/installing-networked-printers-specified.html&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=252" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>CRM 3.0: Accidentally deleting the CRM OU in Active directory</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/11/13/187.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/11/13/187.aspx</id><published>2006-11-13T16:21:00Z</published><updated>2006-11-13T16:21:00Z</updated><content type="html">&lt;P&gt;If you accidentally delete the CRM organisation unit in AD and don't have a backup of your active directory (which is never a good idea), you may think looking at Microsoft's documentation that there's no way of&amp;nbsp;ever seeing your data again. No so. &lt;BR&gt;&lt;BR&gt;If you follow the Redeploying CRM 3.0 document (MicrosoftCRMv3Redeployment.pdf) in the RedeploymentTool folder on the CRM CD you can re-install CRM and create a new OU.&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=187" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>TFS from Excel: TF84037 there was a problem initializing the addin</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/11/02/165.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/11/02/165.aspx</id><published>2006-11-02T15:54:00Z</published><updated>2006-11-02T15:54:00Z</updated><content type="html">&lt;FONT color=#545454 size=2&gt;
&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;1. In Add/Remove programs, locate your Office application and select it.&lt;/P&gt;
&lt;P&gt;2. Click on the 'Change' button&lt;/P&gt;
&lt;P&gt;3. Select 'Add or Remove features' and click 'next'&lt;/P&gt;
&lt;P&gt;4. Select 'Choose advanced customization of applications' and click 'next'&lt;/P&gt;
&lt;P&gt;5. In the tree view, expand 'Microsoft Office Excel' and make sure the .NET Programmability Support option is set to 'run from my computer'.&lt;/P&gt;
&lt;P&gt;6. Click 'update'&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=165" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>TFS: TF30177: Team Project Creation Failed error</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/10/05/141.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/10/05/141.aspx</id><published>2006-10-05T15:53:00Z</published><updated>2006-10-05T15:53:00Z</updated><content type="html">&lt;SPAN&gt;&amp;nbsp;The "cannot find team project" error condition is sometimes a symptom of having a client-side metadata cache that is out of sync with the server.&amp;nbsp; 
&lt;P&gt;We can try to determine if the cache is the problem by moving it out of the way.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Shut down all running instances of Visual Studio on the client 
&lt;LI&gt;Open \Documents and Settings\&amp;lt;user&amp;gt;\Local Settings\Application Data\Microsoft\Team Foundation\1.0 
&lt;LI&gt;Rename the Cache subdirectory Cache.sav 
&lt;LI&gt;Open Visual Studio and retry project creation&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;The TFS restore instructions include a section that describes how to invalidate the client side cache of &lt;U&gt;all &lt;/U&gt;machines connected to a server.&amp;nbsp; See the section entitled Refreshing the Data Cache on Client Computers&amp;nbsp;in this&amp;nbsp;topic: &lt;A title=http://msdn2.microsoft.com/en-us/library/ms252458(VS.80).aspx href="http://msdn2.microsoft.com/en-us/library/ms252458(VS.80).aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms252458(VS.80).aspx&lt;/A&gt;.&amp;nbsp; This handles the case when a server is restored to a point in time where the metadata on the server does not match that stored in the client caches.&amp;nbsp; Another situation where this metadata cache mismatch might occur is when copying a Virtual Server image with TFS&amp;nbsp;installed.&amp;nbsp; The reason that it might happen in this case is that the client caches are keyed by a TFS server GUID.&amp;nbsp; A client machine connecting to the "same" TFS instance in different Virtual Server images will ultimately end up with mismatched metadata as the servers drift apart.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From: &lt;SPAN class=inlineLink&gt;Bill Essary MSFT&lt;/SPAN&gt; &lt;/P&gt;&lt;/SPAN&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=141" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Microsoft Dynamics CRM 3.0 with Office 2007, Windows Vista and Exchange 2007</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/10/04/140.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/10/04/140.aspx</id><published>2006-10-04T20:13:00Z</published><updated>2006-10-04T20:13:00Z</updated><content type="html">&lt;H2&gt;Microsoft Dynamics CRM 3.0 with Office 2007, Windows Vista and Exchange 2007&lt;/H2&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;U&gt;&lt;SPAN&gt;Office 2007 and Windows Vista&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;With the pending releases of Office and Windows products, a new level of productivity tools and a new generation of operation system will be available to our customers. By releasing a compatibility update for Microsoft Dynamics CRM 3.0, we will enable our customers to take advantage of powerful new products.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;Windows Vista availability will begin in November for businesses, January for consumers.&amp;nbsp; We’ve pegged the Microsoft CRM 3.0 compatibility update to the worldwide release schedule of Office 2007 for a reason; we will want to do absolute final testing on the&amp;nbsp;RTM versions of Office 2007, which is why we plan on delivering immediately after the Office 2007 RTM. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;The compatibility release will be slipstreamed into our inventory of media kits, but it will also be made available for download. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;Expect Office 2007 RTM + 1-2 weeks for downloads (same math applies to localized versions of the compatibility release) and approximately 45-60 days for media kits to be replaced with the compatibility release. Effectively that will mean that the compatibility release will be available several weeks before General Availability of Office 2007.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;U&gt;&lt;SPAN&gt;Microsoft Exchange 2007&lt;/SPAN&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;Microsoft CRM 3.0 currently supports the ability to locate user mailboxes on Microsoft Exchange 2007 servers;&amp;nbsp;the Microsoft CRM 3.0 Exchange E-mail Router and its dedicated mailbox continue to require Exchange 2000/2003 and can operate in a mixed environment.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;However, the current Microsoft CRM Rule Deployment Wizard cannot be used against Exchange 2007 mailboxes, so alternative rule deployment methods should be used.&amp;nbsp; An update to the Microsoft CRM Rule Deployment Wizard to enable use on Exchange 2007 servers is planned for release at approximately the same time as RTM of Exchange 2007 and we aim at making the update available for download immediately after.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;From: &lt;A href="http://blogs.msdn.com/crm/archive/2006/08/30/730678.aspx"&gt;http://blogs.msdn.com/crm/archive/2006/08/30/730678.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=140" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Internet Explorer 7 - Release Candidate 1</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/08/29/119.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/08/29/119.aspx</id><published>2006-08-29T16:07:00Z</published><updated>2006-08-29T16:07:00Z</updated><content type="html">&lt;P&gt;Internet Explorer 7 Release Candidate 1 (IE7 RC1) is now available, get it here: &lt;A href="http://www.microsoft.com/windows/ie/downloads/default.mspx"&gt;http://www.microsoft.com/windows/ie/downloads/default.mspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=119" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>Team Foundation Server - Event 3031 - TFS Services</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/08/17/102.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/08/17/102.aspx</id><published>2006-08-17T09:00:00Z</published><updated>2006-08-17T09:00:00Z</updated><content type="html">&lt;P&gt;If you install TFS and don't specify an e-mail address, you'll receive the following error in your Applicatoin event log:&lt;/P&gt;
&lt;P&gt;Event Type:&amp;nbsp;Error&lt;BR&gt;Event Source:&amp;nbsp;TFS Services&lt;BR&gt;Event Category:&amp;nbsp;None&lt;BR&gt;Event ID:&amp;nbsp;3031&lt;BR&gt;Date:&amp;nbsp;&amp;nbsp;17/08/2006&lt;BR&gt;Time:&amp;nbsp;&amp;nbsp;09:58:46&lt;BR&gt;User:&amp;nbsp;&amp;nbsp;N/A&lt;BR&gt;Computer:&amp;nbsp;TFS Server&lt;BR&gt;Description:&lt;BR&gt;TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff.&lt;BR&gt;Technical Information (for the administrative staff):&lt;BR&gt;Date (UTC): 17/08/2006 08:58:46&lt;BR&gt;Machine: TFS Server&lt;BR&gt;Application Domain: /LM/W3SVC/3/Root/services-3-1280027870957xxxxxx&lt;BR&gt;Assembly: Microsoft.TeamFoundation.Server, Version=8.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxx; v2.0.50727&lt;BR&gt;Process Details:&lt;BR&gt;&amp;nbsp; Process Name: w3wp&lt;BR&gt;&amp;nbsp; Process Id: 2172&lt;BR&gt;&amp;nbsp; Thread Id: 3204&lt;BR&gt;&amp;nbsp; Account name: domain\TFSService&lt;/P&gt;
&lt;P&gt;Detailed Message: Unrecognized default notification 'From' address: &lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To fix this, add an e-mail address to &amp;lt;add key="emailNotificationFromAddress" value=&lt;A href="mailto:value=TFSemailaddress@company.com"&gt;TFSemailaddress@company.com&lt;/A&gt; /&amp;gt; in C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services\Services\web.config&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=102" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry><entry><title>CRM 3.0 - Event 208 - Source: SQLSERVERAGENT in event log</title><link rel="alternate" type="text/html" href="http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/08/09/101.aspx" /><id>http://blog.solidsoft.com/blogs/richards_infrastructure_blog/archive/2006/08/09/101.aspx</id><published>2006-08-09T12:20:00Z</published><updated>2006-08-09T12:20:00Z</updated><content type="html">&lt;P&gt;If you find the following in your SQL server event log:&lt;BR&gt;&lt;FONT size=1&gt;&lt;BR&gt;SQL Server Scheduled Job 'Start_Incremental on Companyname_MSCRM.ftcat_documentindex.[7.5]' (0xB7324B3916DFFF449C956936187A787A) - Status: Failed - Invoked on: 2006-08-09 13:01:21 - Message: The job failed. The Job was invoked by User &amp;lt;user&amp;gt;. The last step to run was step 1 (Full-Text Indexing).&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;Make sure the Indexing service is running on the server.&lt;/P&gt;
&lt;P&gt;Run execute sp_fulltext_database 'enable' in SQL Analyzer against the Companyname_MSCDM database.&lt;/P&gt;&lt;img src="http://blog.solidsoft.com/aggbug.aspx?PostID=101" width="1" height="1"&gt;</content><author><name>richardk</name><uri>http://blog.solidsoft.com/members/richardk.aspx</uri></author></entry></feed>
