I get error message "The message can't be sent right now. Please try again later."

I use the information protected by the Do Not forward template and I get error message "The message can't be sent right now. Please try again later."
My Details :
AD RMS Windows 2012 R2
Exchange 2013 CU3
I can't see any errors in the application event viewer
Help me please.

Hi 
I would recommend you to run Test-IRMConfiguration -Sender [email protected] and see the results as well.
Grant access to Exchange servers to use ADRMS for IRM. Perform the following task.
Open IIS on ADRMS server  – open default Website – Click _wmcs – Select Certification
Switch to content view – right click on servercertification.asmx and click edit permissions ensure that Exchange servers are listed. If not add the exchange servers and the ADRMS managed account and grant editor access to them.
Also refer below 
AD RMS: Test-IRMConfiguration Command Fails with UnsupportedCryptographicSetException
http://social.technet.microsoft.com/wiki/contents/articles/16449.ad-rms-test-irmconfiguration-command-fails-with-unsupportedcryptographicsetexception.aspx
Check if the certifications are set correctly - Set Permissions on the AD RMS Server Certification Pipeline
http://technet.microsoft.com/en-us/library/ee849850(WS.10).aspx
Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

Similar Messages

  • Why am I getting ExchangeWebServices Inbox Error: Error, ErrorServerBusy. The server cannot service this request right now. Try again later

    I recently switched my application that uses EWS from an on-premise Exchange Server to Exchage Online through Office356.
    The process worked just fine for several days, then I started getting the following errors;
    Error accessing [USERNAME] email account.; ExchangeWebServices Inbox Error: Error, ErrorServerBusy, The server cannot service this request right now. Try again later. --> 
    This has been happening for the past 14 hours now. 
    I contacted my Office365 support team and they acted like they had never heard of the Exchange Web Services API, so no help there.
    I can access the mailbox using the O365 web portal and I can access the mailbox account using the Outlook 2013 desktop client. The issue seems specific to EWS
    My program is a Windows service, written in VB.Net. It connects to EWS, goes to the user account inbox, iterates through the inbox extracting attachments from messages, then moves the messages to a saved folder below the inbox.
    I created the wrapper for EWS that I can reference in my project code using the following, run from an elevated VS2012 command prompt;
    wsdl.exe /namespace:ExchangeWebServices /out:EWS.cs https://outlook.office365.com/ews/services.wsdl /username:[email protected] /password:p@ssw0rd
    csc /out:EWS_E2K13_release /target:library EWS.cs
    I bind to EWS in my class, using the following code;
    Imports System.Net
    Imports ExchangeWebServices
    Public Class Exchange2013WebServiceClass
        Private ExchangeBinding As New ExchangeServiceBinding
        Public Sub New(ByVal userEmail As String, ByVal userPassword As String, ByVal URL As String)
            ExchangeBinding.Credentials = New NetworkCredential(userEmail, userPassword)
            ExchangeBinding.Url = URL
        End Sub
    The error that is logged gets triggered when my code makes a call to the following method;
        Public Function GetInboxMessageIDs() As ArrayOfRealItemsType
            Dim returnInboxMessageIds As ArrayOfRealItemsType = Nothing
            Dim errMsg As String = String.Empty
            'Create the request and specify the travesal type.
            Dim FindItemRequest As FindItemType
            FindItemRequest = New FindItemType
            FindItemRequest.Traversal = ItemQueryTraversalType.Shallow
            'Define which item properties are returned in the response.
            Dim ItemProperties As ItemResponseShapeType
            ItemProperties = New ItemResponseShapeType
            ItemProperties.BaseShape = DefaultShapeNamesType.IdOnly
            'Add properties shape to the request.
            FindItemRequest.ItemShape = ItemProperties
            'Identify which folders to search to find items.
            Dim FolderIDArray(0) As DistinguishedFolderIdType
            FolderIDArray(0) = New DistinguishedFolderIdType
            FolderIDArray(0).Id = DistinguishedFolderIdNameType.inbox
            'Add folders to the request.
            FindItemRequest.ParentFolderIds = FolderIDArray
            Try
                'Send the request and get the response.
                Dim FindItemResponse As FindItemResponseType
                FindItemResponse = ExchangeBinding.FindItem(FindItemRequest)
                'Get the response messages.
                Dim ResponseMessage As ResponseMessageType()
                ResponseMessage = FindItemResponse.ResponseMessages.Items
                Dim FindItemResponseMessage As FindItemResponseMessageType
                If ResponseMessage(0).ResponseClass = ResponseClassType.Success Then
                    FindItemResponseMessage = ResponseMessage(0)
                    returnInboxMessageIds = FindItemResponseMessage.RootFolder.Item
                Else
                    '' Server error
                    Dim responseClassStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseClassType), ResponseMessage(0).ResponseClass).ToString
                    Dim responseCodeStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseCodeType), ResponseMessage(0).ResponseCode).ToString
                    Dim messageTextStr As String = ResponseMessage(0).MessageText.ToString
                    Dim thisErrMsg As String = String.Format("ExchangeWebServices Inbox Error: {0}, {1}, {2}", responseClassStr, responseCodeStr, messageTextStr)
                    errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & thisErrMsg
                End If
            Catch ex As Exception
                'errMsg = String.Join("; ", errMsg, ex.Message)
                errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & ex.Message
            End Try
            If Not errMsg.Equals(String.Empty) Then
                returnInboxMessageIds = Nothing
                Throw New System.Exception(errMsg)
            End If
            Return returnInboxMessageIds
        End Function  
    Since the code worked just fine for several days and then suddenly stopped working with a server busy error, I have to think that this is some type of limit or throttling by EWS on the account. I process several thousand emails per day, in chunks of 300
    at a time. 
    But I have no idea how to check for any limits exceeded. I am nowhere close to my O365 mailbox size limit. Right now, there are over 4,000 messages in my inbox, and growing. 
    Thanks in advance for any ideas you can offer.
    Dave

    All the API's EWS, MAPI, ActiveSync,Remote powershell are throttled on Office365 (based around what 1 particular user could resonably do). If you have had a read of this already i would recommend
    http://msdn.microsoft.com/en-us/library/office/jj945066(v=exchg.150).aspx
     You can't adjust or even find your current throttle usage so you have to try to design your code around living inside the default limits. If your using One Service Account to access multiple Mailboxes (or if that account is because used across multiple
    applications) that can cause problems. In this case using EWS Impersonation is good solution as described in
    http://blogs.msdn.com/b/exchangedev/archive/2012/04/19/more-throttling-changes-for-exchange-online.aspx (this basically means the Target Mailbox is charged instead of the Service Account).
     Looking at the code one thing I notice missing is your don't appear to be paging the results of FindItems, also have versioned your requests to Exchagne2013. eg ". When the value of the
    RequestServerVersion element indicates Exchange 2010 or an earlier version of Exchange, the server sends a failure response with error code
    ErrorServerBusy. If the value of the RequestServerVersion
    element indicates a version of Exchange starting with Exchange 2010 SP1
    or Exchange Online, and the client is using paging, EWS may return a
    partial result set instead of an error"
    To Page FindItems Correctly you should use the IndexedPageViewType class and page the Items at no more the 1000 at a time eg something like
    IndexedPageViewType indexedPageView = new IndexedPageViewType();
    indexedPageView.BasePoint = IndexBasePointType.Beginning;
    indexedPageView.Offset = 0;
    indexedPageView.MaxEntriesReturned = 1000;
    indexedPageView.MaxEntriesReturnedSpecified = true;
    FindItemType findItemrequest = new FindItemType();
    findItemrequest.Item = indexedPageView;
    findItemrequest.ItemShape = new ItemResponseShapeType();
    findItemrequest.ItemShape.BaseShape = DefaultShapeNamesType.IdOnly;
    BasePathToElementType[] beAdditionproperties = new BasePathToElementType[3];
    PathToUnindexedFieldType SubjectField = new PathToUnindexedFieldType();
    SubjectField.FieldURI = UnindexedFieldURIType.itemSubject;
    beAdditionproperties[0] = SubjectField;
    PathToUnindexedFieldType RcvdTime = new PathToUnindexedFieldType();
    RcvdTime.FieldURI = UnindexedFieldURIType.itemDateTimeReceived;
    beAdditionproperties[1] = RcvdTime;
    PathToUnindexedFieldType ReadStatus = new PathToUnindexedFieldType();
    ReadStatus.FieldURI = UnindexedFieldURIType.messageIsRead;
    beAdditionproperties[2] = ReadStatus;
    findItemrequest.ItemShape.AdditionalProperties = beAdditionproperties;
    DistinguishedFolderIdType[] faFolderIDArray = new DistinguishedFolderIdType[1];
    faFolderIDArray[0] = new DistinguishedFolderIdType();
    faFolderIDArray[0].Mailbox = new EmailAddressType();
    faFolderIDArray[0].Mailbox.EmailAddress = "[email protected]";
    faFolderIDArray[0].Id = DistinguishedFolderIdNameType.inbox;
    bool moreAvailible = false;
    findItemrequest.ParentFolderIds = faFolderIDArray;
    int loopCount = 0;
    do
    FindItemResponseType frFindItemResponse = esb.FindItem(findItemrequest);
    if (frFindItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Success)
    foreach (FindItemResponseMessageType firmtMessage in frFindItemResponse.ResponseMessages.Items)
    Console.WriteLine("Number of Items retreived : " + ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length);
    if (firmtMessage.RootFolder.IncludesLastItemInRange == false)
    moreAvailible = true;
    else
    moreAvailible = false;
    ((IndexedPageViewType)findItemrequest.Item).Offset += ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length;
    Console.WriteLine("Offset : " + ((IndexedPageViewType)findItemrequest.Item).Offset);
    if (firmtMessage.RootFolder.TotalItemsInView > 0)
    foreach (ItemType miMailboxItem in ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items)
    Console.WriteLine(miMailboxItem.Subject);
    else
    throw new Exception("error " + frFindItemResponse.ResponseMessages.Items[0].MessageText);
    } while (moreAvailible);
    The support people should be able to help you as long as you can get past the first level. The EWS Managed API has a RequestId header that gets submitted with requests
    http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx . In theory they should be able to take this and then from the Logs tell more information about why your request failed etc.
    Cheers
    Glen

  • TS1424 Whenever i purchase or download an app on the app store , it always gives me this error message " unable to purchase at this time, please try again later"

    Whenever i purchase or download an app on the app store , it always gives me this error message " unable to purchase at this time, please try again later"

    JUst experienced the exact  same problem after changing password.Getting same message. Hope someone has an answer for this.

  • Excel saving issues error: Someone else is working right now, please try again later"

    Excel saving issues  error: Someone else is working right now, please try again later"        
    I am running W8.1 with Office 2013 and accessing a shared drive, When I try to save an excel document back to the shared drive - I get the error msg
    "Someone else is working in "servername\share\filename" right now, please try again later"
    I can see that there is no one else accessing this file at all. I created a brand new file, added content, saved and got the same error.
    When I use a W7 with Office 2013 accessing the same share drive, accessing the same file - I am able to save the document without issues.
    Does anyone have any ideas what this could be.  Both of these situations are while working from home using a company vpn connection. It does not happen when in the office using either W8.1 or W7.
    Peter.

    Hi,
    Saves when saving locally. Its looking more like W8.1 on a VPN connection that is causing the issue. What can I look for
    I mean you can try to save it to local drive(like drive c:) and then copy it to shared drive.
    If you gain the access to the shared file server, you can check the file status when you open this file.
    Also you can check your event log to see which process causes this error.
    Since I'm not familiar with VPN, I'd suggest you post your issue to the following forum:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=windowsserver

  • EWS The server cannot service this request right now. Try again later.

    html,body{padding:0;margin:0;font-family:Verdana,Geneva,sans-serif;background:#fff;}html{font-size:100%}body{font-size:.75em;line-height:1.5;padding-top:1px;margin-top:-1px;}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em}h3{font-size:1.16em}h4{font-size:1em}h5{font-size:.83em}h6{font-size:.7em}p{margin:0
    0 1em;padding:0 .2em}.t-marker{display:none;}.t-paste-container{;left:-10000px;width:1px;height:1px;overflow:hidden}ul,ol{padding-left:2.5em}a{color:#00a}code, pre{font-size:1.23em}
    Hi,
    I do have a problem that Exchange 2013 CU7 is giving mit a "The server cannot service this request right now. Try again later." when trying to access some accounts using EWS and impersonation.
    I know there might be throttling involved and for that I did make an separate policy and assigned it to the users (EWS andthe mailbox - just in case...)
    Here is what I got from the EWS logs:
    .007Z,f973ffeb-b1fa-4946-a9b4-acb047ea1b37,15,0,1044,21,,NTLM,true,[email protected],domain,ExchangeServicesClient/0.0.0.0,Target=None;Req=Exchange2007_SP1/Exchange2007_SP1;,192.168.0.100,EWS15MB1,EWS15MB3.domain,FindItem,200,1041,,ErrorServerBusy,[email protected],,,cc91dc21f4c542acb64f196ec47ae727,c314fd38-a24e-4bcb-992e-e009c7adcb4e,PrimaryServer,LocalTask,0,1,0,1,0,0,1,0,0,,,,,,,,,0
    Max,0 Max,,,,EWS_BO,0.1067,[C],0,0,10,390,,,5,0,,6,15,695,713,,,BackEndAuthenticator=WindowsAuthenticator;TotalBERehydrationModuleLatency=0;AuthzFlags=AuthzSkipTokenGroups;FindItemQueryFilter=(True);AQS=False;MailboxTypeCacheSize=2039;S:WLM.Cl=InternalMaintenance;S:ServiceTaskMetadata.ADCount=0;S:WLM.Type=Ews;S:FCI.MBXT=Primary;S:ServiceTaskMetadata.ADLatency=0;S:WLM.Int=True;S:FCI.QS=;S:ServiceTaskMetadata.RpcCount=10;S:ServiceTaskMetadata.RpcLatency=420;S:WLM.SvcA=False;S:FCI.VF=All;S:ServiceTaskMetadata.WatsonReportCount=0;S:ServiceTaskMetadata.ServiceCommandBegin=16;S:ServiceTaskMetadata.ServiceCommandEnd=711;S:ActivityStandardMetadata.Component=Ews;S:WLM.BT=Ews;S:BudgetMetadata.MaxConn=Unlimited;S:BudgetMetadata.MaxBurst=Unlimited;S:BudgetMetadata.BeginBalance=$null;S:BudgetMetadata.Cutoff=Unlimited;S:BudgetMetadata.RechargeRate=Unlimited;S:BudgetMetadata.IsServiceAct=False;S:BudgetMetadata.LiveTime=00:00:00.2343945;S:BudgetMetadata.EndBalance=$null;S:FCI.CVT=689;S:FCI.CSIT=70;S:FCI.CSIC=0;S:FCI.CSIQ=2;S:FCI.CSISTC=2;S:FCI.CSIG=54;S:FCI.CRIT=613;S:FCI.CRIC=340;S:FCI.CRIQ=2;S:FCI.CRIG=381;S:FCI.CRIET=0;S:FCI.CRINI=160;S:FCI.CRIMBT=0;S:FCI.CRIMET=7;S:FCI.CRIMP=0;S:FCI.CRIMAR=37;S:FCI.CVU=False;Dbl:WLM.TS=713;Dbl:BudgUse.T[]=715.151611328125;I32:ADR.C[dc1]=1;F:ADR.AL[dc1]=3.1106;Dbl:CCpu.T[CMD]=312.5;I32:RPC.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=10;Dbl:RPC.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=420;I32:ROP.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=80768493;I32:MAPI.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=23;Dbl:MAPI.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=420;I32:MB.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=10;F:MB.AL[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=42;Dbl:ST.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=59;I32:ATE.C[dc1.domain-]=1;F:ATE.AL[dc1.domain-]=0;Dbl:STCPU.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=46,,ExceptionHandler_Execute=Microsoft.Exchange.Services.Core.Types.ServerBusyException:
    The server cannot service this request right now. Try again later.    at Microsoft.Exchange.Services.Core.Search.NormalQueryView.ThrowIfFindCountLimitExceeded(UInt32 viewLength)    at Microsoft.Exchange.Services.Core.Search.NormalQueryView.RetrieveCalendarViewData(Object[][]
    view  Int32 rowsToGet)    at Microsoft.Exchange.Services.Core.Search.CalendarPageView.ApplyPostQueryPaging(Object[][] view)    at Microsoft.Exchange.Services.Core.Search.NoGrouping.IssueQuery(QueryFilter query  Folder
    folder  SortBy[] sortBy  BasePagingType paging  ItemQueryTraversal traversal  PropertyDefinition[] propsToFetch  RequestDetailsLogger logger)    at Microsoft.Exchange.Services.Core.FindItem.FindItemsInParent(IdAndSession
    folderIdAndSession)    at Microsoft.Exchange.Services.Core.FindItem.Execute()    at Microsoft.Exchange.Services.Core.ExceptionHandler`1.Execute(CreateServiceResult createServiceResult  Int32 index  GenerateMessageXmlForServiceError
    generateErrorXml);,
    And here is the throttling policy I'm using for those users.
    ThrottlingPolicyScope                       : Regular
    IsServiceAccount                            : False
    AnonymousMaxConcurrency                     : 1
    AnonymousMaxBurst                           : 120000
    AnonymousRechargeRate                       :420000
    AnonymousCutoffBalance                      : 720000
    EasMaxConcurrency                           : 10
    EasMaxBurst                                 : 480000
    EasRechargeRate                             : 1800000
    EasCutoffBalance                            : 600000
    EasMaxDevices                               : 100
    EasMaxDeviceDeletesPerMonth                 : Unlimited
    EasMaxInactivityForDeviceCleanup            : Unlimited
    EwsMaxConcurrency                           : Unlimited
    EwsMaxBurst                                 : Unlimited
    EwsRechargeRate                             : Unlimited
    EwsCutoffBalance                            : Unlimited
    EwsMaxSubscriptions                         : Unlimited
    ImapMaxConcurrency                          : Unlimited
    ImapMaxBurst                                : 3600000
    ImapRechargeRate                            : 600000
    ImapCutoffBalance                           : Unlimited
    OutlookServiceMaxConcurrency                : 27
    OutlookServiceMaxBurst                      : 300000
    OutlookServiceRechargeRate                  : 900000
    OutlookServiceCutoffBalance                 : 3000000
    OutlookServiceMaxSubscriptions              : 5000
    OutlookServiceMaxSocketConnectionsPerDevice : 4
    OutlookServiceMaxSocketConnectionsPerUser   : 12
    OwaMaxConcurrency                           : 20
    OwaMaxBurst                                 : 480000
    OwaRechargeRate                             : 1800000
    OwaCutoffBalance                            : Unlimited
    OwaVoiceMaxConcurrency                      : 3
    OwaVoiceMaxBurst                            : 75000
    OwaVoiceRechargeRate                        : 375000
    OwaVoiceCutoffBalance                       : 525000
    PopMaxConcurrency                           : 20
    PopMaxBurst                                 : 3600000
    PopRechargeRate                             : 600000
    PopCutoffBalance                            : Unlimited
    PowerShellMaxConcurrency                    : 18
    PowerShellMaxBurst                          : Unlimited
    PowerShellRechargeRate                      : Unlimited
    PowerShellCutoffBalance                     : Unlimited
    PowerShellMaxTenantConcurrency              :
    PowerShellMaxOperations                     : Unlimited
    PowerShellMaxCmdletsTimePeriod              : Unlimited
    ExchangeMaxCmdlets                          : Unlimited
    PowerShellMaxCmdletQueueDepth               : Unlimited
    PowerShellMaxDestructiveCmdlets             : Unlimited
    PowerShellMaxDestructiveCmdletsTimePeriod   : Unlimited
    PowerShellMaxCmdlets                       : Unlimited
    PowerShellMaxRunspaces                      : Unlimited
    PowerShellMaxTenantRunspaces                :
    PowerShellMaxRunspacesTimePeriod            : Unlimited
    PswsMaxConcurrency                          : 18
    PswsMaxRequest                              : Unlimited
    PswsMaxRequestTimePeriod                    : Unlimited
    RcaMaxConcurrency                           : Unlimited
    RcaMaxBurst                                 : 150000
    RcaRechargeRate                             : 900000
    RcaCutoffBalance                            : Unlimited
    CpaMaxConcurrency                           : Unlimited
    CpaMaxBurst                                 : Unlimited
    CpaRechargeRate                             : Unlimited
    CpaCutoffBalance                            : Unlimited
    MessageRateLimit                            : Unlimited
    RecipientRateLimit                          : Unlimited
    ForwardeeLimit                              : Unlimited
    DiscoveryMaxConcurrency                     : 15
    DiscoveryMaxMailboxes                       : 20000
    DiscoveryMaxKeywords                        :2000
    DiscoveryMaxPreviewSearchMailboxes          : 5000
    DiscoveryMaxStatsSearchMailboxes            : 1000
    DiscoveryPreviewSearchResultsPageSize       : 2000
    DiscoveryMaxKeywordsPerPage                 : 500
    DiscoveryMaxRefinerResults                  : 500
    DiscoveryMaxSearchQueueDepth                : 128
    DiscoverySearchTimeoutPeriod                : 30
    PushNotificationMaxConcurrency              : 20
    PushNotificationMaxBurst                    : Unlimited
    PushNotificationRechargeRate                : Unlimited
    PushNotificationCutoffBalance               : Unlimited
    PushNotificationMaxBurstPerDevice           : 10
    PushNotificationRechargeRatePerDevice       : 6
    PushNotificationSamplingPeriodPerDevice     : 600000
    EncryptionSenderMaxConcurrency             : 200
    EncryptionSenderMaxBurst                    : 4800000
    EncryptionSenderRechargeRate                : 18000000
    EncryptionSenderCutoffBalance               : Unlimited
    EncryptionRecipientMaxConcurrency           : 20
    EncryptionRecipientMaxBurst                 : 480000
    EncryptionRecipientRechargeRate             : 1800000
    EncryptionRecipientCutoffBalance            : Unlimited
    ComplianceMaxExpansionDGRecipients          : 10000
    ComplianceMaxExpansionNestedDGs             : 25
    IsLegacyDefault                             : False
    Diagnostics                                 :
    Do you have an idea how to get rid of this?
    Thank you.
    Regards
    Carsten

    Hi,
    This issue occurs because the EWS monitoring detects that the limit for the requests that are from a Client Access server to a Mailbox server was reached. Therefore, the Client Access server returns an ErrorServerBusy response code to all EWS requests to
    the Mailbox server.
    To work around this issue, make the following changes in the Web.config file on the Client Access server, The Web.Config file is located in the following path: Drive\Program Files\Microsoft\Exchange Server\V15\ClientAccess\exchweb\ews
    1.        Find the following code in the Web.config file:
    <add key="MbxServerEnableConcurrencyControl" value="true" />
    Change the MbxServerEnableConcurrencyControl value from true to
    false.
    2.        Add the following line of code into the Web.config file:
    <add key="DefaultFindCountLimit" value="2000" />
    <add key="MdbFairUnhealthyLatencyThreshold" value="500" />
    3.        Reset IIS to check this issue.
    If this issue persists, I suggest to create a new throttling policy with unlimited settings and applying the policy to those users.
    New-ThrottlingPolicy EWSRCAunlimited
    Get-ThrottlingPolicy EWSRCAunlimited | Set-ThrottlingPolicy -EWSPercentTimeInAD:$null -EWSFindCountLimit:$null -EWSPercentTimeInMailboxRPC:$null -EWSMaxConcurrency:$null -EWSFastSearchTimeoutInSeconds:$null -EWSMaxSubscriptions:$null -EWSPercentTimeInCAS:$null
    -RCAPercentTimeInCAS:$null -RCAPercentTimeInMailboxRPC:$null -RCAMaxConcurrency:$null -RCAPercentTimeInAD:$null
    Set-Mailbox username -ThrottlingPolicy EWSRCAunlimited
    Best Regards.

  • HT5622 Pls why  do I keep getting this message "Payment processing is temporarily unavailable. Please try again later.... Every time I try to purchase something ????

    Payment processing is temporarily unavailable. Please try again later..... That's all I've received all day, can't even change my payment type to none

    Payment processing is temporarily unavailable. Please try again later..... That's all I've received all day, can't even change my payment type to none

  • HT4623 My iphone iphone will not activate, message given is "Iphone activation cannot be completed right now, please try again later"

    My iphone will not complete the activation after i upgraded the software, Keeps saying activation cannot be completed because server cannot be reached, please try again later. Help!!

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    Where did you acquire this iPhone?
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>About=>Carrier?
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743

  • What does it mean when Siri keeps saying "I can't help you right now, please come back later."?

    What does it mean when Siri keeps saying, "I can't help you right now, please try again later."?

    Pretty much what it says, SIri can't help you right now.  I suspect it's a location, nework and/or server issue.  Siri is currently Beta and doesn't always work.

  • TS4079 Why does Siri say "I'm really sorry about this but I can't take any requests right now Please try again in a little while" ? Is she broke? How do I reset? Thanks

    Why does Siri say "I'm really sorry about this but I can't take any requests right now Please try again later"?
    I haven't had any trouble up to this morning. Is there a reset?
    Thanks for your help.

    Thanks James, I just tried Siri again and it worked fine on two tests.
    Does this Problem happen often? I have had my Iphone5 for about two weeks and this is the first time I have
    had the problem. My 3gs used Siri to dial phone numbers or use the address book to dial and I never had a problem with it.
    Thanks for posting the system status page.

  • I cannot create a new business catalyst site with Dreamweaver CC 2014. The error message states that Dreamweaver cannot connect with server, try again later. How can I fix this problem?

    I cannot create a new Business Catalyst site with Dreamweaver CC 2014 (Mac). The error message states that Dreamweaver cannot connect with server, try again later. In addition, I am also unable to load remotely a previously created Business Catalyst site as it says there is something wrong with my username or password. However when I put my password in and press test connection, it says it has connected successfully. What is going wrong and how can I fix this problem?
    Thanks

    Hi Ozy08,
    Can you try the solutions mentioned in Re: Can't Login to Business Catalyst within Dreamweaver CS6?
    If you still have problems, and you have a purchased version of DW CC, send me your Adobe ID, location, and contact details over a private message. Click my picture and use the message option.
    Thanks,
    Preran

  • I cannot download nor update apps through Apps Store, error message states that app cannot be downloaded, to try again later, this has been happening for the  last five days. Help!

    I cannot download nor update apps through Apps Store, error message states that app cannot be downloaded, to try again later, this has been happening for the  last five days. Help!
    It started when tryung to update Twitter. Now the problem is with every app I try to update or download.

    I have this issue as well. The App Store icon indicates there are updates available but when I open the app a popup says it can't connect to the store and the screen remains white. I have tried a hard reset (power &amp; home button) and several other suggestions I have found throughout the forums here without success.

  • TS4002 When trying to access i message on my iPhone 4s an error message pops up; "Check your network connection or try again later" how can i fix this?

    When trying to access imessage on my iPhone 4s an error message pops up; "Check your network connection or try again later" how can i fix this? This became a problem after i updated the latest software update and i can't seem to fix it.

    Hi annmariefromuky,
    If you are having issues accessing iMessage, you may find the following article helpful:
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/ts3970
    Regards,
    - Brenden

  • HT1600 We have an apple  tv1st generation   We want to use airplay. When we go to the 'update software' under settings, general, a message  comes up saying - There is no update available. Apple TV can't check right now. Try again later. WiFi is worko

    We have an Apple e TV 1st generation. We want to use AirPlay. When we go to Software Update, under settings, general, we get this message - There is no update available. Apple TV can't check right now. Try again later
    The wiFi is connected and working
    Please help?

    Also the 1st gen device was discontinued awhile ago, since it runs on a different OS compared to the newer models it hasn't received any updates for 3 or 4 years now. There would be no update to check for.

  • TS1368 Im trying to authorize my windows 8 pc and receive the following message:We could no complete your I tunes store request.The I tunes store is temporarily unavailable. Please try again later.

    Im trying to authorize my windows 8 pc and receive the following message:We could no complete your I tunes store request.The I tunes store is temporarily unavailable. Please try again later.

    Hi there PheeneyM,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    -Griff W.

  • Hello , I ordered the iPhone 6plus 128gb a few minutes before 3am est. I received my conformation email at 530am . As of then every time I try to check order status I receive the following message .  We are experiencing system issues, please try again lat

    Hello , I ordered the iPhone 6plus 128gb a few minutes before 3am est on Friday morning. I received my conformation email at 530am . As of then every time I try to check order status I receive the following message .  We are experiencing system issues, please try again later. Is anyone else receiving this message when checking order status?

    Are you seen that message when trying to view your orders from your Verizon account? I have the same issue but if you search your preorder confirmation number and enter you last name here Order Status | Verizon Wireless then it will at least give the vague details like, "your order has been received and is been processed" It will also show the expected delivery date.

Maybe you are looking for

  • How do i recover a lost project that i didnt save correctly

    how do i search auto save files to find my project? where does final cut pro save projects?

  • Help using the BLUR Filter in PSE7

    I want to blur the background in some of my photos so that the main subject of the photo is sharp but all background items are blurred. When I try to do this in PSE7 it gives me a message 'could not complete your request as the layer is locked'. If I

  • Is anyone having problems with Yahoo mail?

    Is anyone having trouble downloading Yahoo email on their iPhones via email icon app? I haven't been able to download on my iPhone 4 since yesterday morning, but it works fine on my PC or accessing via Safari. My iPhone 4 shows downloading 1 of 18 bu

  • Release Strategy Question

    Hi, Can anyone explain me with example, why is it that we can have only one class and not more, when configuring groups in the release strategy. Why is it mandatory to have only one class for overall and one class for line item release, can someone e

  • Data Source does not exist in version A.

    Dear Experts, I have created Data Source in R/3 ( ECC ) by t. code rso2. If am trying to display Data source by t.code RSA2 . It gives message Data Source does not exist in version A. Regrads, Anand Mehrotra.