IE Application Error: Faulting Module Flash10v.ocx

I'm running Windows 2003 Server, Enterprise, with Terminal Services and all users connecting via RDP.  Have 32-bit IE8 and Adobe Flash Player 10.3.183.5.  I'm having problems with one third party website application which requires Flash Player.  I receive an iexplore.exe - application error stating "The instruction at "0x08b4288b" referenced memory at "0x0ffcf2e4".  The memory could not be read".  Under Application in Event Viewer I receive a corresponding Application Error which states "Faulting application iexplore.exe, version 8.0.6001, faulting module Flash10v.ocs, version 10.3.183.5, fault address 0x000b288b".  I was having the same problem with the previous version of Flash Player as well, so updating did not solve it.  In the past we've had problems with Flash Player updates and this particular website, and were able to solve it by changing the permissions of a few registry keys to allow "everyone" Read permissions for those keys.  This method did not work this time, so I'm hoping someone can tell me how to locate the registry entries related to Flash Player so I can modify the permissions.

I'm running Windows 2003 Server, Enterprise, with Terminal Services and all users connecting via RDP.  Have 32-bit IE8 and Adobe Flash Player 10.3.183.5.  I'm having problems with one third party website application which requires Flash Player.  I receive an iexplore.exe - application error stating "The instruction at "0x08b4288b" referenced memory at "0x0ffcf2e4".  The memory could not be read".  Under Application in Event Viewer I receive a corresponding Application Error which states "Faulting application iexplore.exe, version 8.0.6001, faulting module Flash10v.ocs, version 10.3.183.5, fault address 0x000b288b".  I was having the same problem with the previous version of Flash Player as well, so updating did not solve it.  In the past we've had problems with Flash Player updates and this particular website, and were able to solve it by changing the permissions of a few registry keys to allow "everyone" Read permissions for those keys.  This method did not work this time, so I'm hoping someone can tell me how to locate the registry entries related to Flash Player so I can modify the permissions.

Similar Messages

  • Application Error - Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385

    Hi,
    we have one Visual C++ application and this application also using few external dlls. while exiting from application, getting following error. This
    is happened in Windows 7.
    Please help us to resolve this issue.
    Log Name:     
    Application
    Source:       
    Application Error
    Date:         
    28/07/2010 11:44:16 AM
    Event ID:     
    1000
    Task Category: (100)
    Level:        
    Error
    Keywords:     
    Classic
    User:         
    N/A
    Computer:     
    CRIWKS12.crillylaw.local
    Description:
    Faulting application name: WinTest.exe, version: 2.7.1.0, time stamp: 0x4b78d5b8
    Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdaae
    Exception code: 0x0eedfade
    Fault offset: 0x00009617
    Faulting process id: 0x10b8
    Faulting application start time: 0x01cb2df647dfd847
    Faulting application path: C:\Program Files\xxx\xxx\xxx\ WinTest.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: a17377fd-99e9-11df-8941-90fba60d7539
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-07-28T01:44:16.000000000Z" />
    <EventRecordID>3773</EventRecordID>
    <Channel>Application</Channel>
    <Computer>CRIWKS12.crillylaw.local</Computer>
    <Security />
    </System>
    <EventData>
    <Data> WinTest.exe</Data>
    <Data>2.7.1.0</Data>
    <Data>4b78d5b8</Data>
    <Data>KERNELBASE.dll</Data>
    <Data>6.1.7600.16385</Data>
    <Data>4a5bdaae</Data>
    <Data>0eedfade</Data>
    <Data>00009617</Data>
    <Data>10b8</Data>
    <Data>01cb2df647dfd847</Data>
    <Data>C:\Program Files\xxx\xxx\xxx\ WinTest.exe</Data>
    <Data>C:\Windows\system32\KERNELBASE.dll</Data>
    <Data>a17377fd-99e9-11df-8941-90fba60d7539</Data>
    </EventData>
    </Event>
    PS. I apologise for not being able to provide the application's name.

    Hi Jesse ,
    I am pasting the entire module where the code fails:
    /// <summary>
    /// Pool the job execution status
    /// </summary>
    private void PoolJobExecutionStatus()
    int waitIndex = 0;
    while (true)
    try
    lock (this.lockingObject)
    this.ReOpenRegistryConnection();
    currentJob = SR.Job.Load(this.currentJobId, this.poolingConnection);
    JobStatusEventArgs jobStatusArg = (currentJob.Status == SR.JobStatus.Aborted) ?
    new JobStatusEventArgs(currentJob.Name, currentJob.Status, currentJob.ErrorMessage) :
    new JobStatusEventArgs(currentJob.Name, currentJob.Status);
    this.dispatcher.BeginInvoke(new EventHandler<JobStatusEventArgs>(RaiseUpdateStatus), DispatcherPriority.Normal, new object[] { this, jobStatusArg });
    if (currentJob.Status == JobStatus.Aborted || currentJob.Status == JobStatus.Completed)
    this.PoolJobThread.Abort();
    break;
    catch (ThreadAbortException)
    catch (ConnectionFailure ex)
    TridentErrorHandler.HandleUIException(ex);
    // If reconnection fails more than the max reconnection value then exit.
    if (this.connectionAttempts >= this.maxConnectionAttempts)
    break;
    this.connectionAttempts++;
    catch (BackendStorageException ex)
    TridentErrorHandler.HandleUIException(ex);
    // If reconnection fails 5 times then exit.
    if (this.connectionAttempts >= this.maxConnectionAttempts)
    break;
    this.connectionAttempts++;
    catch (Exception ex)
    TridentErrorHandler.HandleUIException(ex);
    break;
    try
    Thread.Sleep(500);
    // If job is in waiting state, every 3 min show the user retry message.
    // (waitIndex == 360) Specifes 3 min.
    if (currentJob.Status == JobStatus.Waiting && waitIndex == 360)
    waitIndex = 0;
    JobStatusEventArgs jobStatusArg = new JobStatusEventArgs(this.currentJob.Name, this.currentJob.Status, TridentResourceManager.GetString("JobTerminatedByUserMessage"));
    this.dispatcher.BeginInvoke(new EventHandler<JobStatusEventArgs>(RaiseUpdateStatus), DispatcherPriority.Normal, new object[] { this, jobStatusArg });
    catch (Exception ex)
    TridentErrorHandler.HandleUIException(ex);
    waitIndex++;
    public void StartDataProductService(Guid jobId, Connection poolConnection)
    this.currentJobId = jobId;
    this.poolingConnection = poolConnection;
    this.ClearTempData();
    this.HaltService();
    this.PoolJobThread = new Thread(this.PoolJobExecutionStatus);
    this.PoolJobThread.Start();
    Hope this helps
    Regards,
    Rahul

  • Directory server 5.1 application error - faulting module libslapd.dll

    we are running directory server 5.1 (build 2001.326.2045) on windows nt, with multi-master replication on two servers. one server went down. there are no clues as to why in the access or error logs.
    the windows event viewer shows an application error. the faulting application is slapd.exe, faulting module is libslapd.dll, and fault address is 0x0003edb0
    any help would be appreciated. any questions please ask. thanks!
    Edited by: amlefty on Aug 26, 2009 8:12 PM

    we are running directory server 5.1 (build 2001.326.2045) on windows nt, with multi-master replication on two servers. one server went down. there are no clues as to why in the access or error logs.
    the windows event viewer shows an application error. the faulting application is slapd.exe, faulting module is libslapd.dll, and fault address is 0x0003edb0
    any help would be appreciated. any questions please ask. thanks!
    Edited by: amlefty on Aug 26, 2009 8:12 PM

  • Explorer.exe Application Error - Faulting module name: Windows.UI.Xaml.dll

    We are having a problem with one of our Windows 2012 R2 Terminal Server. The server keeps maxing out CPU to 100% the only way to resolve the issue is by restarting the guest OS. When I have been trying to troubleshoot the issue. I have noticed the following
    error is appearing in the event log. I have tried various research online but have been unable to find a resolution to the issue.  Anyone have any ideas?
    Faulting application name: explorer.exe, version: 6.3.9600.17415, time stamp: 0x54503a3a
    Faulting module name: Windows.UI.Xaml.dll, version: 6.3.9600.17415, time stamp: 0x54504b1a
    Exception code: 0xc000027b
    Fault offset: 0x0000000000982bea
    Faulting process id: 0xd44
    Faulting application start time: 0x01d0526d40641d26
    Faulting application path: C:\Windows\explorer.exe
    Faulting module path: C:\Windows\System32\Windows.UI.Xaml.dll
    Report Id: 80a05322-be60-11e4-80db-005056bd0cad
    Faulting package full name:
    Faulting package-relative application ID:

    Hi,
    Please test the issue in Clean Boot first. For the detailed steps, please refer to the following Microsoft KB article:
    How to perform a clean boot in Windows
    http://support.microsoft.com/kb/929135
    Also seems you should try to uninstall IE and install it again but before that you can run command type:
    SFC /SCANNOW and let the system to scan your DLL files and repair them, then reinstall the new IE.
    For general reference, windows.UI.xmal.dll can handle several file in background process. For more detail refer
    this article.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Event 1000,Application Error Faulting module name: KERNELBASE.dll

    I develop one tool using C#.But it will stop working intermittently.The failure information is as below.I don't know what's wrong with it.
    Faulting application name: TVSUAuto.exe, version: 1.0.5294.41796, time stamp: 0x53b25f89
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.16384, time stamp: 0x5215fa76
    Exception code: 0xe0434352
    Fault offset: 0x0000000000008384
    Faulting process id: 0x8d4
    Faulting application start time: 0x01cf96029eff97c7
    Faulting application path: C:\TVSUAuto.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 0503be2e-01f7-11e4-825d-5c514f0bf2b5

    Hi,
    That exception code indicates a .NET exception has been thrown and was not handled. You probably want to add some exception handling and logging code to your application so you get an idea about what happens. Otherwise you'll need to post your codes to oneDrive
    so that we can test it.
    Best Wishes!
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Event 1000, Application Error (Faulting application name: w3wp.exe - Faulting module name: KERNELBASE.dll)

    Hello Guys,
    While running a web application am getting an error like: Remote server not responding. Below are the details of event viewers which been captured at the same time when this error happened:
    Event 1000, Application Error
    Faulting application name: w3wp.exe, version: 7.5.7600.16385, time stamp: 0x4a5bd0eb
    Faulting module name: KERNELBASE.dll, version: 6.1.7600.16850, time stamp: 0x4e211da1
    Exception code: 0xe053534f
    Fault offset: 0x000000000000a88d
    Faulting process id: 0x%9
    Faulting application start time: 0x%10
    Faulting application path: %11
    Faulting module path: %12
    Report Id: %13
    Event 1001, Windows Error Reporting
    Fault bucket , type 0
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: w3wp.exe
    P2: 7.5.7600.16385
    P3: 4a5bd0eb
    P4: KERNELBASE.dll
    P5: 6.1.7600.16850
    P6: 4e211da1
    P7: e053534f
    P8: 000000000000a88d
    P9: 
    P10: 
    Attached files:
    C:\Windows\Temp\WERC9CD.tmp.WERInternalMetadata.xml
    C:\Windows\Temp\WERC9CE.tmp.hdmp
    C:\Windows\Temp\WEREE30.tmp.mdmp
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportQueue\AppCrash_w3wp.exe_30877924d6b2c607fe88a8718915f25fb79093_cab_e905f2b0
    Analysis symbol: 
    Rechecking for solution: 0
    Report Id: d46a6849-8f6a-11e1-98af-00215e6e4855
    Report Status: 4
    This is an priority issue which we are facing in IIS. IIS is configured for Framework 2.0 and underlying OS is - Windows
    Server 2008 R2 Standard.This issue is replicable and occurring frequently Please suggest how to resolve it. Any input related to above issue is appreciable.

    Please refer similar discussions and see if they help
    Faulting application name: w3wp.exe 
    http://telligent.com/support/communityserver/community_server_2008/f/288/t/1067447.aspx 
    Event ID: 1000, Faulting application w3wp.exe, faulting module unknown, 
    http://social.msdn.microsoft.com/forums/en-US/clr/thread/9be88a2f-c8cc-4a73-9371-45ab73982123
    For IIS related queries, please post them in IIS forum - http://forums.iis.net/
    A UNIVERSE without WINDOWS is CHAOS !
    This posting is provided "AS IS" with no warranties or guarantees and confers no rights.
    About Me !!!

  • Mmc is getting crashed with error Faulting module name: KERNELBASE.dll on windows server 2012 r2

    I am facing issue with BizTalk admin console, getting below error, 
    i  thought it will be due to sql server or WMI so restarted sql services as well WMIS services but no luck. restarted Distributed transaction services as well as restarted machine but it did not solve.
    also when i tried with other MMC's i am getting below error in event viewer,
    Faulting application name: mmc.exe, version: 6.3.9600.16384, time stamp: 0x52158765
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.17055, time stamp: 0x532943a3
    Exception code: 0xe0434352
    Fault offset: 0x00011d4d
    Faulting process id: 0x215c
    Faulting application start time: 0x01d004a6e0c31506
    Faulting application path: C:\windows\SysWOW64\mmc.exe
    Faulting module path: C:\windows\SYSTEM32\KERNELBASE.dll
    Report Id: 3d994be7-709f-11e4-80ee-00505689506c
    Faulting package full name: 
    Faulting package-relative application ID:
    Application: mmc.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Reflection.TargetInvocationException
    Stack:
       at Microsoft.ManagementConsole.Internal.SnapInMessagePumpProxy.OnThreadException(System.Object,
    System.Threading.ThreadExceptionEventArgs)
       at System.Windows.Forms.Application+ThreadContext.OnThreadException(System.Exception)
       at System.Windows.Forms.Control.WndProcException(System.Exception)
       at System.Windows.Forms.Control+ControlNativeWindow.OnThreadException(System.Exception)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
       at System.Windows.Forms.UnsafeNativeMethods.IntDestroyWindow(System.Runtime.InteropServices.HandleRef)
       at System.Windows.Forms.UnsafeNativeMethods.DestroyWindow(System.Runtime.InteropServices.HandleRef)
       at System.Windows.Forms.NativeWindow.DestroyHandle()
       at System.Windows.Forms.Control.DestroyHandle()
       at System.Windows.Forms.Control.Dispose(Boolean)
       at Microsoft.BizTalk.Administration.SnapIn.Forms.GroupHub.OperationsCtrl.Dispose(Boolean)
       at System.ComponentModel.Component.Dispose()
       at Microsoft.ManagementConsole.FormView.InternalShutdown()
       at Microsoft.ManagementConsole.View.HandleShutdownRequest(Microsoft.ManagementConsole.Internal.IRequestStatus)
       at Microsoft.ManagementConsole.View.ProcessRequest(Microsoft.ManagementConsole.Internal.Request)
       at Microsoft.ManagementConsole.ViewMessageClient.ProcessRequest(Microsoft.ManagementConsole.Internal.Request)
       at Microsoft.ManagementConsole.Internal.IMessageClient.ProcessRequest(Microsoft.ManagementConsole.Internal.Request)
       at Microsoft.ManagementConsole.Executive.RequestStatus.BeginRequest(Microsoft.ManagementConsole.Internal.IMessageClient,
    Microsoft.ManagementConsole.Internal.RequestInfo)
       at Microsoft.ManagementConsole.Executive.SnapInRequestOperation.ProcessRequest()
       at Microsoft.ManagementConsole.Executive.Operation.OnThreadTransfer(Microsoft.ManagementConsole.Executive.SimpleOperationCallback)
       at System.RuntimeMethodHandle.InvokeMethod(System.Object, System.Object[], System.Signature,
    Boolean)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(System.Object, System.Object[], System.Object[])
       at System.Reflection.RuntimeMethodInfo.UnsafeInvoke(System.Object, System.Reflection.BindingFlags,
    System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
       at System.Delegate.DynamicInvokeImpl(System.Object[])
       at Microsoft.ManagementConsole.Executive.DelegateMessage.OnExecute()
       at Microsoft.ManagementConsole.Executive.Message.Execute()
       at Microsoft.ManagementConsole.Executive.SnapInThread.DispatchPendingSnapInMessages()
       at Microsoft.ManagementConsole.Executive.SnapInThread.OnDataReadyAsync(System.Object, System.EventArgs)
       at Microsoft.ManagementConsole.Executive.MmcThreadMessageWindow.WndProc(System.Windows.Forms.Message
    ByRef)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
       at System.Windows.Forms.Application+ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr,
    Int32, Int32)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoopInner(Int32, System.Windows.Forms.ApplicationContext)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoop(Int32, System.Windows.Forms.ApplicationContext)
       at System.Windows.Forms.Application.Run()
       at Microsoft.ManagementConsole.Internal.SnapInMessagePumpProxy.Microsoft.ManagementConsole.Internal.ISnapInMessagePumpProxy.Run()
       at Microsoft.ManagementConsole.Internal.ISnapInMessagePumpProxy.Run()
       at Microsoft.ManagementConsole.Executive.SnapInThread.OnThreadStart()
       at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
       at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback,
    System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback,
    System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback,
    System.Object)
       at System.Threading.ThreadHelper.ThreadStart()
    does any one face similar issue if yes can you please help me to solve this?
    Regards,
    Amit
    Regards, Amit More

    If its only this MMC might try them over here.
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=biztalkgeneral
    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.

  • Application Error Faulting Application RWRUN60.EXe

    Dear Guru,
    Platform : WINDOWS 2003 Server + ORACLE APPS FINANCIAL
    We frequently receiving the following error message in Windows 2003 Event Viewer in Error category:
    _{color:#ff0000}"Faulting Application RWRUN60.EXE, version 3.0.0.0, faulting module ORA805.DLL, version 0.0.0.0, fault address 0x000b4fa4"_
    _{color}_
    This happens when report server try to send alert emails.
    Please help us..
    Regards

    * change: Tried recreating a service using Rapid install scripts
    * cause: File ORA805.dll has become corrupt.
    fix:
    1. Rename the existing copy of ORA805.dll as ORA805_old.dll
    2. Locate a good copy of ORA805.dll in another instance.
    Copy the good ORA805.dll file, to the location shown in the core dump file.

  • Application ERROR - Fault message Error in Inbound ABAP Proxy !!

    Hi Folks,
    I have got application error while doing in Inbound proxy scenario. This inbound message is ProductActivityNotification, this message has got fault message. This message is triggering for faults. How to control this fault message or how to divert this error as an alert to RWB. Please give me your ideas step by step. Error as follows:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!-- Call Inbound Proxy
    -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
    <SAP:Category>Application</SAP:Category>
    <SAP:Code area="ABAP">APPLICATION_ERROR</SAP:Code>
    <SAP:P1 />
    <SAP:P2 />
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText />
    <SAP:ApplicationFaultMessage namespace="http://sap.com/xi/SAPGlobal20/Global">ProductActivityNotificationFault</SAP:ApplicationFaultMessage>
    <SAP:Stack>Application has thrown an exception</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    Please find the fault message has got following values
    <?xml version="1.0" encoding="utf-8" ?>
    - <n0:ProductActivityNotificationFault xmlns:n0="http://sap.com/xi/SAPGlobal20/Global" xmlns:prx="urn:sap.com:proxy:RAS:/1SAI/TAS653D9A9CCD9A8EF3AF9B:701:2009/02/10">
    - <standard>
    <faultText>Proxy Class (Generated)</faultText>
    - <faultDetail>
    <severity>information</severity>
    <text>Start of inbound processing: ProductActivityNotification (ID )</text>
    <id>000(/SCA/BIF_PROACT)</id>
    </faultDetail>
    - <faultDetail>
    <severity>error</severity>
    <text>Message ID is missing</text>
    <id>032(/SCA/BIF_MI)</id>
    </faultDetail>
    </standard>
    </n0:ProductActivityNotificationFault>
    Will you please focus bit light on this error message please?
    Regards
    San

    Hi,
    Check your Source data is correct or not..beofr executing your scenario execute your inboud Proxy with valid data ,
    check below blog...
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    Regards,
    Raj

  • JVM DLL error : faulting module jvm.dll, version 27.6.5.32,

    Hi,
    I'm running WL in windows server and beasvc.exe is failing with this message.
    "Faulting application beasvc.exe, version 1.0.3.9, faulting module jvm.dll, version 27.6.5.32, fault address 0x0001e194"
    Any help please?
    thanks,
    Kam

    Hi,
    I'm running WL in windows server and beasvc.exe is failing with this message.
    "Faulting application beasvc.exe, version 1.0.3.9, faulting module jvm.dll, version 27.6.5.32, fault address 0x0001e194"
    Any help please?
    thanks,
    Kam

  • Windows Server 2008 R2 - Multiple application errors in module MSVCR90.DLL

    I'm having some trouble with one of the terminal servers that I administrate, lately there have been a large number of application errors reported by users. Looking at the logs they all have in common that they report MSVCR90.DLL as the faulty module, with
    some of the applications throwing errors being fixmapi.exe, iexplore.exe & acrord32.exe.
    I did some searching around and tried the usual things of uninstalling and reinstalling the mvc redist, however it doesn't appear to have made much of a difference. I configured capture of user-mode dumps as mentioned in http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/repeated-appcrash-errors-across-many-applications/18ee194c-56dd-4909-abed-e563de11713b
    which seems to be recommended as a way to find the real faulty module that is behind all the problems, so far I've generated one dumpfile at least for a fixmapi.exe but I am not sure how to parse it, does anyone have any idea?

    Hi DialectEmil,
    Would you please let me know whether install all necessary updates on the problem computer? Please run
    sfc /scannow command to scan all protected system files. In addition, please perform a
    clean boot and check if this issue still exist.
    Please also refer to following article and check if help you to troubleshoot application crashes.
    Basic Debugging of an Application Crash
    If any update, please feel free to let me know.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Faulting module name: cslibu-3-0.dll, version: 13.0.1.220

    We are using a VB.NET application developed in .NET Framework 4.0 in conjunction with Crystal 2011 runtime SP2 downloaded from the link below:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_1.zip
    Every so often, our application crashes and the following error is logged in the Event Viewer:
    6:43:58 #1000 Application Error
    Faulting module name: cslibu-3-0.dll, version: 13.0.1.220, time stamp: 0x4d6fe1eb
    Exception code: 0xc0000005
    Fault offset: 0x000a08f9
    Faulting process id: 0x1278
    Faulting application start time: 0x01cce1201c08f401
    Faulting module path: C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\cslibu-3-0.dll
    Are  there any other logs we can check to determine the cause of this error or has anyone seen anything like this before? There is no pattern that we can determine. Any help would be greatly appreciated.

    Please note;
    In your original post you say (bolding inserted by me):
    We are using a VB.NET application developed in .NET Framework 4.0 in conjunction with Crystal 2011 runtime SP2 downloaded from the link below:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_1.zip
    Then note:
    In my reply I made it clear that you are not on SP2, you are on SP1, thus the 13_0_1. above. The sticky thread has links to SP2 install as well as runtimes. Until you tell me that you are actually working with SP2 files (please supply the version of the crpe32.dll) there is no point going any further.
    - Ludek

  • LabVIEW Application Builder Crash : ntdll.dll faulting module

    Hello guys,
    I'm currently experiencing problems while building my project (LV2012 (32 bits) , Windows 7). At the very end of application build, LabVIEW crashes with no explanation (Screenshot in french, sorry)
    Windows error logging follows :
    Event 1000 Application Error
    Faulting application name LabVIEW.exe, version : 12.0.0.4024, time stamp : 0x4fea600e
    Faulting module name : ntdll.dll, version : 6.1.7601.17725, time stamp : 0x4ec49b8f
    Exception code : 0xc0000374
    Fault offset : 0x000ce6c3
    Faulting process id : 0x16fc
    Faulting application start time : 0x01cda5350f41f87c
    Faulting application path : C:\Program Files (x86)\National Instruments\LabVIEW 2012\LabVIEW.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id : 8e5b1344-1128-11e2-97d8-c0f8dae81bad
    I had the same problem on LabVIEW 2011. I tried to build my application with another computer (also LV2012 32 bits and Windows 7 64 bits) and I do not have any error.
    What is wrong with my computer?
    For french people, topic in french
    Thank you for your help,
    Regards,
    Quentin
    Solved!
    Go to Solution.

    Solution found :
    -Uninstall all NI products
    -Clear registry keys related to LabVIEW
    -Delete National Instruments directory into Application Data
    -Reinstall LabVIEW

  • IIS charsh with error: Faulting application name: w3wp.exe

    Hi Team,Question
    I am new to Window Azure. Recently I encounter a issue on my production server, where my application hosted on Azure server was automatically getting down in every 2 Hrs,when i have checked the error logs I got the error:
    Faulting application name: w3wp.exe,version: 8.5.9600.16384,time stamp: 0X5215df96
    Please help me out to solve the problem.
    Thanks,
    Ashwin
    Thanks Ashwin

    Hi,
     Thanks for Posting.
     Please refer to the following thread which talks about the same error, and suggests analyzing the crash dump  
    https://social.msdn.microsoft.com/Forums/en-US/5df570d8-1f19-47b3-9d76-e737e858aa6d/iis-crash-with-faulting-application-w3wpexe-faulting-module-mscorwksdll-version-205072742?forum=clr
      If this does not help, i would suggest to get a Support Ticket created so that an engineer from the TechSupport team can personally look into this issue. you can create a support ticket from within the management portal or using the following link.
      http://azure.microsoft.com/en-us/support/options/
      Regards,
      Nithin.Rathnakar.
      **There is Duplicate thread for this issue, which i will be closing marking the link for this thread.
      

  • Faulting module orageneric11.dll

    OS Version: Windows Server 2008.
    The oracle client is version 11.2.0.1.
    On running my .Net application with Oracle database, it throws error:
    faulting module orageneric11.dll, version 11.2.0.1, time stamp 0x4bb5eb36, exception code 0xc0000005, fault offset 0x000fa85d, process id 0x68a0, application start time 0x01cb74dbfd95fcf7.
    I've googled it as well but not much information is available related to this. I do not belive this is a corrupted installation of the Oracle client as it would be affecting 40 users logging onto this citrix server. Our monitoring solution has only picked up one occurrence of this error. Please guide me to resolve this.

    I also got runtime errors from orageneric11.dll
    Work envirenment: Microsoft Visual Studio 2010 in Window 7
    Language: C/C++/MFC
    Oracle client: C:\oracle11\product\11.2.0\client_1\oci
    ATL interface: otlv4.h
    Runtime exception: Stack location orageneric11.DLL!03a86eb5()
    Edited by: user878158 on May 2, 2012 6:09 AM

Maybe you are looking for

  • My iPod will not sync to my computer. Help!

    I just got a new 30gb iPod and uploaded the music off of my sister's laptop. Now, when I try to upload the music off of my computer, it will not allow me to do it. I don't know what the problem is because it used to let me upload from both computers.

  • RMI Works In One Direction, But Not When Config Flipped

    Hi All, Interesting problem: I have an SSL-RMI server, running either as an application, or as a service using JS Wrapper, on PC-A, correctly serving content to a client running on PC-B. But when I flip the configuration, such that PC-B is now hostin

  • Creating SELECT query between 3 tables

    Hi there, Im trying to create a SELECT query between 3 tables and it is driving me round the bend. I have 3 tables connected together which are: MODUL modulid modulname modulevel STUDENT studentid surname inits s e x phone email logon STUDREGOCCUR mo

  • Accessing purchased songs after Dell System Restore

    I recently had to restore my computer to factory settings, and had to re-download iTunes on my computer. I found that when I tried to listen to songs purchased at the music store, the computer was not authorized, so I had to use one of my five extra

  • Unusual New Error Message

    I am working with Final Cut Pro 6 (Studio 2) on a Mac with OS X (10.5.6), and for over a year now, I have archived master copies of client projects by: - "Export > Quicktime Movie" - Leaving all settings at default, including NOT checking "Make Movie