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]

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

  • 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.

  • 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

  • Windows 8.1 - "explorer.exe - Application Error" during shutdown process

    Hi,
    After I upgrade to Window 8.1, i get "explorer.exe - Application Error" dialog every shutdown.
    It contain: "The instruction at 0x74fd40b9 referenced memory at 0x00000000. The memory could not be read.
    Click OK to terminate the program
    Click on CANCEL to debug the program."
    (Sorry, my account can't post link or image. So i can't show you the picture capture)
    When I had used Window 8, it didn't happen.
    Please help me to solve this problem.
    My machine is: HP ENVY DV6 7214nr.
    Thanks,
    Tan Nguyen
     

    I am having the issue when shutting down windows 8.1.  Did not occur before the update with Windows 8.  At shut down, Pop up displays for only a few seconds.  HP Envy I7. 
    Explorer.exe - Application Error
    The instruction at 0xa73640b9 referenced memory at 0x00000000. The memory could not be read.
    Click on OK to termintate the program.
    When I start the PC, and shut it down after a few minutes of running, this error does not occur.  Only after the PC has been on for awhile and I have used several programs.
    And for those of us unfamiliar with creating a Reg entry, the instruction are not very clear.  Once I create this text file...what do I call it and where and how do I insert it....?
    UPDATE Problem fixed:  I followed the suggestions of a Windows 8 clean boot from Microsoft.
    After going through the running applications one by one, I finally isolated the problem on my HP Envy to the Bluetooth Application.  I disabled the Bluetooth task in Startup and made sure it did not load. Afterward, no more Explorer.exe - Application
    Error when I shut down the PC.  This program is a Ralink Bluetooth driver and exe. program running on startup.  I am not sure if HP has offered an updated driver for it as of yet..... 

  • Proxy Desktop: Explorer.EXE - Application Error

    It appears that the installation of Media Manager 9 caused the following error message within Windows XP, after viewing My Network Places:
    >   Proxy Desktop: Explorer.EXE - Application Error
    >   The instruction at "0x01d3b865" referenced memory at "0x00000008". The memory could not be "read".
    The problem occurred on my machine when I installed BlackBerry User Tools, which installed two different software programs:
    >   BlackBerry Desktop Manager, version 4.2.2.14 [Apr 26 2007], and
    >   Media Manager 9, also known as Roxio Easy Media Creator 9 (Build 910B72J ENU)
    Once I removed Media Manager 9, the problem disappeared, that is, no more error message after viewing My Network Places, which used to give the error message above.
    Note. My system also has a regular installation of Roxio Easy Media Creator 9, which came pre-installed on the machine, but this name only appears on the quickly-passing splash-screen; it is titled Roxio Creator DE in the user interface. The help file calls it Roxio Creator DE, Version 9.1.573 SP1. When I was installing Media Manager 9 as a part of the BlackBerry User Tools installation, I had to tell the installation program not to uninstall the existing sub-programs of Roxio Easy Media Creator 9. I wonder if the problem could somehow derive from a conflict between these two installations.
    Also see my post at http://www.pcanswers.co.uk/node/2506
    Message Edited by Matthew3 on 08-17-2009 12:13 PM

    Thank you for your response, OzBBerry42.
    Do you know for sure that the problem is a conflict between the pre-existing installation of Roxio Easy Media Creator 9 and the partial installation of Media Manager 9 (a.k.a. Roxio Easy Media Creator 9) that I allowed when I installed BlackBerry User Tools? If so, please comment further on your findings.
    If my conflict hypothesis is is true, then this post is the only one on the Internet that accurately addresses this problem. Others who have experienced this error message apparently do not know that their some-time-in-the-past installation of BlackBerry User Tools caused this error when they eventually decided to browse shared directories over their LAN.
    Currently, I am only running the pre-existing installation of Roxio Easy Media Creator 9 with the BlackBerry User Tools installation of BlackBerry Desktop Manager. Therefore, I do not get this error message anymore. However, it took many hours to isolate this problem. I decided not to invest anymore time into testing my conflict hypothesis. Have you or anyone else?
    I would like to see the technical department at BlackBerry comment on this issue.
    By the way, I am the administrator of the LAN system. I discovered this error on a user's computer. If these types of problems are going to be had with BlackBerry phones, I might decide to discourage their use and direct people to their competitors. A response to this issue from BlackBerry would help dissuade me. OzBBerry42, if you know how to get their attention, please do.

  • Explorer.exe Application Error

    Hi.
    (Sorry if this is in the wrong category.)
    Just today, I downloaded a Windows update(it said I had like 150+ things to install, so I did) Well, that's where my problem began. Once I did that, I turned my laptop on and right after I type my password in and click enter, I had an "explorer.exe"
    error pop up saying that the memory could not be read. The WHOLE screen is black, only my cursor was there. I couldn't see my desktop, taskbar, nothing. I could do CTRL+ALT+DEL to get into the task manager though.
    I have read literally EVERYTHING I could find on the internet, and nothing has solved my problem. It's quite tricky because most of what I have read has told me to boot in safe mode, safe mode with networking, and safe mode with command prompt, all to no
    avail. When I try, the same error pops up there too.
    I started up my computer and did F8 to get to the system repair, which also did not work. It said there was nothing wrong with it.
    I tried multiple system restore points, all which did not work. I got an error for all of them saying this: 
    System Restore failed to extract the original copy of the directory from the restore point.
    Source: %SystemRoot%\Registration
    Destination: ComPlusStaging
    I have tried to do the SFC /SCANNOW which said that there was nothing wrong with my computer.
    I'm completely out of ideas on how to fix this and I would really appreciate the help.
    Thanks in advance!

    After I clean install of Window 8.1, i get "explorer.exe - Application Error" dialog every shutdown.
    Hi,
    Did you mean that this problem occures as soon as Windows clean installed? If so, it may be Windows installation ISO or RAM problem. Since you said Windows 8 works normally, it should be Windows 8.1 ISO problem.
    However, if this problem occures after you install some applications, it should APP problem, not system.
    Roger Lu
    TechNet Community Support

  • Explorer.exe application error "Memory could not be written" ?! OS seems stuck now

    (Model # m6-k010dx) My new laptop after 13 months automatically updated from windows 8 to 8.1 after I had said 'no' as many times as it allowed. After the update my files are still on it and most things are there but it seems 'stuck' and the orange screen keeps flickering like start to desktop so fast you usually can't even click anything in time to open it before it switches. I was told that the drivers probably needed to be updated first (eventhough I am pretty sure I kept up with all my other updates that popped up the only one I postponed was 8.1) and that I should refresh it, so I lose my programs but keep my files. I'm so sad I now lost Photoshop cs6 and my prefered antivirus (webroot) But anyway back to 8.0, it functioned fine aside from annoying pop ups to install norton antivirus no thank you, i bought webroot again. no updates were available.
    I went to HP.com drivers update, searched for my pc and its correct update, and next thing I know is it's installing windows 8.1....??!
    So again when it's 'done' and reboots, the screens flicker forever. I shut down, restart, same. so I put it back to windows 8...it will install 8.1 on its own any day now.. Please help asap!!!
    Also forgot to mention when the screens are flickering, a few explorer exe application errors pop up on occaision. IE: "the instruction at 0xaa0c663c referenced memory at 0xaa0c663c. The memory could not be written. Click ok to terminate the program." was one the last time,
    and the time before it, the initial windows 8.1 update when I still had Webroot antivirus, the pop up said "the instruction at 0x9b63663c referenced memory at 0x9b63663c. The memory could not be written. Click ok to terminate the program." the other pop ups the initial time came from Webroot - IE: "This file is trying to install itself to start every time the computer turns on  C: /Windows/system32/DrvInst (dot) exe" and gives the options to block, allow once, or allow always.
    Another trying to install every time computer starts is "C: /WINDOWS/system32/wbem/WMIADAP (dot) EXE"
    and another is : "Process ID: 4244 
    Thread ID: 3460 
    Event Type: Registry 
    Access: Write
    Registry Key: /REGISTRY/MACHINE/SYSTEM/ControlSet001/Services/NDIS/IfTypes/131
    Value: IfUsedNetLuidIndices"
    I searched all of those but found nothing. How can I have a smooth update? THank you in advance

    Hi @ASAP666 ,
    Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP ENVY m6-k010dx Sleekbook and trying to update to Windows 8.1. Before updating did you make sure your system was up to date with Windows. Here is something from Microsoft that might help. 
    Looking into this I have found that it is a driver issue usually associated with USB devices.
    Please note remove any and all USB devices. Disconnect all non-essential devices, as these could cause some issues.
    Plug the power adapter directly into a functioning wall outlet. Do not plug it into a power strip, surge protector, or secondary power source as this could cause and issue.
    I recommend to do this update to disable your Anti Virus or Webroot temporarily to allow the update to go through.
    Please let me know how this goes.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Explorer.exe Application Error on shut down

    On shut down I am getting the following explorer.exe application error:
    The exception unknown software exception (0xc000042) occurred in the application at location 0x89087e03.  
    Click on OK to terminate the program
    How do I fix it?

    1. Try clean boot http://support.microsoft.com/kb/929135
    2. How does sustem respond when you shutdown with
    shutdown -s -f -t 0
    3. Try to pinpoint which program is causing problem by
    killing one by one (program or service) before shutdown.
    4. Reveal content of Event logs, namely errors and warnings
    5. When this phenomenon started?
    M.

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

    I developed a C# (Visual Studio) application in .NET Framework 4.0 in conjunction with SAP Crystal Reports Support Pack 9 msi
    The target platform on which reports creating problem is Windows 7 32-bit
    When I generate a report it is generating perfectly but when I try to generate the report again, the application crashes and the following error is logged in the Event Viewer:
    Faulting application name: TrackingApp.exe, version: 1.0.0.0, time stamp: 0x537a1687
    Faulting module name: cslibu-3-0.dll, version: 13.0.9.1312, time stamp: 0x53393fe8
    Exception code: 0xc0000005
    Fault offset: 0x00039a28
    Faulting process id: 0xf00
    Faulting application start time: 0x01cf7376d8df092d
    Faulting application path: C:\Program Files\Tracking System\Tracking System\TrackingApp.exe
    Faulting module path: C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\cslibu-3-0.dll
    Report Id: 24b4faea-df6a-11e3-8422-d067e51beb2a
    What should be the possible error. My report generation code is written in try catch block but it did not generate any exception but
    crashes my application
    Thanks in anticipation
    Regards
    Adeel Arshad

    Hi Adeel,
    Need more info.
    - What do you mean by generate the report? view, print, export?
    - Does this happen with single, a few or all reports?
    - If the issue is with some reports, what is different ion these reports as compare to other reports?
    - If all reports, could you reproduce the issue with a blank report? and with a report which has a single DB field?
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • 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.

  • 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.

  • 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 windows 8.1 during shutdown

    Hi , I had this error pop up on my computer everytime I shutdown my computer. It been about 2 weeks already I looked it up but I couldn't find anything about it 
    This instrution at 0x05be43c3 referenced memory at 0x00000000. The memory could not be read. Click on OK to terminate the program

    Captid, welcome to the forum.
    The problem that you are having seems to be caused by corrupted files.  It appears to happen when Win 8.0 is updated to Win 8.1.  I saw one person who said he did a System Recovery to return the computer to the original configuration with Win 8.0.  Then, reinstalled Win 8.1 and the problem no longer occurred.
    Please click the "Thumbs up + button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • 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 !!!

Maybe you are looking for

  • 10.5.2 iTunes on Windows 7 x64 bit laptop - Quick Time will play videos but not iTunes

    I'm hoping you can help, I've looked for a solution to this for a while now. I store my itunes library on an external hard drive. I completed a clean install of x64 bit Windows 7 on my laptop - all went perfectly. Downloaded and installed the 64 bit

  • Color StyleWriter 2400

    I just upgraded from OS9 to OSX 10.2. I have a Color SW2400 printer. When I had OS9 I had to install the driver for SW2500, but that worked fine. Now I don't know where to look and what to set to get my computer to print. I tried installing the SW250

  • Computer refuses to shut down/log off

    I have a MacBook running the latest version of OS X and it's exhibiting some very peculiar behavior. As the title suggests, it refuses to shut off or allow users to log off, furthermore, some applications don't open or work properly. I ran a verify d

  • How to debug workflow

    hi Experts, I am using wcc11.1.1.7, I know there is a way for debugging service as adding a parameter of &IsPageDebug=1 in url, debug menu will show on the right down of IE, the question is for js log, how to produce js log? is it a log4javascript or

  • I have no navigation bar even though I have checked it in view box.

    where the navigation toolbar should be, the google toolbar have stretched from under the bookmarks tab to the far right. I can't put in an address, but I can goggle site, help. I just installed a new OS and have been a user of Firefox