Exception Not Handled.

Hi all,
Can you please explain why the exception is not handled even thought i have handled it by mentioning others.
declare
procedure empnetsal (vempno emp.empno%type) is
netsal number;
begin
select sal into netsal from emp where empno = vempno;
netsal := netsal+(netsal* 0.01)+netsal;
dbms_output.put_line (netsal);
exception
when no_data_found then
dbms_output.put_line ('Such employee does not exist');
when others then
dbms_output.put_line ('Exception handled by Others handler');
end;
begin
empnetsal ('string');
empnetsal (7566);
empnetsal (7788);
end;
regards,
Sri Ram.

The Exception handler is inside the Local Procedure and not in the anonymous block.
The block errors out before it enters into the procedure bacuase of wrong datatype.
Catching the error in the Block will solve your problem.
SQL>declare
  2  procedure empnetsal (vempno emp.empno%type) is
  3  netsal number;
  4  begin
  5  select sal into netsal from emp where empno = vempno;
  6  netsal := netsal+(netsal* 0.01)+netsal;
  7  dbms_output.put_line (netsal);
  8  exception
  9  when no_data_found then
10  dbms_output.put_line ('Such employee does not exist');
11  when others then
12  dbms_output.put_line ('Exception handled by Others handler');
13  end;
14  begin
15  empnetsal ('string');
16  empnetsal (7566);
17  empnetsal (7788);
18  EXCEPTION
19     WHEN OTHERS THEN
20     dbms_output.put_line ('Exception handled by OUTER Others handler');  
21  end;
22  /
Exception handled by OUTER Others handler
PL/SQL procedure successfully completed.Regards
Arun

Similar Messages

  • Exception not handled by the Collaxa Cube system

    Hi!
    i have plsql procedure and i published it as a web service using JDev 10.1.3, web service is deployed on OC4J 10.1.3. When i call it directly, everything works fine. When i make a BPEL process jast wrapping this web service (receive, assign, invoke, assign, reply - that`s all) the web service is invoked fine without error, but then error appears in the bpel process:
    Exception not handled by the Collaxa Cube system. An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "java.lang.NullPointerException at com.collaxa.cube.engine.delivery.DeliveryHelper.saveAttachments(DeliveryHelper.java:436) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.saveAttachments(WSIFOperation_ApacheAxis.java:3521) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.populateOutMsgParts(WSIFOperation_ApacheAxis.java:1403) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.buildResponseMessages(WSIFOperation_ApacheAxis.java:1303) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeAXISRPCStyle(WSIFOperation_ApacheAxis.java:1815) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1613) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.executeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1083) at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:452) at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:327) at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:189) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:601) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:317) at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:188) at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3408) at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1836) at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:166) at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:252) at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5438) at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1217) at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:120) at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:153) at ICubeEngineLocalBean_StatelessSessionBeanWrapper0.syncCreateAndInvoke(ICubeEngineLocalBean_StatelessSessionBeanWrapper0.java:486) at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:520) at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:435) at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:132) at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:101) at IDeliveryBean_StatelessSessionBeanWrapper22.request(IDeliveryBean_StatelessSessionBeanWrapper22.java:479) at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:120) at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:70) at _ngDoInitiate._jspService(_ngDoInitiate.java:289) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824) at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:121) at com.evermind.server.http.EvermindPageContext.include(EvermindPageContext.java:267) at _displayProcess._jspService(_displayProcess.java:792) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330) at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:222) at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:152) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Thread.java:534) ". Exception: java.lang.NullPointerException Handled As: com.collaxa.cube.CubeException
    i found similar problem calling axis web service, but this web service runs on OC4J ... any suggestions what to do?
    Thanks,
    Tomas

    User,
    I'd probably try the [url http://forums.oracle.com/forums/forum.jspa?forumID=212]BPEL Forum for this one.
    Regards,
    John

  • Macbook pro running windows 8.1 system thread exception not handled

    Running Windows 8.1on MacBook Pro with dual operating system. Get BSOD on boot up with following message - system thread exception not handled but no error code.  Have checked drivers all seem to be updated. Ran fine for a few weeks but Is happening daily also external speakers are not working - please help.

    Was W8.1 installed using Bootcamp? Are BC drivers installed? What year/model is the MBP?

  • Fail to upgrade my laptop to Windows 10 due to :"system thread exception not handled ndis.sys"

    Hi,I am trying to upgrade my Toshiba satellite Z30 laptop from windows 8.1 to windows 10.every time i try( and i tired more than 8 times already), it goes all the way to finishing installing the drivers and then after the auto reboot it comes up with a :"system thread exception not handled ndis.sys" error. at the second boot phase.I have an Intel I218V network adapter and an Intel(R) Dual Band Wireless-AC 3160.I tries upgrading them manually to a windows 10 compatible driver before the install but still no success.I also tried a clean booot and disabling both adapters before upgrading.does anyone have an additional idea of how to solve this problem? thanks Amose

    My many Win 10 install attempts have failed similarly. In the final phase of install during "Configuring Settings" I get the error message: "System Thread Exception Not handled...."  I'm not sure if it reads, "ndis.sys" at the end. The message doesn't remain long.I have a Satellite L355-S7905 with Windows 7 Home Premium. 

  • Enabled Hyper-V causes "System thread exception not handled" BSOD in builds 10041 and 10049

    I had a Windows 10 TP build 9926 installation with Visual Studio 2013 Community Edition installed, when build 10041 was released Windows Update tried to install it but after restart it got BSOD with "System thread exception not handled" text and
    reverted back to 9926 with error code 0xC1900101-0x40017. I tried update from ISO, got the same BSOD. Tried clean installation, it worked. 
    I decided to install software and restart the system after each installation and discovered that installing Visual Studio 2015 CTP6 caused BSOD after restart if and only if emulators were included. Installation of  Visual Studio 2015 CTP6 without emulators
    and then installation of Tools for Windows 10 also caused BSOD with "System thread exception not handled" error after restart. 
    So I thought that it was Hyper-V related and disabled hardware virtualisation in BIOS settings. It worked, system successfully booted, but, of course, Tools for Windows 10 setup showed up and told me about fail in UAP for Windows Phone package.
    So, my hardware is Gigabyte GA-A75N-USB3 motherboard with AMD A8-3870 APU with integrated graphics, Intel SSDSA2CW080G3 80GB SSD and 8 GB RAM.
    Steps to reproduce are to enable "Virtualisation" item in BIOS settings, install Windows 10 Technology Preview Build 10041, install Visual Studio 2015 CTP6, install Visual Studio Tools for Windows 10 Preview, restart the system and
    see blue screen with white text of description of "System thread exception not handled" error.

    Same issue, MSI A75MA-G55 AMD Fusion Socket FM1 with A8-3850 APU, 16GB RAM.  Hyper-V worked in 9926, but broke in 10041 and remains broken in 10049.  I have found that if you get in this BSOD loop, you can boot to Safe Mode and Un-install Hyper-V
    to recover.  10041 was an update to 9926, and 10049 was a clean install.

  • Invoke Error - ORABPEL-00000 Exception not handled by the Collaxa

    Hi,
    We have a BPEL process that is involking a stubbed .net service which we are trying to simulate using a dummy Sync BPEL process to test the stubbed service. When we add the wsdlRuntimeLocation=DummyBPELProcess.wsdl we get the error ORABPEL-00000 Exception not handled by the Collaxa Cube system. An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "java.lang.NullPointerException at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:441) at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:285 .
    The input and output messsages and the namespace for the stubbed .net service and the dummy bpel process is the same.
    When we involke the Dummy BPEL process thru a another BPEL process the message looks
    <?xml version="1.0" encoding="UTF-8" ?><part><messages><Invoke_1_PersistSalesOrder_InputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="messagePart"><GlobalProductionOrderRequest xmlns:ns="http://schemas.xxx.com/it/fulfillment/RoutingSlip/1.0" xmlns:ns1="http://schemas.xxx.com/it/fulfillment/GlobalProductionOrder/1.0" xmlns="http://schemas.xxx.com/it/fulfillment/GlobalProductionOrder/1.0">
    <ns:RoutingSlip Sender="string" Receiver="string" Direction="RESPONSE" Type="string" MessageID="string" CorrelationID="string" CreateDate="2007-10-26T01:36:28" CreateHost="string" Instance="string"/>
    whereas the invoke message to the stubbed .net service looks like
    <?xml version="1.0" encoding="UTF-8" ?><part><messages>*<input>*<persistGPOInputVar><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="messagePart"><input><GlobalProductionOrderRequest xmlns:ns="http://schemas.xxx.com/it/fulfillment/RoutingSlip/1.0" xmlns:ns1="http://schemas.xxx.com/it/fulfillment/GlobalProductionOrder/1.0" xmlns="http://schemas.xxx.com/it/fulfillment/GlobalProductionOrder/1.0">
    <ns:RoutingSlip Sender="string" Receiver="string" Direction="RESPONSE" Type="string" MessageID="string" CorrelationID="string" CreateDate="2007-10-26T01:36:28" CreateHost="string" Instance="string"/><!--Optional:--><ns1:BackFed>true</ns1:BackFed>
    Is the additional <input> tag the issue ? Why is it coming for the .net stub and not the bpel process.

    Resolved after server Restart

  • Application exception not handled

    I have a VB.NET winform app that I created that uses an unmanaged ActiveX control for knobs and sliders (cwui.ocx).
    I created a setup project for it and it installs fine on my machine. The app runs fine too.
    When I run it on another machine it installs fine, but when I run the program I get this error:
    MyApp.exe - Common Language Runtime Debugging Services
    Application has generated an exception that could not be handled.
    Process id=0x11c(284), Thread id=0x68(104).
    Click OK to terminate the application.
    Click CANCEL to debug the application.
    Any ideas???

    My first guess would be that you did not include the CWUI_OCX.msm merge module in your setup project. Since the OCX is installed on your development machine it will work fine, but without installing it on the deployment machine you will get errors.
    The help topic:
    ms-help://NI.MeasurementStudio/MStudioMain/static/Distributing_MStudio_Apps.html
    Should explain.
    Jeff

  • I need help with exception not handled bluescreen.

    I've been getting bluescreens for awhile now, and have been doing research to read minidump files to locate the problem and try fixing but they still persist.Crash Dump Analysis provided by OSR Open Systems Resources, Inc.
    Online Crash Dump Analysis Service
    See http://www.osronline.com for more information
    Windows Server 2008/Windows Vista Kernel Version 6002 (Service Pack 2) MP (4 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 6002.18881.amd64fre.vistasp2_gdr.130707-1535
    Machine Name:
    Kernel base = 0xfffff800`01e18000 PsLoadedModuleList = 0xfffff800`01fdce30
    Debug session time: Sat Aug 30 11:37:14.252 2014 (UTC - 4:00)
    System Uptime: 0 days 0:40:21.125
    * Bugcheck Analysis *
    INTERRUPT_EXCEPTION_NOT_HANDLED (3d)
    Arguments:
    Arg1: 0000000000000000
    Arg2: 0000000000000000
    Arg3: 0000000000000000
    Arg4: fffffa6001385d1b
    Debugging Details:
    TRIAGER: Could not open triage file : e:\dump_analysis\program\triage\modclass.ini, error 2
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0x3D
    PROCESS_NAME: Wow-64.exe
    CURRENT_IRQL: 2
    EXCEPTION_RECORD: fffffa60005fec28 -- (.exr 0xfffffa60005fec28)
    ExceptionAddress: fffffa6001385d1b (USBPORT!USBPORT_Core_UsbDoneDpc_Worker+0x0000000000000167)
    ExceptionCode: c000001d (Illegal instruction)
    ExceptionFlags: 00000000
    NumberParameters: 0
    TRAP_FRAME: fffffa60005fecd0 -- (.trap 0xfffffa60005fecd0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=00000000ffffffff rbx=0000000000000000 rcx=fffffa8009e161a0
    rdx=000000004f444648 rsi=0000000000000000 rdi=0000000000000000
    rip=fffffa6001385d1b rsp=fffffa60005fee60 rbp=fffffa8009e16d78
    r8=000000004f444648 r9=0000000000000002 r10=0000000000000000
    r11=000000000000000d r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    USBPORT!USBPORT_Core_UsbDoneDpc_Worker+0x167:
    fffffa60`01385d1b f00fc14310 lock xadd dword ptr [rbx+10h],eax ds:00000000`00000010=????????
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80001e6eeee to fffff80001e6f150
    STACK_TEXT:
    fffffa60`005fdc58 fffff800`01e6eeee : 00000000`0000003d 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KeBugCheckEx
    fffffa60`005fdc60 fffff800`01e67648 : 00000000`0000040e fffff800`01ee48a9 fffffa80`08c43c20 fffffa60`0f3db000 : nt!KiBugCheckDispatch+0x6e
    fffffa60`005fdda0 fffff800`01e9aacd : 00000000`00000000 fffff800`01e18000 fffffa60`0f3e4000 fffff800`02019be8 : nt!KiInterruptHandler+0x28
    fffffa60`005fddd0 fffff800`01e9ad8f : fffffa60`00000001 00000000`00000001 fffff800`00000000 fffffa60`0f3e3c20 : nt!RtlpExecuteHandlerForException+0xd
    fffffa60`005fde00 fffff800`01ea8522 : fffffa60`005fec28 fffffa60`005fe600 fffffa60`00000000 0000057f`f5f508d8 : nt!RtlDispatchException+0x22f
    fffffa60`005fe4f0 fffff800`01e6efa9 : fffffa60`005fec28 fffffa80`09e161a0 fffffa60`005fecd0 fffffa80`09e16050 : nt!KiDispatchException+0xc2
    fffffa60`005feaf0 fffff800`01e6d4c3 : fffffa60`005fecd0 fffffa60`061db002 fffffa80`55706d00 fffffa60`00000000 : nt!KiExceptionDispatch+0xa9
    fffffa60`005fecd0 fffffa60`01385d1b : fffffa80`4b6f6d74 00000000`00025e3f fffffa80`09e161a0 fffffa80`09e16050 : nt!KiInvalidOpcodeFault+0xc3
    fffffa60`005fee60 fffffa60`013721a7 : fffffa80`31656e44 fffffa60`32656e44 fffffa80`09e16d78 fffffa80`33656e44 : USBPORT!USBPORT_Core_UsbDoneDpc_Worker+0x167
    fffffa60`005feef0 fffff800`01e73367 : fffffa80`09e16d90 fffffa60`34776478 fffffa60`0f3e3ca0 fffffa60`019db580 : USBPORT!USBPORT_Xdpc_Worker+0x26f
    fffffa60`005fef40 fffff800`01e71c35 : fffffa60`01371f38 fffffa60`019d8180 fffffa60`0f3e3ca0 fffffa80`07cfcc00 : nt!KiRetireDpcList+0x117
    fffffa60`005fefb0 fffff800`01e71a47 : fffffa80`07cfcc00 fffff800`020fe9d4 fffffa60`00000001 00000000`00000000 : nt!KyRetireDpcList+0x5
    fffffa60`0f3e3be0 fffff800`01eb7c33 : 00000000`00000000 fffff800`01e677c9 00000000`00000000 fffffa60`0f3e3ca0 : nt!KiDispatchInterruptContinue
    fffffa60`0f3e3c10 fffff800`01e677c9 : 00000000`00000000 fffffa60`0f3e3ca0 00000000`00da7a64 00000000`00000000 : nt!KiDpcInterruptBypass+0x13
    fffffa60`0f3e3c20 00000001`3f607849 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiChainedDispatch+0x179
    00000000`0021ecf0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x1`3f607849
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    fffffa60`01385d1b f00fc14310 lock xadd dword ptr [rbx+10h],eax
    SYMBOL_STACK_INDEX: 8
    SYMBOL_NAME: USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: USBPORT
    IMAGE_NAME: USBPORT.SYS
    DEBUG_FLR_IMAGE_TIMESTAMP: 51ce4591
    FAILURE_BUCKET_ID: X64_0x3D_USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    BUCKET_ID: X64_0x3D_USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    Followup: MachineOwner
    Crash Code Links
    Loaded Module List
    start end module name
    fffff800`01e18000 fffff800`0232e000 nt ntkrnlmp.exe
    fffff800`0232e000 fffff800`02374000 hal hal.dll
    fffff960`00070000 fffff960`0032b000 win32k win32k.sys
    fffff960`004f0000 fffff960`004fa000 TSDDD TSDDD.dll
    fffff960`00620000 fffff960`00631000 cdd cdd.dll
    fffff960`00850000 fffff960`008b1000 ATMFD ATMFD.DLL
    fffffa60`0060e000 fffffa60`00618000 kdcom kdcom.dll
    fffffa60`00618000 fffffa60`0062c000 PSHED PSHED.dll
    fffffa60`0062c000 fffffa60`00689000 CLFS CLFS.SYS
    fffffa60`00689000 fffffa60`0073b000 CI CI.dll
    fffffa60`0073b000 fffffa60`007fd000 Wdf01000 Wdf01000.sys
    fffffa60`0080e000 fffffa60`0081e000 WDFLDR WDFLDR.SYS
    fffffa60`0081e000 fffffa60`00874000 acpi acpi.sys
    fffffa60`00874000 fffffa60`0087d000 WMILIB WMILIB.SYS
    fffffa60`0087d000 fffffa60`00887000 msisadrv msisadrv.sys
    fffffa60`00887000 fffffa60`008b7000 pci pci.sys
    fffffa60`008b7000 fffffa60`008cc000 partmgr partmgr.sys
    fffffa60`008cc000 fffffa60`008cf400 compbatt compbatt.sys
    fffffa60`008d0000 fffffa60`008dc000 BATTC BATTC.SYS
    fffffa60`008dc000 fffffa60`008f0000 volmgr volmgr.sys
    fffffa60`008f0000 fffffa60`00956000 volmgrx volmgrx.sys
    fffffa60`00956000 fffffa60`0095d000 pciide pciide.sys
    fffffa60`0095d000 fffffa60`0096d000 PCIIDEX PCIIDEX.SYS
    fffffa60`0096d000 fffffa60`00980000 mountmgr mountmgr.sys
    fffffa60`00980000 fffffa60`00988000 atapi atapi.sys
    fffffa60`00988000 fffffa60`009ac000 ataport ataport.SYS
    fffffa60`009ac000 fffffa60`009f3000 fltmgr fltmgr.sys
    fffffa60`00a0a000 fffffa60`00a1e000 fileinfo fileinfo.sys
    fffffa60`00a1e000 fffffa60`00a60000 MpFilter MpFilter.sys
    fffffa60`00a60000 fffffa60`00ae7000 ksecdd ksecdd.sys
    fffffa60`00ae7000 fffffa60`00b37000 msrpc msrpc.sys
    fffffa60`00b37000 fffffa60`00b90000 NETIO NETIO.SYS
    fffffa60`00b90000 fffffa60`00bde000 ahcix64s ahcix64s.sys
    fffffa60`00bde000 fffffa60`00bfb000 tdx tdx.sys
    fffffa60`00c0b000 fffffa60`00dce000 ndis ndis.sys
    fffffa60`00dce000 fffffa60`00dde000 umbus umbus.sys
    fffffa60`00dde000 fffffa60`00df6000 USBSTOR USBSTOR.SYS
    fffffa60`00e06000 fffffa60`00f79000 tcpip tcpip.sys
    fffffa60`00f79000 fffffa60`00fa5000 fwpkclnt fwpkclnt.sys
    fffffa60`00fa5000 fffffa60`00fd1000 ecache ecache.sys
    fffffa60`00fd1000 fffffa60`00ffd000 CLASSPNP CLASSPNP.SYS
    fffffa60`01000000 fffffa60`0100a000 crcdisk crcdisk.sys
    fffffa60`0100c000 fffffa60`0118c000 Ntfs Ntfs.sys
    fffffa60`0118c000 fffffa60`011d0000 volsnap volsnap.sys
    fffffa60`011d0000 fffffa60`011d8000 spldr spldr.sys
    fffffa60`011d8000 fffffa60`011ea000 mup mup.sys
    fffffa60`011ea000 fffffa60`011fe000 disk disk.sys
    fffffa60`01205000 fffffa60`01262000 storport storport.sys
    fffffa60`01262000 fffffa60`012ab000 mrxsmb10 mrxsmb10.sys
    fffffa60`012c8000 fffffa60`012d5000 tunnel tunnel.sys
    fffffa60`012d5000 fffffa60`012de000 tunmp tunmp.sys
    fffffa60`012de000 fffffa60`012f1000 processr processr.sys
    fffffa60`012f1000 fffffa60`0136f000 Rtlh64 Rtlh64.sys
    fffffa60`0136f000 fffffa60`013b5000 USBPORT USBPORT.SYS
    fffffa60`013b5000 fffffa60`013e9000 ks ks.sys
    fffffa60`013e9000 fffffa60`013f4000 mssmbios mssmbios.sys
    fffffa60`05400000 fffffa60`0540c000 mouclass mouclass.sys
    fffffa60`0540f000 fffffa60`0609d000 nvlddmkm nvlddmkm.sys
    fffffa60`0609d000 fffffa60`06180000 dxgkrnl dxgkrnl.sys
    fffffa60`06180000 fffffa60`06190000 watchdog watchdog.sys
    fffffa60`06190000 fffffa60`061a1b00 ohci1394 ohci1394.sys
    fffffa60`061a2000 fffffa60`061b1f00 1394BUS 1394BUS.SYS
    fffffa60`061b2000 fffffa60`061bc000 johci johci.sys
    fffffa60`061bc000 fffffa60`061d8000 cdrom cdrom.sys
    fffffa60`061d8000 fffffa60`061e3000 usbohci usbohci.sys
    fffffa60`061e3000 fffffa60`061ed000 usbfilter usbfilter.sys
    fffffa60`061ed000 fffffa60`061eed80 USBD USBD.SYS
    fffffa60`061ef000 fffffa60`06200000 usbehci usbehci.sys
    fffffa60`06204000 fffffa60`062f1000 HDAudBus HDAudBus.sys
    fffffa60`062f1000 fffffa60`0632a000 msiscsi msiscsi.sys
    fffffa60`0632a000 fffffa60`06337000 TDI TDI.SYS
    fffffa60`06337000 fffffa60`0635a000 rasl2tp rasl2tp.sys
    fffffa60`0635a000 fffffa60`06366000 ndistapi ndistapi.sys
    fffffa60`06366000 fffffa60`06397000 ndiswan ndiswan.sys
    fffffa60`06397000 fffffa60`063a7000 raspppoe raspppoe.sys
    fffffa60`063a7000 fffffa60`063c5000 raspptp raspptp.sys
    fffffa60`063c5000 fffffa60`063dd000 rassstp rassstp.sys
    fffffa60`063dd000 fffffa60`063f0000 termdd termdd.sys
    fffffa60`063f0000 fffffa60`063fe000 kbdclass kbdclass.sys
    fffffa60`063fe000 fffffa60`063ff480 swenum swenum.sys
    fffffa60`0720c000 fffffa60`07254000 usbhub usbhub.sys
    fffffa60`07254000 fffffa60`07268000 NDProxy NDProxy.SYS
    fffffa60`07268000 fffffa60`072b1000 HdAudio HdAudio.sys
    fffffa60`072b1000 fffffa60`072ec000 portcls portcls.sys
    fffffa60`072ec000 fffffa60`0730f000 drmk drmk.sys
    fffffa60`0730f000 fffffa60`07314180 ksthunk ksthunk.sys
    fffffa60`07315000 fffffa60`0731f000 Fs_Rec Fs_Rec.SYS
    fffffa60`0731f000 fffffa60`07328000 Null Null.SYS
    fffffa60`07333000 fffffa60`0733ab80 HIDPARSE HIDPARSE.SYS
    fffffa60`0733b000 fffffa60`07348000 rzmpos rzmpos.sys
    fffffa60`07351000 fffffa60`0735f000 vga vga.sys
    fffffa60`0735f000 fffffa60`07384000 VIDEOPRT VIDEOPRT.SYS
    fffffa60`07384000 fffffa60`073a0000 usbccgp usbccgp.sys
    fffffa60`073a0000 fffffa60`073a9000 hidusb hidusb.sys
    fffffa60`073a9000 fffffa60`073bb000 HIDCLASS HIDCLASS.SYS
    fffffa60`073bb000 fffffa60`073c4000 RDPCDD RDPCDD.sys
    fffffa60`073c4000 fffffa60`073cd000 rdpencdd rdpencdd.sys
    fffffa60`073cd000 fffffa60`073d8000 kbdhid kbdhid.sys
    fffffa60`073d8000 fffffa60`073e3000 Msfs Msfs.SYS
    fffffa60`073e3000 fffffa60`073f4000 Npfs Npfs.SYS
    fffffa60`073f4000 fffffa60`073fd000 rasacd rasacd.sys
    fffffa60`07a05000 fffffa60`07a20000 smb smb.sys
    fffffa60`07a20000 fffffa60`07a2e000 rzendpt rzendpt.sys
    fffffa60`07a2e000 fffffa60`07a99000 afd afd.sys
    fffffa60`07a99000 fffffa60`07add000 netbt netbt.sys
    fffffa60`07add000 fffffa60`07afb000 pacer pacer.sys
    fffffa60`07afb000 fffffa60`07b0a000 netbios netbios.sys
    fffffa60`07b0a000 fffffa60`07b25000 wanarp wanarp.sys
    fffffa60`07b25000 fffffa60`07b30000 mouhid mouhid.sys
    fffffa60`07b30000 fffffa60`07b40000 tcpipreg tcpipreg.sys
    fffffa60`07b46000 fffffa60`07b70000 rzudd rzudd.sys
    fffffa60`07b70000 fffffa60`07bbd000 rdbss rdbss.sys
    fffffa60`07bbd000 fffffa60`07bc9000 nsiproxy nsiproxy.sys
    fffffa60`07bc9000 fffffa60`07be6000 dfsc dfsc.sys
    fffffa60`07be6000 fffffa60`07bf1000 secdrv secdrv.SYS
    fffffa60`07e0a000 fffffa60`07eaa000 netr7364 netr7364.sys
    fffffa60`07eaa000 fffffa60`07eb5000 HidBatt HidBatt.sys
    fffffa60`07eb5000 fffffa60`07ed1000 cdfs cdfs.sys
    fffffa60`07ed1000 fffffa60`07edf000 crashdmp crashdmp.sys
    fffffa60`07edf000 fffffa60`07ee9000 dump_diskdump dump_diskdump.sys
    fffffa60`07ee9000 fffffa60`07f37000 dump_ahcix64s dump_ahcix64s.sys
    fffffa60`07f37000 fffffa60`07f43000 Dxapi Dxapi.sys
    fffffa60`07f43000 fffffa60`07f56000 monitor monitor.sys
    fffffa60`07f56000 fffffa60`07f78000 luafv luafv.sys
    fffffa60`07f78000 fffffa60`07f91000 WudfPf WudfPf.sys
    fffffa60`07f91000 fffffa60`07fab000 mpsdrv mpsdrv.sys
    fffffa60`07fab000 fffffa60`07fd2000 mrxdav mrxdav.sys
    fffffa60`07fd2000 fffffa60`07ffb000 mrxsmb mrxsmb.sys
    fffffa60`0c40a000 fffffa60`0c4a4000 spsys spsys.sys
    fffffa60`0c4a4000 fffffa60`0c4b8000 lltdio lltdio.sys
    fffffa60`0c4b8000 fffffa60`0c4ec000 nwifi nwifi.sys
    fffffa60`0c4ec000 fffffa60`0c4f7000 ndisuio ndisuio.sys
    fffffa60`0c4f7000 fffffa60`0c50f000 rspndr rspndr.sys
    fffffa60`0c50f000 fffffa60`0c5b2000 HTTP HTTP.sys
    fffffa60`0c5b2000 fffffa60`0c5db000 srvnet srvnet.sys
    fffffa60`0c5db000 fffffa60`0c5f9000 bowser bowser.sys
    fffffa60`0d009000 fffffa60`0d028000 mrxsmb20 mrxsmb20.sys
    fffffa60`0d028000 fffffa60`0d05a000 srv2 srv2.sys
    fffffa60`0d05a000 fffffa60`0d0ed000 srv srv.sys
    fffffa60`0d0ed000 fffffa60`0d11f000 AODDriver2 AODDriver2.sys
    fffffa60`0d11f000 fffffa60`0d140000 NisDrvWFP NisDrvWFP.sys
    fffffa60`0d140000 fffffa60`0d1f6000 peauth peauth.sys
    fffffa60`0da02000 fffffa60`0da38000 WUDFRd WUDFRd.sys
    fffffa60`0da38000 fffffa60`0da5d000 000 000.fcl
    Unloaded modules:
    fffffa60`01262000 fffffa60`01270000 crashdmp.sys
    fffffa60`01270000 fffffa60`0127a000 dump_storpor
    fffffa60`0127a000 fffffa60`012c8000 dump_ahcix64
    fffffa60`07b30000 fffffa60`07b46000 RzFilter.sys
    fffffa60`0733b000 fffffa60`07351000 i8042prt.sys
    fffffa60`07328000 fffffa60`07333000 kbdhid.sys
    Raw Stack Contents
    Dump Header Information
    ----- 64 bit Kernel Mini Dump Analysis
    DUMP_HEADER64:
    MajorVersion 0000000f
    MinorVersion 00001772
    KdSecondaryVersion 00000000
    DirectoryTableBase 00000001`500c1000
    PfnDataBase fffff800`0203f250
    PsLoadedModuleList fffff800`01fdce30
    PsActiveProcessHead fffff800`01fbc4a0
    MachineImageType 00008664
    NumberProcessors 00000004
    BugCheckCode 0000003d
    BugCheckParameter1 00000000`00000000
    BugCheckParameter2 00000000`00000000
    BugCheckParameter3 00000000`00000000
    BugCheckParameter4 fffffa60`01385d1b
    KdDebuggerDataBlock fffff800`01f89f20
    ProductType 00000001
    SuiteMask 00000310
    WriterStatus 00000000
    MiniDumpFields 00000cff
    TRIAGE_DUMP64:
    ServicePackBuild 00000200
    SizeOfDump 00040000
    ValidOffset 0003fffc
    ContextOffset 00000348
    ExceptionOffset 00000f00
    MmOffset 00002080
    UnloadedDriversOffset 000020d0
    PrcbOffset 00002228
    ProcessOffset 00005d48
    ThreadOffset 00006130
    CallStackOffset 00006580
    SizeOfCallStack 000023a8
    DriverListOffset 00008c58
    DriverCount 00000090
    StringPoolOffset 0000dd58
    StringPoolSize 000030a8
    BrokenDriverOffset 00000000
    TriageOptions ffffffff
    TopOfStack fffffa60`005fdc58
    BStoreOffset 00000000
    SizeOfBStore 00000000
    LimitOfBStore 00000000`00000000
    DebuggerDataOffset 00008928
    DebuggerDataSize 00000330
    DataBlocksOffset 00010e00
    DataBlocksCount 0000000c
    fffff800`01fdd780 - fffff800`01fdd7ff at offset 00010ec0
    fffff800`01fc18f8 - fffff800`01fc18fb at offset 00010f40
    fffff800`01fc18f4 - fffff800`01fc18f7 at offset 00010f44
    fffff800`0203f078 - fffff800`0203f07b at offset 00010f48
    fffff800`0203f09c - fffff800`0203f09f at offset 00010f4c
    fffffa80`06f5c218 - fffffa80`06f5e217 at offset 00010f50
    fffff800`01fa6970 - fffff800`01fa6977 at offset 00012f50
    fffff800`01fa6978 - fffff800`01fa697f at offset 00012f58
    fffffa60`0f3e3000 - fffffa60`0f3e3fff at offset 00012f60
    fffff800`01e67000 - fffff800`01e67fff at offset 00013f60
    fffff800`02019000 - fffff800`02019fff at offset 00014f60
    fffff800`01e6f000 - fffff800`01e6ffff at offset 00015f60
    Max offset 16f60, 306f8 from end of file
    Strings
    PAGEDU64
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEXv
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    crashdmp.sys
    dump_storpor
    dump_ahcix64
    RzFilter.sys
    i8042prt.sys
    kbdhid.sys
    AuthenticAMD
    Wow-64.exe
    Dne7decEDne8
    \SystemRoot\system32\ntoskrnl.exe
    \SystemRoot\system32\hal.dll
    \SystemRoot\system32\kdcom.dll
    \SystemRoot\system32\PSHED.dll
    \SystemRoot\system32\CLFS.SYS
    \SystemRoot\system32\CI.dll
    \SystemRoot\system32\drivers\Wdf01000.sys
    \SystemRoot\system32\drivers\WDFLDR.SYS
    \SystemRoot\system32\drivers\acpi.sys
    \SystemRoot\system32\drivers\WMILIB.SYS
    \SystemRoot\system32\drivers\msisadrv.sys
    \SystemRoot\system32\drivers\pci.sys
    \SystemRoot\System32\drivers\partmgr.sys
    \SystemRoot\system32\DRIVERS\compbatt.sys
    \SystemRoot\system32\DRIVERS\BATTC.SYS
    \SystemRoot\system32\drivers\volmgr.sys
    \SystemRoot\System32\drivers\volmgrx.sys
    \SystemRoot\system32\drivers\pciide.sys
    \SystemRoot\system32\drivers\PCIIDEX.SYS
    \SystemRoot\System32\drivers\mountmgr.sys
    \SystemRoot\system32\drivers\atapi.sys
    \SystemRoot\system32\drivers\ataport.SYS
    \SystemRoot\system32\drivers\fltmgr.sys
    \SystemRoot\system32\drivers\fileinfo.sys
    \SystemRoot\system32\DRIVERS\MpFilter.sys
    \SystemRoot\System32\Drivers\ksecdd.sys
    \SystemRoot\system32\drivers\ndis.sys
    \SystemRoot\system32\drivers\msrpc.sys
    \SystemRoot\system32\drivers\NETIO.SYS
    \SystemRoot\System32\drivers\tcpip.sys
    \SystemRoot\System32\drivers\fwpkclnt.sys
    \SystemRoot\System32\Drivers\Ntfs.sys
    \SystemRoot\system32\drivers\volsnap.sys
    \SystemRoot\System32\Drivers\spldr.sys
    \SystemRoot\System32\Drivers\mup.sys
    \SystemRoot\System32\drivers\ecache.sys
    \SystemRoot\system32\drivers\disk.sys
    \SystemRoot\system32\drivers\CLASSPNP.SYS
    \SystemRoot\system32\drivers\crcdisk.sys
    \SystemRoot\system32\drivers\ahcix64s.sys
    \SystemRoot\system32\drivers\storport.sys
    \SystemRoot\system32\DRIVERS\tunnel.sys
    \SystemRoot\system32\DRIVERS\tunmp.sys
    \SystemRoot\system32\DRIVERS\processr.sys
    \SystemRoot\system32\DRIVERS\nvlddmkm.sys
    \SystemRoot\System32\drivers\dxgkrnl.sys
    \SystemRoot\System32\drivers\watchdog.sys
    \SystemRoot\system32\DRIVERS\ohci1394.sys
    \SystemRoot\system32\DRIVERS\1394BUS.SYS
    \SystemRoot\system32\DRIVERS\johci.sys
    \SystemRoot\system32\DRIVERS\Rtlh64.sys
    \SystemRoot\system32\DRIVERS\cdrom.sys
    \SystemRoot\system32\DRIVERS\usbohci.sys
    \SystemRoot\system32\DRIVERS\USBPORT.SYS
    \SystemRoot\system32\DRIVERS\usbfilter.sys
    \SystemRoot\system32\DRIVERS\USBD.SYS
    \SystemRoot\system32\DRIVERS\usbehci.sys
    \SystemRoot\system32\DRIVERS\HDAudBus.sys
    \SystemRoot\system32\DRIVERS\msiscsi.sys
    \SystemRoot\system32\DRIVERS\TDI.SYS
    \SystemRoot\system32\DRIVERS\rasl2tp.sys
    \SystemRoot\system32\DRIVERS\ndistapi.sys
    \SystemRoot\system32\DRIVERS\ndiswan.sys
    \SystemRoot\system32\DRIVERS\raspppoe.sys
    \SystemRoot\system32\DRIVERS\raspptp.sys
    \SystemRoot\system32\DRIVERS\rassstp.sys
    \SystemRoot\system32\DRIVERS\termdd.sys
    \SystemRoot\system32\DRIVERS\kbdclass.sys
    \SystemRoot\system32\DRIVERS\mouclass.sys
    \SystemRoot\system32\DRIVERS\swenum.sys
    \SystemRoot\system32\DRIVERS\ks.sys
    \SystemRoot\system32\DRIVERS\mssmbios.sys
    \SystemRoot\system32\DRIVERS\umbus.sys
    \SystemRoot\system32\DRIVERS\usbhub.sys
    \SystemRoot\System32\Drivers\NDProxy.SYS
    \SystemRoot\system32\drivers\HdAudio.sys
    \SystemRoot\system32\drivers\portcls.sys
    \SystemRoot\system32\drivers\drmk.sys
    \SystemRoot\system32\drivers\ksthunk.sys
    \SystemRoot\System32\Drivers\Fs_Rec.SYS
    \SystemRoot\System32\Drivers\Null.SYS
    \SystemRoot\system32\DRIVERS\HIDPARSE.SYS
    \SystemRoot\System32\drivers\vga.sys
    \SystemRoot\System32\drivers\VIDEOPRT.SYS
    \SystemRoot\system32\DRIVERS\usbccgp.sys
    \SystemRoot\system32\DRIVERS\hidusb.sys
    \SystemRoot\system32\DRIVERS\HIDCLASS.SYS
    \SystemRoot\System32\DRIVERS\RDPCDD.sys
    \SystemRoot\system32\drivers\rdpencdd.sys
    \SystemRoot\system32\DRIVERS\kbdhid.sys
    \SystemRoot\System32\Drivers\Msfs.SYS
    \SystemRoot\System32\Drivers\Npfs.SYS
    \SystemRoot\system32\DRIVERS\USBSTOR.SYS
    \SystemRoot\System32\DRIVERS\rasacd.sys
    \SystemRoot\system32\DRIVERS\tdx.sys
    \SystemRoot\system32\DRIVERS\rzmpos.sys
    \SystemRoot\system32\DRIVERS\smb.sys
    \SystemRoot\system32\DRIVERS\rzendpt.sys
    \SystemRoot\system32\drivers\afd.sys
    \SystemRoot\System32\DRIVERS\netbt.sys
    \SystemRoot\system32\DRIVERS\pacer.sys
    \SystemRoot\system32\DRIVERS\netbios.sys
    \SystemRoot\system32\DRIVERS\wanarp.sys
    \SystemRoot\system32\DRIVERS\mouhid.sys
    \SystemRoot\system32\DRIVERS\rzudd.sys
    \SystemRoot\system32\DRIVERS\rdbss.sys
    \SystemRoot\system32\drivers\nsiproxy.sys
    \SystemRoot\System32\Drivers\dfsc.sys
    \SystemRoot\system32\DRIVERS\netr7364.sys
    \SystemRoot\system32\DRIVERS\HidBatt.sys
    \SystemRoot\system32\DRIVERS\cdfs.sys
    \SystemRoot\System32\Drivers\crashdmp.sys
    \SystemRoot\System32\Drivers\dump_diskdump.sys
    \SystemRoot\System32\Drivers\dump_ahcix64s.sys
    \SystemRoot\System32\win32k.sys
    \SystemRoot\System32\drivers\Dxapi.sys
    \SystemRoot\system32\DRIVERS\monitor.sys
    \SystemRoot\System32\TSDDD.dll
    \SystemRoot\System32\cdd.dll
    \SystemRoot\system32\drivers\luafv.sys
    \SystemRoot\system32\drivers\WudfPf.sys
    \SystemRoot\System32\ATMFD.DLL
    \SystemRoot\system32\drivers\spsys.sys
    \SystemRoot\system32\DRIVERS\lltdio.sys
    \SystemRoot\system32\DRIVERS\nwifi.sys
    \SystemRoot\system32\DRIVERS\ndisuio.sys
    \SystemRoot\system32\DRIVERS\rspndr.sys
    \SystemRoot\system32\drivers\HTTP.sys
    \SystemRoot\System32\DRIVERS\srvnet.sys
    \SystemRoot\system32\hoenix Technologies, LTD
    10/29/2008
    HP-Pavilion
    FQ563AA-ABA a6750f
    FQ563AA#ABA
    103C_53316J
    Hewlett-Packard
    Socket AM2
    AMD Phenom(tm) 9650 Quad-Core Processor
    Internal Cache
    External Cache
    External Cache
    Keyboard
    PS/2 Mouse
    PCIE x1 slot
    PCIE x16 slot
    PCIE x1 slot
    PCIE x1 slot
    Bank0/1
    CE00000000000000
    M3 78T5663QZ3-CF7
    Bank2/3
    CE00000000000000
    M3 78T5663QZ3-CF7
    Bank4/5
    CE00000000000000
    M3 78T5663QZ3-CF7
    Bank6/7
    CE00000000000000
    M3 78T5663QZ3-CF7
    PLIGPYVTQY
    RPLIRYVSSY
    bid=91NAv6PrA1;PROD_MSWORKS;SFCHK;DLED;IS.N60d;ACPwrFail=Off;Cha
    n=Retail;CPUFan=On;DVDRW;LegacyFloppy=No;TVout=NTSC;PCBRAND=Pavi
    lion;OS=MSV;KBDRV;LScribe;DVDP_STD;Vos.P;PROD_MSOFFHST;FPA=HM;C_
    VEN;MUV_B;CDS_D;SW_Main;.fQ;##HPCPC=00000000<9000000602000000042
    0000253514130040000010001000;5;:0665<;85>18>1<2=1:<55>?4;;=?=19:
    <8494;>:8011<=31953=?76?>378139;594701:=;34:;55;9128<7937==0<722
    <:<1:2489>:088=6:?1;2>8=8>12691>>286:9?;4454>3<3>89909>=738375;0
    2951<;>=??2?70>75;04<815:33<20846?312127;?24876>7488457<0;0?39>9
    ;?407;8;8;09>=;==>231>;?456:100000006;00000000002000840515?454=4
    35<49434=23405347594>444?475350200000000000000000000000000000000
    00000000?24?41954<8?4243:463542:9034;??09<31;8951=>:><6>3291=35:
    7;:7?<0;=973478<4:062629<>53103<<=4651<3499:7?769::98;357697=:34
    83>07=6;>1<1?<>7<817?5586>79?5:5?19<87:>=6507148017=835>552096;7
    14776===1=59:5:9;7?16>;910;64?;=21?;7975:6660><>729>:9<98<5<=
    991>7?7>
    Component Information
    Configuration Data
    Identifier
    AMD64 Family 16 Model 2 Stepping 3
    ProcessorNameString
    AMD Phenom(tm) 9650 Quad-Core Processor
    VendorIdentifier
    AuthenticAMD
    AuthcAMDenti
    AuthcAMDenti
    AuthcAMDenti
    AuthcAMDenti
    AMD Phenom(tm) 9AMD Phenom(tm) 9
    650 Quad-Core Pr650 Quad-Core Pr
    ocessor
    ocessor
    HPQOEMSLIC-CPCFACP
    VHPQOEMSLIC-CPCHPET8
    HPQOEMSLIC-CPCMCFG<
    HPQOEMSLIC-CPCSSDTD
    2HPQOEMSLIC-CPCSLICv
    HPQOEMSLIC-CPC
    340.52
    r340_00-144
    08@HPX
    Wdf01000
    w Established
    msisadrv
    Processor
    rzmpos
    rzendpt
    monitor
    PEAUTH

    COJ1996
    3 of 5 were related to USBPORT.SYS (part of the OS).  I would start by running a  system file check.  The directions in the wiki are designed for Win 7 & 8 but should work on Vista. 
    Please run a system file check (SFC)
    All instructions are in our Wiki article below...
    Should you have any questions please ask us.
    System file check (SFC) Scan and Repair System Files
    Microsoft (R) Windows Debugger Version 6.3.9600.17029 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Ken\Desktop\New folder\Mini083014-02.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    ************* Symbol Path validation summary **************
    Response Time (ms) Location
    Deferred srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Symbol search path is: srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows Server 2008/Windows Vista Kernel Version 6002 (Service Pack 2) MP (4 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 6002.18881.amd64fre.vistasp2_gdr.130707-1535
    Machine Name:
    Kernel base = 0xfffff800`01e02000 PsLoadedModuleList = 0xfffff800`01fc6e30
    Debug session time: Sat Aug 30 13:59:46.453 2014 (UTC - 4:00)
    System Uptime: 0 days 1:37:22.527
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck D1, {fffffa5ffbbb6b44, 2, 1, fffffa800a349f00}
    *** WARNING: Unable to verify timestamp for win32k.sys
    *** ERROR: Module load completed but symbols could not be loaded for win32k.sys
    Probably caused by : USBPORT.SYS ( USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce )
    Followup: MachineOwner
    2: kd> !analyze -v
    * Bugcheck Analysis *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high. This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: fffffa5ffbbb6b44, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000001, value 0 = read operation, 1 = write operation
    Arg4: fffffa800a349f00, address which referenced memory
    Debugging Details:
    WRITE_ADDRESS: GetPointerFromAddress: unable to read from fffff80002029080
    GetUlongFromAddress: unable to read from fffff80002029160
    fffffa5ffbbb6b44
    CURRENT_IRQL: 2
    FAULTING_IP:
    +d2bc49d3c0
    fffffa80`0a349f00 88a0340a80fa mov byte ptr [rax-57FF5CCh],ah
    CUSTOMER_CRASH_COUNT: 2
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0xD1
    PROCESS_NAME: System
    ANALYSIS_VERSION: 6.3.9600.17029 (debuggers(dbg).140219-1702) amd64fre
    DPC_STACK_BASE: FFFFFA6001994FB0
    TRAP_FRAME: fffffa600198daa0 -- (.trap 0xfffffa600198daa0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffffa60013b6110 rbx=0000000000000000 rcx=fffffa800a3491a0
    rdx=000000004f444648 rsi=0000000000000000 rdi=0000000000000000
    rip=fffffa800a349f00 rsp=fffffa600198dc38 rbp=fffffa800a3491a0
    r8=000000004f444648 r9=00000000000003e8 r10=0000000000000000
    r11=fffffa600196fd40 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    fffffa80`0a349f00 88a0340a80fa mov byte ptr [rax-57FF5CCh],ah ds:fffffa5f`fbbb6b44=??
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80001e58eee to fffff80001e59150
    STACK_TEXT:
    fffffa60`0198d958 fffff800`01e58eee : 00000000`0000000a fffffa5f`fbbb6b44 00000000`00000002 00000000`00000001 : nt!KeBugCheckEx
    fffffa60`0198d960 fffff800`01e57dcb : 00000000`00000001 fffffa80`0a349050 fffffa80`088c8320 fffffa80`0a3491a0 : nt!KiBugCheckDispatch+0x6e
    fffffa60`0198daa0 fffffa80`0a349f00 : fffffa80`0a7c5400 fffffa80`0a3491a0 fffffa60`0139041a fffffa60`33584e67 : nt!KiPageFault+0x20b
    fffffa60`0198dc38 fffffa80`0a7c5400 : fffffa80`0a3491a0 fffffa60`0139041a fffffa60`33584e67 00000000`0005b6f6 : 0xfffffa80`0a349f00
    fffffa60`0198dc40 fffffa80`0a3491a0 : fffffa60`0139041a fffffa60`33584e67 00000000`0005b6f6 fffffa80`0a349050 : 0xfffffa80`0a7c5400
    fffffa60`0198dc48 fffffa60`0139041a : fffffa60`33584e67 00000000`0005b6f6 fffffa80`0a349050 fffffa80`0a7c5b00 : 0xfffffa80`0a3491a0
    fffffa60`0198dc50 fffffa60`0137c1a7 : fffffa80`0a349f00 00000000`00000002 fffffa60`30745378 fffffa80`3070614d : USBPORT!USBPORT_Core_UsbMapDpc_Worker+0x1ce
    fffffa60`0198dcc0 fffff800`01e5d367 : fffffa80`0a349f18 00000000`34776478 00000000`00000000 fffffa60`00000683 : USBPORT!USBPORT_Xdpc_Worker+0x26f
    fffffa60`0198dd10 fffff800`01e5d5e2 : fffffa60`0137bf38 fffffa60`01966180 00000000`00000000 fffffa60`0196fd40 : nt!KiRetireDpcList+0x117
    fffffa60`0198dd80 fffff800`0202d860 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiIdleLoop+0x62
    fffffa60`0198ddb0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!zzz_AsmCodeRange_End+0x4
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    fffffa60`0139041a 84c0 test al,al
    SYMBOL_STACK_INDEX: 6
    SYMBOL_NAME: USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: USBPORT
    IMAGE_NAME: USBPORT.SYS
    DEBUG_FLR_IMAGE_TIMESTAMP: 51ce4591
    IMAGE_VERSION: 6.0.6002.18875
    FAILURE_BUCKET_ID: X64_0xD1_USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    BUCKET_ID: X64_0xD1_USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:x64_0xd1_usbport!usbport_core_usbmapdpc_worker+1ce
    FAILURE_ID_HASH: {1a5d1ed6-8cbb-8c24-4788-9f58003760d6}
    Followup: MachineOwner
    Wanikiya and Dyami--Team Zigzag

  • Satellite L750 PSK2YV: system thread exception not handled (athwbx.sys)

    I upgraded my Toshiba L750-A-210 laptop (short number: PSK2YV) to windows 8.1 pro from win 7.
    but now windows crashes on every restart and i cannot log in to the system, also i cant recover because i deleted the recovery partition in order to install the windows 8 but i have it on another hard disk.
    *do you have any ideas about resolving this issue.*
    I read some threads on the web and apparently it's a compatibility problem with the Qualcomm wireless adapter also toshiba site says my laptop model is not supported for 8 upgrade.
    I just want to get my laptop back to win 7
    P.S windows shows this error: system_thread_exception_not_handled (athwbx.sys)
    my laptop specs:
    http://www.toshibamea.com/TechnicalSupportDetails.aspx?pageid=21&productid=5 0203
    Best Regards,

    Hi
    The athwbx.sys belongs to the Atheros driver It looks that the installed Atheros Wlan driver isnt fully compatible by the Windows 8.1 system.
    You could try to remove / uninstall the driver in order to solve this issue.
    If you did not create the recover disk in the past then you will not be able to recovery the notebook back to factory settings to Win 7
    I guess you will need to order the recovery medium from Toshiba in case you want to use the Win 7 again.
    By the way: your notebook model has been released in USA So you should check the Toshiba USA forum and support page for driver update.
    By the way; here is an forum thread about the similar issue:
    http://forums.toshiba.com/t5/Windows-8-8-1/Blue-screen-error-athwbx-sys/td-p/612409

  • System thread exception not handled (encrypt.says)

    Upgraded to Windows 10 on Sunday. Norton pushed an update last night and when I went to restart, I get a SYSTEM_THREAD_EXCPETION_NOT_HANDLED(keycrypt64.sys) message and I can't get into my desktop.
    Anybody else get this? Norton going to come fix my system? (ha ha)

    Nope - not an HP. An ASUS netbook.
    I had to restore Windows, removing all my installed apps, then reload Norton Security Suite. I am functioning again, but I have about three hours of work to do to restore my apps.
     

  • HT201457 I have a mid 2011 iMac and have installed windows 8.1 on it  I costantly get system thread not handled and kernel security check failure and the Mac restarts

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

  • An exception of class nilobjectexception was not handled (Photoreflect)

    Trying to download photos via Photoreflect.com photo publisher. As soon as I get ready to add photos to a gallery I get a pop up "An exception of class nilobjectexception was not handled. The application must shut down." Tried restart of the computer. Uninstalled and reinstalled the publisher, deleted the Pub data settings file. Still won't work. Thanks in advance for any ideas.
    Rich

    Contact the developer of photoreflect as there is a problem with their code. There may be an update for their application.

  • An exception of class OutOfBounds Exception was not handled

    When starting a vodafone application for my Merlin 3g card I get a failure message: "An exception of class OutOfBounds Exception was not handled. Application must shut down"
    I unintentionally deleted an info.plist file when trying to get rid of Apple´s latest WWAN update. Could this be the reason? And how to get back the info.plist file?
    Thank you
    MacBookPro   Mac OS X (10.4.8)  

    I finally managed to find an Info.plist on the web. I managed to copy it to the IOSerialFamily.kext file and restarted.
    Upon startup I was told that the IOSerialFamily.kext was not installed correctly and cannot be used.
    This is the content I used:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>English</string>
    <key>CFBundleExecutable</key>
    <string>IOSerialFamily</string>
    <key>CFBundleGetInfoString</key>
    <string>Apple Computer, Inc 2005-01-12 IOKit Serial Port Family</string>
    <key>CFBundleIdentifier</key>
    <string>com.apple.iokit.IOSerialFamily</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>IOKit Serial Port Family</string>
    <key>CFBundlePackageType</key>
    <string>KEXT</string>
    <key>CFBundleShortVersionString</key>
    <string>9.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>9.0.0d30</string>
    <key>IOKitPersonalities</key>
    <dict>
    <key>IOSerialBSDClient</key>
    <dict>
    <key>CFBundleIdentifier</key>
    <string>com.apple.iokit.IOSerialFamily</string>
    <key>IOClass</key>
    <string>IOSerialBSDClient</string>
    <key>IOProbeScore</key>
    <integer>1000</integer>
    <key>IOProviderClass</key>
    <string>IOSerialStream</string>
    <key>IOResourceMatch</key>
    <string>IOBSD</string>
    </dict>
    <key>IOSerialBSDClientSync</key>
    <dict>
    <key>CFBundleIdentifier</key>
    <string>com.apple.iokit.IOSerialFamily</string>
    <key>IOClass</key>
    <string>IOSerialBSDClient</string>
    <key>IOProbeScore</key>
    <integer>1000</integer>
    <key>IOProviderClass</key>
    <string>IOSerialStreamSync</string>
    <key>IOResourceMatch</key>
    <string>IOBSD</string>
    </dict>
    </dict>
    <key>OSBundleCompatibleVersion</key>
    <string>1.0.4</string>
    <key>OSBundleLibraries</key>
    <dict>
    <key>com.apple.kpi.bsd</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.iokit</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.libkern</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.mach</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.unsupported</key>
    <string>8.0.0</string>
    </dict>
    </dict>
    </plist>
    Any help what I did possibly wrong?

  • SMBup quit. "An exception of class JSONException was not handled. The application must shut down. Exception Message: Parse Error: Expecting "{" or "[" at position 1. Exception Error Number: 1

    After updating to Mavericks 10.9.2, our Canon printer would no longer scan & send to our iMacs & MacBook Pros. We downloaded & installed SMBUp. Still trying to get it to work with MacBookPros, but has been working with iMacs. Today, out of the blue, I got the following error message:
    An exception of class JSONException was not handled. The application must shut down.
    Exception Message: Parse Error: Expecting "{" or "[" at position 1
    Exception Error Number : 1
    Now I get that message every time I try to open SMBUp. Tried to download & reinstall application, but get this message on website:
    Hmm, eduo.info isn't loading right now.
    The servers that run eduo.info are having some trouble. This is usually just a tempoary problem, so you might want to try again in a few minutes.
    (Have gotten that message for the last hour).
    Help?

    Hi,
    Pls don't forget to reward points and close the question if you find the answers useful.
    Eddy

  • Exception SQLException not handled

    Is this code above i get the SQLException in the catch statement and throws a new bussiness exception.
    The problem is that the SQLException looks like not handled, as it goes out the same SQLException, not the bussiness exception.
    Above goes the code and stacktrace :
    Connection con=null;
    Statement stmt=null;
    ResultSet rset=null;
    DirPart dirPart=null;
    String wClause =null;
    try
    wClause ="SELECT l.nom_localidade,to_char(co.dat_constituicao,'DD-MM-YY') dat_constituicao ,to_char(co.dat_ini_vigencia,'DD-MM-YY') dat_ini_vigencia ,to_char(co.dat_fim_vigencia,'DD-MM-YY') dat_fim_vigencia,co.num_protocolo,to_char(co.dat_protocolo,'DD-MM-YY') dat_protocolo,to_char(co.dat_prox_convencao,'DD-MM-YY') dat_prox_convencao ,o.cod_localidade_tse,co.cod_composicao,p.num_partido,p.nom_partido,p.sgl_partido,t.des_tipo_orgao,o.des_endereco,o.nom_bairro,o.num_cep,o.telefones,o.fax,o.email FROM ORGAO_PARTIDARIO O,MVW_PARTIDO p,COMPOSICAO_ORGAO CO, TIPO_ORGAO T,MVW_LOCALIDADE_UF l WHERE o.cod_localidade_tse=l.cod_localidade_tse and co.cod_composicao="+cod_composicao+" and p.num_partido=o.num_partido and co.cod_orgao=o.cod_orgao and co.tipo_orgao=t.tipo_orgao and co.ativa='S' order by p.sgl_partido";
    line 133 con=ConnManager.getConn("extcad");
    stmt = con.createStatement();
    rset = stmt.executeQuery(wClause.toString());
    if (rset.next())
    dirPart= new DirPart(rset.getString("des_tipo_orgao"),rset.getString("cod_composicao"),rset.getString("num_partido"),rset.getString("nom_partido"),rset.getString("sgl_partido"),rset.getString("cod_localidade_tse"),rset.getString("nom_localidade"),rset.getString("des_endereco"),rset.getString("nom_bairro"),rset.getString("num_cep"),rset.getString("telefones"),rset.getString("fax"),rset.getString("email"),rset.getString("dat_constituicao"),rset.getString("dat_ini_vigencia"),rset.getString("dat_fim_vigencia"),rset.getString("num_protocolo"),rset.getString("dat_protocolo"),rset.getString("dat_prox_convencao"));
    catch (SQLException e)
    e.printStackTrace();
    System.out.println("sql:"+wClause);
    throw new NaoCompletouOperacaoException("Erro de banco de dados");
    finally
    try
    con.close();
    rset.close();
    stmt.close();
    } catch (SQLException e) {System.err.println("erro ao fechar conn "+e.getMessage() );}
    return dirPart;
    STACK TRACE:
    java.sql.SQLException: ORA-00942: table or view does not exist
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteDescribe(TTC7Protocol.java:643)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:1674)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1870)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:538)
    at com.bitmechanic.sql.PooledStatement.executeQuery(PooledStatement.java:43)
    at justicaEleitoral.CPartDAO.getDirPartDoBD(CPartDAO.java:133)
    at justicaEleitoral.CPartDAO.getDirPart(CPartDAO.java:115)
    at partServlet.consultaPartido(partServlet.java:124)
    at partServlet.doGet(partServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
    at org.apache.tomcat.core.Handler.service(Handler.java:287)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:806)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)

    That�s that method indeed. Here goes the entire method code :
    public static DirPart getDirPartDoBD(String cod_composicao) throws NaoCompletouOperacaoException
    Connection con=null;
    Statement stmt=null;
    ResultSet rset=null;
    DirPart dirPart=null;
    String wClause =null;
    try
    wClause ="SELECT l.nom_localidade,to_char(co.dat_constituicao,'DD-MM-YY') dat_constituicao ,to_char(co.dat_ini_vigencia,'DD-MM-YY') dat_ini_vigencia ,to_char(co.dat_fim_vigencia,'DD-MM-YY') dat_fim_vigencia,co.num_protocolo,to_char(co.dat_protocolo,'DD-MM-YY') dat_protocolo,to_char(co.dat_prox_convencao,'DD-MM-YY') dat_prox_convencao ,o.cod_localidade_tse,co.cod_composicao,p.num_partido,p.nom_partido,p.sgl_partido,t.des_tipo_orgao,o.des_endereco,o.nom_bairro,o.num_cep,o.telefones,o.fax,o.email FROM ORGAO_PARTIDARIO O,MVW_PARTIDO p,COMPOSICAO_ORGAO CO, TIPO_ORGAO T,MVW_LOCALIDADE_UF l WHERE o.cod_localidade_tse=l.cod_localidade_tse and co.cod_composicao="+cod_composicao+" and p.num_partido=o.num_partido and co.cod_orgao=o.cod_orgao and co.tipo_orgao=t.tipo_orgao and co.ativa='S' order by p.sgl_partido";
    con=ConnManager.getConn("extcad");
    // con=ConnCad.getConnExt();
    stmt = con.createStatement();
    rset = stmt.executeQuery(wClause.toString());
    if (rset.next())
    dirPart= new DirPart(rset.getString("des_tipo_orgao"),rset.getString("cod_composicao"),rset.getString("num_partido"),rset.getString("nom_partido"),rset.getString("sgl_partido"),rset.getString("cod_localidade_tse"),rset.getString("nom_localidade"),rset.getString("des_endereco"),rset.getString("nom_bairro"),rset.getString("num_cep"),rset.getString("telefones"),rset.getString("fax"),rset.getString("email"),rset.getString("dat_constituicao"),rset.getString("dat_ini_vigencia"),rset.getString("dat_fim_vigencia"),rset.getString("num_protocolo"),rset.getString("dat_protocolo"),rset.getString("dat_prox_convencao"));
    catch (SQLException e)
    e.printStackTrace();
    System.out.println("sql:"+wClause);
    throw new NaoCompletouOperacaoException("Erro de banco de dados");
    finally
    try
    con.close();
    rset.close();
    stmt.close();
    } catch (SQLException e) {System.err.println("erro ao fechar conn "+e.getMessage() );}
    return dirPart;

Maybe you are looking for

  • Safari cannot open webmail server page

    Even after Yosemite update problem not fixed. Still cannot access  emails on server webmail page.

  • Error while importing a Adaptive RFC Model

    Experts, I am trying to import an Adaptive RFC Model. Before importing I need to speciy the connection parameters in the import wizard. I am using the single server method to connect and have specified all the parameters correctly. I have not specifi

  • Different ways to store/retrieve blob

    Hi, Can somebody explain to me , the methods available to store a file(different formats .pdf,.doc,.gif etc..) as blob in to database and retrieve as the same file.?? I'm using forms6i and database10g. I first tried with DBMS_LOB package, but during

  • Calculate age in oracle 11g

    how do i calculate age based on date picker in another field on the same table/

  • Template not in assets panel

    I am using DW8 v8.0.2 & am going thru 'Macromedia Dreamweaver 8 Complete Concepts & Techniques." It was working great until I got to project 5 about templates. I created a new template & it showed in the files panel. Then, I created a new page & went