Max's Tips
Thursday, May 19, 2011
Check which Update Rollup version is installed on CRM
Browse to the CRM website.
Click on the “Help” button on the top right side of the window.
Click on “About Microsoft Dynamics CRM”
Get the build number displayed
Check build number with link below
http://crmdynamo.com/2010/03/check-which-update-rollup-version-is-installed-on-your-crm-environments/
Tuesday, May 17, 2011
Troubleshoot IIS7
http://mvolo.com/blogs/serverside/archive/2007/07/26/Troubleshoot-IIS7-errors-like-a-pro.aspx
Thursday, May 12, 2011
Configuring SMTP mail on Server 2008
http://mscerts.programming4.us/windows_server/Windows%20Server%202008%20%20%20Configuring%20SMTP%20(part%201)%20-%20Installing%20the%20SMTP%20Server%20Feature.aspx
Wednesday, May 11, 2011
Edit the dynamic client port range for outgoing connections
http://support.microsoft.com/kb/929851/
Tuesday, May 10, 2011
Rename a SQL server
Check the server name:
Select @@ServerName
For a server with a default instance:
sp_dropserver '
old_name
'
GO
sp_addserver '
new_name
'
, 'local'
GO
For a server with a named instance:
sp_dropserver <'old_name\instancename'>
GO
sp_addserver <'new_name\instancename'>, local
GO
Restart the SQL Server instance
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)