Frequence Restart IIS when deploy CR on Windows Server 2008

Dear All,
Need help for the following error:
Load report failed. - at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) at CrystalDecisions.CrystalReports.Engine.ReportClass.Load(String reportName, OpenReportMethod openMethod, Int16 parentJob) at CrystalDecisions.CrystalReports.Engine.ReportClass.Load() at Plitasoft.Controllers.ReportController.run_report(String report_name, IDictionary`2 dic_param, String as_target) - System.Runtime.InteropServices.COMException (0x80000000): The maximum report processing jobs limit configured by your system administrator has been reached. at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() - CrystalDecisions.CrystalReports.Engine - System.Collections.ListDictionaryInternal
If I restart the IIS then the problem gone. But it need very frequence to restart the IIS.
Please help to solve this problem.
Regards,
I Made Sugi Ardana

You will probably need to provide more info, but for starters, are you using .close and .dispose on the report objects as you get done with them? If not, do so. If yes, provide the following info:
1) Version of CR
2) Version of VS
3) OS
4) Version of IIS
5) Do you see this behavior after running a number of reports only?
6) Are you viewing, printing or exporting the reports?
7) What load are you putting on the engine (e.g.; how many requests?)?
- Ludek
Senior Support Engineer AGS Product Support, Global Support Center Canada
Follow us on Twitter

Similar Messages

  • Database logon failed when deploy CR on Windows Server 2008

    I use Crystal Reports for Visual Studio 2010 Production Release with MVC 2 web aplication and SQL Server 2008 database server. When I compile/run from VS 2010 it running well, but when deploy it on Windows Server 2008, when load certain report (Not All report) face the following exception message:
    Database logon failed
    Stack Trace is as the following:
    at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options) at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType) at SequisLife.Controllers.ReportController.run_report(String report_name, IDictionary`2 dic_param)
    InnerException:
    System.Runtime.InteropServices.COMException (0x8004100F): Database logon failed. at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
    run_report method is as the following:
    private ActionResult run_report(string report_name, IDictionary<string, string> dic_param)
                string ls_respon = "";
                try
                    get_sqllogin();
                    ReportClass rptH = new ReportClass();               
                    rptH.FileName = Server.MapPath(VirtualPathUtility.ToAbsolute(report_name));
                    rptH.Load();             
                    rptH.Refresh();
                    Database crDataBase;
                    Tables crTables;
                    TableLogOnInfo crTableLogOnInfo;
                    ConnectionInfo reportConnectionInfo = new ConnectionInfo();
                    reportConnectionInfo.ServerName = server;
                    reportConnectionInfo.DatabaseName = database;
                    reportConnectionInfo.UserID = login_user;
                    reportConnectionInfo.Password = login_pass;
                    crDataBase = rptH.Database;
                    crTables = crDataBase.Tables;
                    foreach (Table crTable in crTables)
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo = reportConnectionInfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);                  
                    ParameterFields lpf_parameters = rptH.ParameterFields;
                    if (lpf_parameters.Count > 0)
                        foreach (ParameterField lpf_param in lpf_parameters)
                            var llst_tmps = dic_param.Where(d => d.Key == lpf_param.Name);
                            foreach (var param in llst_tmps)
                                if (param.Key == lpf_param.Name)
                                    if (lpf_param.ReportName == "")
                                        rptH.SetParameterValue(lpf_param.Name, param.Value);
                                    else
                                        rptH.SetParameterValue(lpf_param.Name, param.Value, lpf_param.ReportName);
                    Stream stream = rptH.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
                    return File(stream, "application/pdf");
                catch (Exception ex)
                    ls_respon += ex.Message;
                    ls_respon = " - "ex.StackTrace;
                    ls_respon += " - " + ex.InnerException;
                    ls_respon += " - " + ex.Source;
                    ls_respon += " - " + ex.Data;
                    return Content(ls_respon);
    Please any body hepl me...
    Thank's in advance

    Hi,
    I am using CR with visual studio 2010 in windows 7 box 64bit box. using a ADO.net data source. And I need to export .rpt as pdf.The solution works fine in my dev box. by when i try to deploy in a windows server 2008 R2 box (64bit) it fails . Both my dev box and deplyment box uses sql server 2008 DB . Also i am using .Net framework 4.0 (not client profile)
    installed the following things in deployment box:
    1. CRRuntime_64bit_13_0_1.msi in
    2. Also copied the CRforVS_mergemodules_13_0_1 in C:\Program Files (x86)\Common Files\Merge Modules
    I get the following error in my Box:
    CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)   at Tesco.Instore.PickingControl.ReportController.PrintDriverDocumentation(String driverDocumentation, Int32 vehicleTripId)] 20/10/2011 08:08:41        PCS        Critical                   Classic .NET AppPool      Error running End of Van [Logon failed.
    Error in File temp_31b3196f-fd25-45c8-b657-5d9cd7c9dccb {4F74290C-D56E-4FC4-8DEF-371BB5C5B10B}.rpt:
    Unable to connect: incorrect log on parameters.]
    I also verified the database connection is upto date. while creating the solution
    the project build is set to anyCPU.
    is there anything else i have to install ?? Please help me ..I am trying this thing from last one week and have not got any proper solution till now

  • Deployment issue on windows server 2008(64 bit)

    Hi all,
    I am using crystal reports 2008 trial version for my web application. Its working fine in development environment but when I deploy application in windows server 2008 64 bit edition it shows following error:"An error has occurred while attempting to load the Crystal Reports runtime. Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly. Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required."
    Is there any resolution available for this problem except for changing the IIS settings for 32 bit applications?
    Rgds

    Read the following [article|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e;jsessionid=(J2EE3417600)ID0244107750DB11172929121510648759End] as it goes over your issue.
    Essentially you will have to set IIS to 32 bit at the least.
    Jason

  • The Update is Not Applicable To Your Computer when installing patch on Windows Server 2008 R2 machine

    When I try to install security patch KB2525694 and KB978542 on my Windows Server 2008 R2 machine, I get the message "The Update is Not Applicable To Your Computer".  I am using the following files:
    Windows6.1-KB978542-x64 (KB978542)
    Windows6.1-KB2525694-x64 (KB2525694)
    I believe these are the correct files but no luck installing it.  Any help would be greatly appreciated!

    When I try to install security patch KB2525694 on my Windows Server 2008 R2 machine, I get the message "The Update is Not Applicable To Your Computer".  I am using the following files:
    Windows6.1-KB2525694-x64 (KB2525694)
    This update has been superseded many times.
    If you already have installed one of the superseding updates below, KB2525694 will not be applicable.
    For the list of superseding updates, check this list:
    http://catalog.update.microsoft.com/v7/site/Search.aspx?q=2525694%20r2%20x64
    (click on the result, then click on the "Package Details" tab to get the list below..
    This update has been replaced by the following updates:
    Security Update for Windows Server 2008 R2 x64 Edition (KB2555917)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2567053)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2639417)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2641653)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2660465)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2676562)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2709162)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2718523)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2731847)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2761226)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2778344)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2778930)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2779030)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2808735)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2829361)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2850851)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2876315)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2883150)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2893984)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2913602)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2930275)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2973201)
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Error: 0x800f0826 recived when installing SP1 of windows server 2008 R2

    Tried to install the Windows server 2008 R2 SP1 but  failed with the error code 0x800f0826.
    The update  install fine and when reboots it says "Installation was not successful"  Error 0x800f0826.
    I already follow steps as mentioned in this http://support.microsoft.com/kb/2505743 , but still no success.
    plz. advice
    SALMAN

    Below are the CheckSUR.persist  logs.
    =================================
    Checking System Update Readiness.
    Binary Version 6.1.7601.21645
    Package Version 15.0
    2012-06-01 23:21
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    Summary:
    Seconds executed: 868
     No errors detected
    =================================
    Checking System Update Readiness.
    Binary Version 6.1.7601.21645
    Package Version 15.0
    2012-06-04 11:26
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    Summary:
    Seconds executed: 557
     No errors detected
    =================================
    Checking System Update Readiness.
    Binary Version 6.1.7601.21645
    Package Version 15.0
    2012-06-04 11:53
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    Summary:
    Seconds executed: 271
     No errors detected
    =================================
    Checking System Update Readiness.
    Binary Version 6.1.7601.21645
    Package Version 15.0
    2012-06-04 12:47
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    =================================
    Checking System Update Readiness.
    Binary Version 6.1.7601.21645
    Package Version 15.0
    2012-06-04 12:51
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    Summary:
    Seconds executed: 132
     No errors detected
    SALMAN

  • DRIVERS MISSING WHEN I HAVE INSTALLED WINDOWS SERVER 2008

    I HAVE PROBLEM WITH THE DRIVERS I HAVE INSTALLED A WINDOWS SERVER 2008 BECAUSE I NEED TO INSTALL SQL SERVER A PRACTICE STUFF....BUT I HAVE DRIVER PROBLEMS...IF ANYBODY CAN HELP ME

    Turn off the caps and tell us the problem and or error messages you receive. If the issue is "no hard disks found" or similar the follow the steps;
    Method 3: Provide the correct drivers for the hard disk controller
    You cannot select or format a hard disk partition when you try to install Windows Vista, Windows 7 or Windows Server 2008 R2
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Get 0x80780124 error when trying to restore Windows Server 2008 R2

    We are trying to restore a HP Proliant ML350 G6 Windows 8 R2 Server but every time we do we get a message that states "The system image restore failed error details: Windows Backup failed to extend or mount the file system on the recovered volume.
    (0x80780124)" We were trying the restore from the CD. Any ideas what would be causing the issues?

    Hi,
    Please try to run chkdsk on the backup vhd to see if you can restore the server. In additional, you can also refer to the thread below to troubleshoot the issue:
    SBS 2011 Bare Metal Restore Failed
    http://social.technet.microsoft.com/Forums/en-US/bd90747a-3e5d-47b3-8a67-748864aa20f4/sbs-2011-bare-metal-restore-failed?forum=smallbusinessserver
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • WPA2 EAP-PEAP error, may be Windows Server 2008 or...

    I've studied posts like /t5/Connectivity/Not-able-to-connect-to-company-WLAN-WPA2-AES-PEAP-with-E71/m-p/420301/highlight/tru... , updated firmware, no joy. On E71, get
    WLAN: EAP-PEAP authentication failed
    In the event log of the domain controller+NPS server, get:
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          5/19/2010 10:24:18 AM
    Event ID:      6274
    Task Category: Network Policy Server
    Level: Information
    Keywords: Audit Failure
    User: N/A
    Computer: Actinium.s********.com
    Description: Network Policy Server discarded the request for a user. Contact the Network Policy Server administrator for more information.
    User:
         Security ID: S****\****
         Account Name: d***@*****.com
         Account Domain: S*******
         Fully Qualified Account Name: S******\*****
    Client Machine:
         Security ID: NULL SID
         Account Name: -
         Fully Qualified Account Name: -
         OS-Version: -
         Called Station Identifier: 000B8651*****
         Calling Station Identifier: 0021FE3****
    NAS:
         NAS IPv4 Address: 10.0.1.253
         NAS IPv6 Address: - NAS Identifier: 10.0.1.253
         NAS Port-Type: Wireless - IEEE 802.11
         NAS Port: 1
    RADIUS Client:
         Client Friendly Name: OAW-4308
         Client IP Address: 10.0.1.253
    Authentication Details:
         Connection Request Policy Name: Secure Wireless Connections
         Network Policy Name: Secure Wireless Connections
         Authentication Provider: Windows Authentication Server: Actinium.s********.com
         Authentication Type: EAP
         EAP Type: -
         Account Session Identifier: -
         Reason Code: 1
         Reason: An internal error occurred. Check the system event log for additional information.
    I get a different "Reason" when I deliberately use the wrong certificate, so that part is probably OK. Tried many combinations of sAMAccountName, userPrincipalName, etc. in user and realm fields. I saw a perhaps related issue with somebody using a maemo device that stopped working when they upgraded to Windows Server 2008 on the back end. No problem with iPhones, Blackberry Storms, laptops.
    Help...

    In the SCVMM world a 'template' is composed of the following: a VHD with an OS that has been generalized (sysprep), virtual hardware profile (settings), and an OS profile.
    The OS profile is required to have a product key.  A MAC activation key at the minimum.  But the key is required.
    If you deploy a VM from a VHD, the same customization assumptions are not at play.  Which is why it succeeds.  (there is no template in this case, there is also no requirement that the OS in the VHD be sysprep'd).
    SCVMM has rules.  And lots of things don't make sense until you begin to understand them and play within them. (I am not saying that the SCVMM rules are a good thing, just saying they exist)
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Windows server 2008 R2 browsing the network

    We just migrated to Server 2008 R2 and now we are having network browsing issues
    When searching computers can only see local cannot search on different subnets?
    Our CEO I sold school and like to browse the network to connect to a server and when he is not at the headquarters he no longer can browse computers at the headquarter location?
    Is this a Bug or a service?
    If you try and search for a computer name it also does not work can only search for local computers
    if you type the computer name directly in my computer it works and you can connect
    This topic first appeared in the Spiceworks Community

    Hi,
    This issue occurs because the IPAddress registry entries at the following location are incorrectly overwritten by a newly added IP address instead of the whole list of IP addresses:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Parameters\Interfaces\<GUID>
    Note <GUID> is a placeholder for the GUID of the network adapter that is encountering the issue.
    More information and a hotfix, please check the below KB:
    Some IP addresses on a network adapter are lost after you restart a computer that is running Windows Server 2008 or Windows Vista if the buffer being used on the network adapter becomes insufficient
    http://support.microsoft.com/kb/982931
    Hope this helps
    Best rehards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • 64-bit OLE drivers for Windows Server 2008-R2

    Hello,
    Oracle DB=10.2.0.4 installed on RHL=5
    Applications access vis Oracle OLE. Currently, we are updating to Windows 2008 Server (64-bit). I have heard that there are no 64-bit drivers from Oracle, right or wrong? If it is wrong, could you please provide me the link to download it.
    If it's not possible, what alternative is there, or any directions from Oracle? ... A re-programmed to ODBC or web services,etc is unfortunately not possible.
    Thanks a lot for your help
    Regards..
    Edited by: John-M on Jun 1, 2012 7:14 AM

    Hello Greg,
    Thank you for the reply. I would appreciate if you could elaborate a bit more please.
    There is a 64 bit version of OraOledb that installs with the 64 bit client.Which DB Client for Microsoft 64-bit from the following Oracle site should work for database 10.2.0.4 version? Is the higher version of 64-bit Client version works with lower version of Database Server?
    http://www.oracle.com/technetwork/topics/winx64soft-089540.html
    There is no 64 bit oo4o, and it's not supported to use 32 bit oo4o on a 64 bit OS (although it seems to work).If there is no 64-bit Oracle Object for OLE, then what is the recommended way or workaround when using with Microsoft Windows Server 2008 R2 64-bit?
    Thank you very much.
    Regards..
    Edited by: John-M on Jun 4, 2012 2:33 AM

  • [SOLVED] rdesktop and Windows Server 2008

    Hello guys,
    My jobs requires me to deal with Windows Servers sometime, I have been using rdesktop to remotely access to Windows machines (including Windows XP, Windows Server 2003) without any problems. However, lately when there's a Windows Server 2008 R2 installed and I need to do remote access to that server. rdesktop doesn't seem to work well with Windows 2k8, the first try always works flawlessly, then whether I logged off or just closed the remote window, then the second time onwards, I always get "internal licensing error" message.
    But the problem is, if I use another linux PC (I have several linux OS running in virtual and physical machines, like Mint, Arch, Slackware, even PC-BSD) that I have never "rdesktop" to that Win2k8 before, then the first try always works and problem continues from the second try.
    This problem doesn't seem to happen while I borrow a Windows machine and test many times. So I think there's something that "rdesktop" just doesn't like about Win2k8
    Has anyone experienced this before and do you know a solution for this?
    Thank you very much in advance
    Last edited by Himari (2010-08-05 13:56:36)

    Well, the only difference that I notice is that when accessing Win2k8 remotely, it pops up a message saying something about certificate and ask do you want to trust/process anyway, whilst with rdesktop, it never asks me that kind of question. So I presume after the first time successful login, it fails from the second time onwards.
    However, is there a solution to overcome this problem?
    Thanks

  • CRVS2010 not display on Windows Server 2008 64bit - IIS 7

    Hello every body !!
    I'm use VS 2010 and Crystal Reports for Visual Studio 2010 Beta 2 to build a website.
    When I build directly on the VS2010, report viewers  shows very well.
    But when I build up host Windows Server 2008 - IIS 7, then just get a blank aspx page and there are no error messages
    Please help me ! ! !
    Thank you ...
    http://a.imageshack.us/img808/6750/reportinvs2010.jpg
    Edited by: pumbanet on Sep 6, 2010 9:03 AM
    Edited by: pumbanet on Sep 6, 2010 9:11 AM

    What CR runtime did you deploy?
    Are you working under default or custom web site?
    BTW., the image link shows a pretty good report. Can you post an image of the blank aspx page?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Cold fusion 9 Installation on Windows server 2008 (IIS 7.0) - IIS websites not working ?

    I am having a 64 bit machine on which windows server 2008 R2 is installed. IIS 7.0 is configured and running on it. on which I have my organisations main website. I have to install Cold fusion on this machine as some of my site pages are designed with CF.
    I used all the default settings for installing cold fusion 9. It got completed succefully. But after I restarted my system and tried accesing my ASP.net website it was not loading the page. Text getting displayed was only as follows '<script> src="'. Later I unsistalled CF and my site was working fine.
    Please can any one guide me to successfully install Cold fusion without disturbing my main site deployed on IIS ?

    Sarfarajms, I don't recognize what about the CF install would conflict with ASP.NET, but I'll note this:
    If you downloaded CF 9 recently, you are still running 9.0--which does NOT formally support IIS 7. If you followed the steps about enabling IIS 6 compatibility and such (in the install guide or some blog entry), perhaps that caused the conflict.
    Instead, you will want to install 9.0.1 (CF 9 Updater 1, which is NOT provided in the current 9.0 install). THAT is the first release to formally support IIS 7. And if you read the updater installation guide (http://www.adobe.com/support/documentation/en/coldfusion/901/cf901install.pdf), it discusses how to deal with the upgrade depending on what you had done with respect to IIS, starting at the bottom of its page 8.
    Hope that helps.
    /charlie

  • Installation of Client Access role fails on Windows Server 2008 R2 (Execution of: "$error.Clear(); Install-ExchangeCertificate -services "IIS, POP, IMAP")

    Hello
    I am trying to install Exchange Server 2010 beta 1 onto a Windows Server 2008 R2 (build 7000) machine which has also been set up as a domain controller.
    However when attempting to install the Client Access role, setup fails with the error below.
    Does anyone know of a way to get around this please?
    I have already searched for this error and not found any similar threads.
    Also every time I press the code button on this forum it crashes the browser and I keep losing the message! (IE8 from within Server R2). Also the message box is very small, will not expand and keeps jumping to the top.
    Thanks
    Robin
    [code]
    Summary: 4 item(s). 1 succeeded, 1 failed.
    Elapsed time: 00:00:01
    Preparing Setup
    Completed
    Elapsed Time: 00:00:00
    Client Access Role
    Failed
    Error:
    The execution of: "$error.Clear(); Install-ExchangeCertificate -services "IIS, POP, IMAP" -DomainController $RoleDomainController", generated the following error: "Could not grant Network Service access to the certificate with thumbprint 2F320F5D5B5C6873E54C8AB57F604D8AFA31D18C because a cryptographic exception was thrown.".
    Could not grant Network Service access to the certificate with thumbprint 2F320F5D5B5C6873E54C8AB57F604D8AFA31D18C because a cryptographic exception was thrown.
    Access is denied.
    Elapsed Time: 00:00:01
    Mailbox Role
    Cancelled
    Finalizing Setup
    Cancelled
    [/code]
    Robin Wilson

    Hello
    Thanks for all the replies.
    I have since wiped the system and installed everything again and it all worked this time so not sure what was wrong last time. I did try to uninstall all Exchange components and then uninstall IIS and Application server, reboot and re-install but I received the same error still when it came to installing the client access role.
    Walter: I just attempted the standard installation which should have used the default self-signed certificate. Everything was a fresh install done at the same time on a freshly formatted PC.
    For info last time when it failed to work:
    - Installed Windows Server 2008 R2
    - Installed Domain Controller role using dcpromo. I set the forest and domain as Windows Server 2008 R2
    - Added a forest trust between main domain and test Exchange domain (set up as ex2010.local)
    - Installed IIS and Application Server role
    - Installed Hyper-v role
    - Installed Desktop Experience feature
    - Installed Exchange and recieved the error
    When it worked I set up the forest and domain in Windows Server 2008 mode (i.e. not R2), installed Exchange first and then set up the forest trust and then Hyper-v. It did say it failed to configure dns which was probably because it started trying to do automatic updates half way through the dcpromo! DNS seems to work ok though.
    I did notice this time that Hyper-v gave a warning about the virtual network adapter not being set up correctly and the local network did not work correctly although I could access the internet. Not sure if this could have been related to the cause of the problem previously. For now I have disabled the virtual network until I get time to try and get it working and so the mail will work in the meantime.
    I also noticed that Hyper-v added an extra 443 ssl binding to the default website so as it had 2 bindings on port 443 it refused to start. After deleting one it worked.
    I decided to install Exchange onto a domain controller as it is only a test and I wouldn't do it in a live environment. I am also short of test machines! It didn't give me any warnings about this actually, I think previous versions warn you that it is not recommended.
    Andreas and Chinthaka: I did not know about the requirement to run the domain at 2003 mode. The main domain is running in 2008 mode with Exchange 2007 so I assume this is just a temporary beta related requirement. It does seem to be working (second attempt) so far in a 2008 mode domain although I haven't had a chance to fully test it yet.
    Thanks
    Robin
    P.S. Sorry it's taken me a while to reply!
    Robin Wilson

  • Windows Server 2008 R2 only detect USB storage drives if I restart the system

    Hi, I have a Windows Server 2008 R2 with an weird behaviour. I cannot connect any USB drive (not USB external hard disk neither pendrives). Windows device manager detects the device as
    Mass Storage Device, but with a yellow exclamation sign. The exact error code is:
    The device cannot start.
    However, if I restart the machine keeping the USB disk plugged, the hard disk (or pendrive) is correctly detected and usable.
    I've tried:
    Update mass storage driver.
    Review HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\usbstor "Start"
    and is 3 (I think is right)
    I've tried with different usb hard disks that are working in other PCs.
    I've tried with large (>1TB) disks and small (8GB) pendrives.
    I've tried all available USB ports, front and back, with same behaviour.
    Always I get a yellow exclamation  (Device cannot start) and if I restart the computer the device is working perfectly.
    Can someone help me?
    Thanks in advance
    Edit: Here is the log of connecting a Kingstone USB 8GB pendrive
    >>> [Device Install (Hardware initiated) - USB\VID_0930&PID_6544\C860008863DBCE801A0B24B4]
    >>> Section start 2015/01/09 09:35:49.342
    ump: Creating Install Process: DrvInst.exe 09:35:49.498
    ndv: Retrieving device info...
    ndv: Setting device parameters...
    ndv: Searching Driver Store and Device Path...
    dvi: {Build Driver List} 09:35:49.966
    dvi: Searching for hardware ID(s):
    dvi: usb\vid_0930&pid_6544&rev_0100
    dvi: usb\vid_0930&pid_6544
    dvi: Searching for compatible ID(s):
    dvi: usb\class_08&subclass_06&prot_50
    dvi: usb\class_08&subclass_06
    dvi: usb\class_08
    cpy: Policy is set to make all digital signatures equal.
    dvi: Enumerating INFs from path list 'C:\Windows\inf'
    inf: Opened PNF: 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Created Driver Node:
    dvi: HardwareID - USB\Class_08&SubClass_06&Prot_50
    dvi: InfName - C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf
    dvi: DevDesc - Dispositivo de almacenamiento USB
    dvi: DrvDesc - Dispositivo de almacenamiento USB
    dvi: Provider - Microsoft
    dvi: Mfg - Dispositivo de almacenamiento USB compatible
    dvi: ModelsSec - Generic.NTamd64
    dvi: InstallSec - USBSTOR_BULK
    dvi: ActualSec - USBSTOR_BULK.NT
    dvi: Rank - 0x00ff2000
    dvi: Signer - Microsoft Windows
    dvi: Signer Score - INBOX
    dvi: DrvDate - 06/21/2006
    dvi: Version - 6.1.7601.17577
    inf: Searched 1 potential matches in published INF directory
    inf: Searched 36 INFs in directory: 'C:\Windows\inf'
    dvi: {Build Driver List - exit(0x00000000)} 09:35:51.900
    ndv: Selecting best match from Driver Store (including Device Path)...
    dvi: {DIF_SELECTBESTCOMPATDRV} 09:35:51.900
    dvi: No class installer for 'DataTraveler 2.0'
    dvi: No CoInstallers found
    dvi: Default installer: Enter 09:35:51.900
    dvi: {Select Best Driver}
    dvi: Selected driver installs from section [USBSTOR_BULK] in 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'.
    dvi: Class GUID of device changed to: {36fc9e60-c465-11cf-8056-444553540000}.
    dvi: Set selected driver complete.
    dvi: Selected:
    dvi: Description - [Dispositivo de almacenamiento USB]
    dvi: InfFile - [c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf]
    dvi: Section - [USBSTOR_BULK]
    dvi: Signer - [Microsoft Windows]
    dvi: Rank - [0x00ff2000]
    dvi: {Select Best Driver - exit(0x00000000)}
    dvi: Default installer: Exit
    dvi: {DIF_SELECTBESTCOMPATDRV - exit(0x00000000)} 09:35:51.916
    inf: {SetupCopyOEMInf: C:\Windows\INF\usbstor.inf} 09:35:51.931
    inf: Driver Store location: C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf
    inf: Published Inf Path: C:\Windows\INF\usbstor.inf
    inf: {SetupCopyOEMInf exit (0x00000050)} 09:35:51.931
    dvi: Searching for hardware ID(s):
    dvi: usb\vid_0930&pid_6544&rev_0100
    dvi: usb\vid_0930&pid_6544
    dvi: Searching for compatible ID(s):
    dvi: usb\class_08&subclass_06&prot_50
    dvi: usb\class_08&subclass_06
    dvi: usb\class_08
    inf: Opened PNF: 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Selected driver installs from section [USBSTOR_BULK] in 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'.
    dvi: Class GUID of device changed to: {36fc9e60-c465-11cf-8056-444553540000}.
    dvi: Set selected driver complete.
    ndv: Driver selected, now performing install...
    ndv: {Core Device Install} 09:35:51.947
    inf: Opened PNF: 'C:\Windows\INF\usbstor.inf' ([strings.0c0a])
    inf: Opened PNF: 'C:\Windows\INF\usbstor.inf' ([strings.0c0a])
    dvi: {DIF_ALLOW_INSTALL} 09:35:52.259
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: No CoInstallers found
    dvi: Default installer: Enter 09:35:52.259
    dvi: Default installer: Exit
    dvi: {DIF_ALLOW_INSTALL - exit(0xe000020e)} 09:35:52.259
    ndv: Installing files...
    dvi: {DIF_INSTALLDEVICEFILES} 09:35:52.306
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:52.306
    dvi: {Install FILES}
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    inf: {Install Inf Section [USBSTOR_BULK.NT]}
    inf: CopyFiles=USBSTOR.CopyList (usbstor.inf line 173)
    flq: CopyFiles from an inbox inf.
    cpy: Open PnpLockdownPolicy: Err=2. This is OK. Use LockDownPolicyDefault
    flq: QueueSingleCopy...
    flq: Inf : 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'
    flq: SourceInf: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf'
    flq: SourceSection: [sourcedisksfiles]
    flq: Source root path based on SourceInf
    flq: SourceRootPath: 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d'
    flq: {FILE_QUEUE_COPY}
    flq: CopyStyle - 0x09000000
    flq: {FILE_QUEUE_COPY}
    flq: CopyStyle - 0x09000000
    flq: SourceRootPath - 'C:\Windows\System32\DriverStore\FileRepository\usbstor.inf_amd64_neutral_26b33263a639795d'
    flq: SourceFilename - 'USBSTOR.SYS'
    flq: TargetDirectory- 'C:\Windows\system32\drivers'
    flq: TargetFilename - 'USBSTOR.SYS'
    flq: SourceDesc - 'windows cd'
    flq: {FILE_QUEUE_COPY exit(0x00000000)}
    flq: {FILE_QUEUE_COPY exit(0x00000000)}
    inf: {Install Inf Section [USBSTOR_BULK.NT] exit (0x00000000)}
    dvi: Processing co-installer registration section [USBSTOR_BULK.NT.CoInstallers].
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers]}
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers] exit (0x00000000)}
    dvi: Co-installers registered.
    dvi: {Install INTERFACES}
    dvi: Installing section [USBSTOR_BULK.NT.Interfaces]
    dvi: {Install INTERFACES exit 00000000}
    dvi: {Install FILES exit (0x00000000)}
    dvi: Default installer: Exit
    dvi: {DIF_INSTALLDEVICEFILES - exit(0x00000000)} 09:35:52.384
    ndv: Pruning file queue...
    dvi: {_SCAN_FILE_QUEUE}
    flq: ScanQ flags=620
    flq: SPQ_SCAN_PRUNE_COPY_QUEUE
    flq: SPQ_SCAN_FILE_COMPARISON
    flq: SPQ_SCAN_ACTIVATE_DRP
    flq: ScanQ number of copy nodes=1
    flq: File 'C:\Windows\system32\drivers\USBSTOR.SYS' pruned from copy.
    sig: Using catalog 'C:\Windows\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\Package_3_for_KB982018~31bf3856ad364e35~amd64~~6.1.3.2.cat'.
    cpy: DrpSetRegFileProt 'C:\Windows\system32\drivers\USBSTOR.SYS' Status=0 Class=Inbox Windows protected
    flq: ScanQ action=200 DoPruning=32
    flq: ScanQ end Validity flags=620 CopyNodes=0
    dvi: {_SCAN_FILE_QUEUE exit(0, 0x00000000)}
    ndv: Committing file queue...
    flq: {_commit_file_queue}
    flq: CommitQ DelNodes=0 RenNodes=0 CopyNodes=0
    flq: CommitQ early exit: No nodes are queued
    flq: {_commit_file_queue exit OK}
    ndv: Registering CoInstallers...
    dvi: {DIF_REGISTER_COINSTALLERS} 09:35:54.037
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:54.069
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers]}
    inf: {Install Inf Section [USBSTOR_BULK.NT.CoInstallers] exit (0x00000000)}
    dvi: Co-installers registered.
    dvi: Default installer: Exit
    dvi: {DIF_REGISTER_COINSTALLERS - exit(0x00000000)} 09:35:54.100
    ndv: Installing interfaces...
    dvi: {DIF_INSTALLINTERFACES} 09:35:54.100
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: No CoInstallers found
    dvi: Default installer: Enter 09:35:54.100
    dvi: {Install INTERFACES}
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Installing section [USBSTOR_BULK.NT.Interfaces]
    dvi: {Install INTERFACES exit 00000000}
    dvi: Default installer: Exit
    dvi: {DIF_INSTALLINTERFACES - exit(0x00000000)} 09:35:54.100
    ndv: Installing device...
    dvi: {DIF_INSTALLDEVICE} 09:35:54.100
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:54.100
    dvi: {Install DEVICE}
    inf: Opened PNF: 'c:\windows\system32\driverstore\filerepository\usbstor.inf_amd64_neutral_26b33263a639795d\usbstor.inf' ([strings.0c0a])
    dvi: Processing Registry/Property directives...
    inf: {Install Inf Section [USBSTOR_BULK.NT]}
    inf: AddReg=USBSTOR_BULK.AddReg (usbstor.inf line 174)
    inf: {Install Inf Section [USBSTOR_BULK.NT] exit (0x00000000)}
    inf: {Install Inf Section [USBSTOR_BULK.NT.Hw]}
    inf: Empty section
    inf: {Install Inf Section [USBSTOR_BULK.NT.Hw] exit (0x00000000)}
    dvi: {Writing Device Properties}
    dvi: Provider name=Microsoft
    dvi: DriverDate 06/21/2006
    dvi: DriverVersion=6.1.7601.17577
    dvi: Class name=USB
    dvi: Manufacturer=Dispositivo de almacenamiento USB compatible
    dvi: Matching DeviceID=usb\class_08&subclass_06&prot_50
    dvi: Strong Name=usbstor.inf:Generic.NTamd64:USBSTOR_BULK:6.1.7601.17577:usb\class_08&subclass_06&prot_50
    dvi: {Writing Device Properties - Complete}
    inf: {Install Inf Section [USBSTOR_BULK.NT.Services]}
    inf: Addservice=USBSTOR,0x00000002,USBSTOR.AddService (usbstor.inf line 177)
    inf: ServiceType=1 (usbstor.inf line 234)
    inf: StartType=3 (usbstor.inf line 235)
    inf: ErrorControl=1 (usbstor.inf line 236)
    inf: ServiceBinary=C:\Windows\system32\DRIVERS\USBSTOR.SYS (usbstor.inf line 237)
    inf: DisplayName="Controlador de dispositivo de almacenamiento USB" (usbstor.inf line 233)
    dvi: Add Service: Modified existing service 'USBSTOR'.
    inf: AddReg=DeviceSpecific (usbstor.inf line 238)
    inf: {Install Inf Section [USBSTOR_BULK.NT.Services] exit(0x00000000)}
    dvi: Updated reflected section names for: usbstor.inf
    dvi: {Install DEVICE exit (0x00000000)}
    dvi: Writing common driver property settings.
    dvi: DriverDescription=Dispositivo de almacenamiento USB
    dvi: DeviceDisplayName=Dispositivo de almacenamiento USB
    dvi: Install Device: Restarting device. 09:35:54.537
    dvi: Install Device: Restarting device completed. 09:35:57.625
    !!! dvi: Device not started: Device has problem: 0x0a: CM_PROB_FAILED_START.
    dvi: Default installer: Exit
    dvi: {DIF_INSTALLDEVICE - exit(0x00000000)} 09:35:57.641
    dvi: {DIF_NEWDEVICEWIZARD_FINISHINSTALL} 09:35:57.641
    dvi: No class installer for 'Dispositivo de almacenamiento USB'
    dvi: Default installer: Enter 09:35:57.641
    dvi: Default installer: Exit
    dvi: {DIF_NEWDEVICEWIZARD_FINISHINSTALL - exit(0xe000020e)} 09:35:57.657
    ndv: Device install status=0x00000000
    ndv: Performing device install final cleanup...
    ! ndv: Queueing up error report since device has a PnP problem...
    ndv: {Core Device Install - exit(0x00000000)} 09:35:59.201
    ump: Server install process exited with code 0x00000000 09:35:59.232
    <<< Section end 2015/01/09 09:35:59.279
    <<< [Exit status: SUCCESS]

    I tried, but windows says that the best driver is alredy installed.
    Now I've just tried to delete (uninstall) absolutly all devices under Universal Serial Bus Controller
    (host controllers, root hubs, etc) into Device Manager, and then I've click on
    Scan for hardware changes to force reinstall of all USB drivers. After that I've connected my USB external hard disk and has been correctly recognized and its working. However I don't know if when I'll restar the server and connect a new one usb device
    it will continue working or not. I'll try later, because this is a production server.
    I've tried for drivers into HP site to update or reinstall, but there isn't any driver for motherboard or USB controller. It's an HP ML350 G6.

Maybe you are looking for