Showing posts with label FSRM. Show all posts
Showing posts with label FSRM. Show all posts

Monday, 28 October 2013

Event ID 12339 and 12344: File Server Resource Manager failed to find claim list

Problem: You are running a Windows Server 2012 file server and you see the error messages in your logs every 15 minutes or so.

1) Event ID: 12339
File Server Resource  Manager failed to find the claim list 'Global Resource Property List' in Active Directory (ADsPath: LDAP://dc1.domain.local/CN=Global Resource Property List,CN=Resource Property Lists,CN=Claims Configuration,CN=Services,CN=Configuration,DC=domain,DC=local).  Please check that the claims list configured for this machine in Group Policy exists in Active Directory.
 2) Event ID: 12344
File Server Resource  Manager finished syncing claims from Active Directory and encountered errors during the sync (0x80072030, There is no such object on the server.) Please check previous event logs for details.

Solution: You can either upgrade the Active Directory schema to version 56 (Windows Server 2012) or safely ignore the error messages.

If you can update the schema of your domain. Follow these steps:

1)
 log on to Windows Server 2012 as Administrator of your domain
2)
 Copy from "support \adprep" in the media of Windows Server 2012 to "c:\"
3)
run this command
 c:\adprep\adprep.exe /forestprep

Monday, 21 October 2013

Event ID 12306 FSRM SMTP cannot send email

File Server Resource Manager  Windows Server 2012 - SMTP cannot send email to Exchange Server 2007
 
Problem:
Event ID: 12306
Event Source: SRMSVC
 
Event Viewer Application logs:
A File Server Resource Manager Service email action could not be run.
 
Error-specific details:
Error: IFsrmEmailExternal::SendMail, 0x8004531c, Mailbox unavailable. The server response was: 5.7.1 Client does not have permissions to send as this sender.
 
Solution:
The problem is that your file server does not have the rights to authenticate against an Exchange Server using the computer account (domain\computername$ format) account of the server.  This computer account must be granted send as permissions on the mailbox that you are trying to send as, or it will fail with this error. What you need to do is to run the command below on the mailbox you would like to send as, on your Exchange server.


 Add-ADPermission -Identity "Mailbox Display Name" -user "Domain\ServerName$" -extendedrights "Send-as"