Error with an instruction box in a region of report

Hello

I have a report, when I use the case in the source of the region, I have an error message.

There are three fields in the report: from, to, resident

Before the deal, it works very well and as follows:

Select count (t1.id) pcount, c5, c6, seqnum

from t1, t2 tablename tablename1 2

where t1.ID = t2.pid

and (t1.resident =: P251_RESIDENT)

or t1... resident2 =: P251_RESIDENT)

and t1.pdate between to_date(:P251_FROM,'mm/dd/yyyy')

and to_date(:P251_TO,'mm/dd/yyyy')

Group of c5, c6, seqnum

After having added the condition of 'case', I

1 error has occurred

  • Query cannot be parsed in the generator. If you believe that your query is syntactically correct, check the generic "columns" box below the source of the region without analysis. ORA-00933: SQL not correctly completed command.

Select count (t1.id) pcount, c5, c6, seqnum

from t1, t2 tablename tablename1 2

where t1.ID = t2.pid

case

When: P251_RESIDENT is not null then

and (t1.resident =: P251_RESIDENT)

or t1.resident2 =: P251_RESIDENT)

end

case

When: P251_FROM is not null and: P251_TO is not null then

and t1.pdate between to_date(:P251_FROM,'mm/dd/yyyy')

and to_date(:P251_TO,'mm/dd/yyyy')

end

Group of c5, c6, seqnum

can anyone help?

Thank you

Jen

If you want SQL to return all the lines when the value of the element is zero, you test as part of the WHERE clause directly and adjust your Boolean logic accordingly.

for example

WHERE T1.ID=T2.PID
  AND
    ( :P251_RESIDENT IS NULL OR
          ( T1.RESIDENT = :P251_RESIDENT or T1.RESIDENT2 = :P251_RESIDENT )
     )
  and ( :P251_FROM is null OR
            to_date( :P251_FROM, 'mm/dd/yyyy' ) < T1.pdate
        )
  and ( :P251_TO is null
           or T1.pdate < to_date( :P251_TO, 'mm/dd/yyyy' )
   )

Your SQL required so much P251_FROM than P251_TO in order to work.

It will work with one or the other or both.

MK

Tags: Database

Similar Questions

  • DENSE_RANK - strange behavior with an instruction BOX in ORDER BY

    Select the version of v$ instance;

    10.2.0.5.0

    Here is my example query:

    WITH A AS (
    select 40 as id,'708' as loc,'10-108' as act,14.5 as per from dual
    union select 40,'708','10-308',14.5 from dual
    union select 40,'708','10-708',14.5 from dual
    union select 40,'708','10-108',10.5 from dual
    union select 40,'708','10-308',10.5 from dual
    union select 40,'708','10-708',10.5 from dual
    )
    select id,loc,act,per
    ,SUBSTR(act,4,3) as aloc
    ,CASE WHEN SUBSTR(act,4,3) = loc THEN 0 ELSE 1 END as "Case"
    ,row_number() over (partition by id,loc order by per desc,
        CASE WHEN SUBSTR(act,4,3) = loc THEN 0 ELSE 1 END) AS Row_Num
    ,dense_rank() over (partition by id,loc order by per desc
        ,CASE WHEN SUBSTR(act,4,3) = loc THEN 0 ELSE 1 END
      ) as D_Rank
    from A;
    

    Here are the results, I expect:

    ID ACT BY ALOC case no_lig D_RANK LOC

    ---------- --- ------ ---------- ---- ---------- ---------- ----------

    40 708 14.5 10-708 708 0 1 1

    40 708 14.5 10-108 108 1 2 1

    40 708 14.5 10-308 308 1 3 1

    40 708 10.5 10-708 708 0 4 2

    40 708 10.5 10-108 108 1 5 2

    40 708 10.5 10-308 308 1 6 2

    However, these are the results I get:

    ID ACT BY ALOC case no_lig D_RANK LOC

    ---------- --- ------ ---------- ---- ---------- ---------- ----------

    40 708 14.5 10-708 708 0 1 1

    40 708 14.5 10-108 108 1 2 2

    40 708 14.5 10-308 308 1 3 2

    40 708 10.5 10-708 708 0 4 3

    40 708 10.5 10-108 108 1 5 4

    40 708 10.5 10-308 308 1 6 4       

    Since CASE WHEN SUBSTR(act,4,3) = 0 1 loc OTHER END is not in the score, why DENSE_RANK() increments?  ROW_NUMBER() behaves correctly with this CASE statement in its ORDER BY, but DENSE_RANK() does not appear.


    I think I can solve my problem by removing BOX WHEN SUBSTR (act, 4, 3) = THEN ELSE 0 1 END of my COMMAND DENSE_RANK() loc, however, in academic terms, I still don't understand the above behavior.  Is this a bug in DENSE_RANK or is it normal?

    Hello

    You're right; the expression that you called "Case" is not in clasue SCORE.  If it were, then a change in the value of 'Case' would cause DENSE_RANK generate a new set of numbers, starting with 1.  Tha't, it is clearly not what is happening here.  In this query, a change in the 'deal' is originally results increment, not start with 1.

    Don't forget the ORDER BY operation

    ORDER BY w, x, y, z

    the distinction between the lines to which none of the expressions w, x, y or z is different.  A change in one of these expressions (in general) causes a change in the results.

    In this example, 'Deal' is part of the analytical ORDER byclause DENSE_RANK, so you should expect a change in the "box" to cause a change in the value returned by DENSE_RANK.

    In this query, DENSE_RANK assigns different numbers with lines that have different values of 'box '.  Lower values of 'Case' will be assigned lower values of D_Rank, which is what you see.

    Lines with a = 14.5 and "Breaks" = 0 get a lower D_Rank (they get D-rank = 1) than the lines with per = 14.5 and "Break" = 1 (they get D_Rank = 2).

    Lines with by = 10.5 and "Breaks" = 0 get a lower D_Rank (they get D-rank = 3) of lines with by = 10.5 and "Case" = 1 (they get D_Rank = 4).

    You're right about how to get the first set of results, too.  If ORDER BY DESC is the ORDER byclause analytical together, DENSE_RANK assign the same number for all rows in the partition that have the same value of per, no matter what values are in all the other columns.

    The fact that "The case" is a CASE expression is actually irrelevant.  If you had a column, with 0 and 1 used and stored in this column in the ORDER BY clause, you would see the same behavior.

  • error in the instruction box

    How to select something in a statement in pl/sql block box in a variable plsql?

    It returns the error ORA-00903 invalid tablename.

    I have to use sql to perform this validation

    Why? In your first post you talked about"a pl/sql block '?

    In any case - performs the following work for you:

    SQL> declare
      d1        date := sysdate;
      d2        date := sysdate;
      d3        date := sysdate;
      d4        date := sysdate;
      myvavar   varchar2 (1);
    begin
      select case
               when extract (year from d1) != 0000
                and d1 < d2
               then
                 'X'
               when (extract (year from d3) != 0000)
                and (d3 > d2)
               then
                 'X'
               when (extract (year from d4) != 0000)
                and (d2 < d3)
               then
                 'X'
               else
                 'y'
             end
        into myvavar
        from dual;
    
      dbms_output.put_line (myvavar);
    end;
    /
    y
    PL/SQL procedure successfully completed.
    

    ?

  • DEFAULT CONSTRAINT with the INSTRUCTION BOX - Oracle 11.2.0.3

    Is it possible to create a default constraint on a table based on conditional logic.

    For example:

    CREATE TABLE TEST_T (NUMBER OF DEPT_NO,

    GRANT_FL CHAR (1)

    );

    GRANT_FL DEPT_NO

    10             Y

    10             Y

    0               N

    I want the DEPT_NO to be filled with a default value of 10 only when GRANT_FL = 'Y' otherwise the value to 0.

    I can do that with an after Insert trigger, but would be better if this can be done via the case statement that sets a default value.

    Thank you very much!

    Kevin

    Hi, Kevin,

    Sorry, I don't think that there is a way to do it with the DEFAULT options.

    Kevin_K wrote:

    ... I can do this with an after Insert trigger...

    I think that a trigger is your best bet, but a BEFORE INSERT trigger would be much simpler and more effective?  An INSTEAD OF trigger is another possibility.

  • update with the instruction box

    Hello

    I need to do something like this:

    update my_table set (prelucrat, err) = (select case
                                                             when r.id is not null then
                                                               ('D', null)
                                                             else
                                                               ('N', 'Nu exista persoana cu marca '||r.marca)
                                                           )
    where marca = r.marca and ctiserver = r.ctiserver
    

    But I got an error 'missing right parenthesis.

    'r' is a cursor variable, so this update is nested in one 'for r in (...) ". loop. "

    What I am doing wrong? Is it possible to update both the two columns, then select in this use case?

    Thank you.

    for r in loop (select...)

    Update my_table

    Set prelucrat = nvl2(r.id,'D','N')

    , err = nvl2 (r.id, null, 'Nu exista person cu marca' | r.marca)

    where marca = r.marca

    and ctiserver = r.ctiserver;

    end loop;

    ----

    Ramin Hashimzade

  • Need help with an instruction box with the data in the collection

    It is located in the section source on my interactive form, my collection process works, but there is "-" where there should be a "$0.00 ' in the summary section.

    There is a problem with my syntax of the case statement,


    Select pending, records c002 c001, c003 case $ if no then ' $0.00 ' if not no c003 end other "$0.00 ' from apex_collections where collection_name ="Summary1»»"

    Hi Doug,.

    The best way to handle this is with the NVL function, for example,

    SELECT c001 Awaiting, c002 Records, NVL(c003,0) Dollars ...
    

    and let the application manage the formatting of the field (which I suppose it's done for non-null values).

    However, if you want to use the CASE statement, here is how it works:

    SELECT CASE WHEN c003 IS NULL THEN 0 ELSE c003 END Dollars ...
    

    -Jennifer

  • problem with an instruction box in where clause getting ora-00905

    The query runs @ 07:00 every day and must return data for the last day, except Monday when the previous 3 days must be returned.

    Select ip.adm_date+ip.adm_time/86400 as admDateTime,

    IP.pt_code,

    ICC. Surname,

    CPI.first_given_name,

    IP.w_code,

    "as 'MR < 24."

    "as"MR 24-36"

    "as 'MR 36-48."

    "as"MR 48-60,"

    "" as "MR 60-72",.

    "as 'MR > 72."

    "as 'MR finalized."

    «like "Pharm/Tech",

    "as 'MR criteria."

    Of

    k_ipreg ip, k_cpireg ICC

    where ip.pt_code = cpi.pt_code

    and ip.disch_date is null

    and ip.adm_date between ((affaire quand (select to_char (sysdate,'d ') of double) = 1 then ip.adm_date > sysdate-3))

    of another ip.adm_date > sysdate-1

    end)) and sysdate

    and w_code not in ("ICW", "OEN", "ANTE", "BABY", "CHILD", "DELI", "ED", "MATY", "USSN")

    Try to learn to use properly the functions of Oracle:

    SELECT Ip.Adm_Date + Ip.Adm_Time / 86400 AS Admdatetime
         , Ip.Pt_Code
         , Cpi.Surname
         , Cpi.First_Given_Name
         , Ip.W_Code
         , '' AS "MR < 24"
         , '' AS "MR 24-36"
         , '' AS "MR 36-48"
         , '' AS "MR 48-60"
         , '' AS "MR 60-72"
         , '' AS "MR>72"
         , '' AS "MR Finalised"
         , '' AS "Pharm/Tech"
         , '' AS "Met MR Criteria"
      FROM K_Ipreg Ip, K_Cpireg Cpi
     WHERE Ip.Pt_Code = Cpi.Pt_Code
       AND Ip.Disch_Date IS NULL
       AND Ip.Adm_Date BETWEEN ( ( CASE
                                     WHEN TO_CHAR ( SYSDATE, 'd' ) = 1
                                     THEN SYSDATE - 3
                                     ELSE SYSDATE - 1
                                  END ) )
                           AND SYSDATE
       AND W_Code NOT IN ('ICW', 'NWB', 'ANTE', 'BABY', 'CHILD', 'DELI', 'ED', 'MATY', 'SCBU');
    
  • Problem with calculation of measurement using instruction box

    Hello Experts

    I have a measure that calculates the percent of sales by State - "sale by States" / "Total sales" * 100 and the requirement is when the numerator of the measure is < 11 then it should be ' *'. I tried to write a next case statement case when sales by State < 11 THEN ' *' ELSE sales by State END / "Total sales" * 100. I get an error saying incompatibility of data type of ideas how I can make it work.

    Thank you
    RC

    Published by: user1146711 on July 12, 2012 07:39

    Published by: user1146711 on July 12, 2012 09:17

    Hi RC,.

    I used to have the same than the one that I solved it using the following statement hope, that it will aid.

    BOX WHEN ((ARRAY. NUMERATORCOLUMN< 11))="" then="" '*'="" else="" concat(cast(round((((numerator="" column)/(denominator="" column))*100),1)="" as="" char(50)),'%')="">

    Here the results of instruction box in the two values is * Alternatively, value (which is stored as varchar instead of the number data type).
    Have, so the results are varchar. you get no data type mismatch error.

    That, by your statement the case... A case get varchar and another survey number which is the offset. (Logic)

    I have concatenated with the '%' sign to show results under 15%, 16% and stores the same results (Varchar).

    I hope that this solves your problem. Please, attribute points. :) :)

    Let me know, if you still find problems.

  • Problem with variable referencing of presentation (KEY Date) in the instruction box

    Hello

    I'm trying to reference variables of presentation created on a Date column in the instruction box to one of the columns in the query, as shown below:

    -case when '-citation details. "" "Created" between ' @{of} {1999-1-1}' and ' @{until} {2999-1-1} "then"-quote Metrics. " "" end of number of citations.

    I m getting a view displays error message with the following error message:

    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error occurred. [nQSError: 17001] Oracle error code: 1861, message: ORA-01861: literal does not match the format string to the call of the OIC OCIStmtExecute

    SQL issued: SELECT "-quote Types '." Name of level 2 Saw_0', case when '-citation details. "" Created "between" 01/04/2009 ' and ' 15 / 04/2009 ' then '-quote Metrics ' "." number of citations"end saw_1"(unit) - CATALOGUE of quotes"WHERE"-citation details "". "" Date of creation"BETWEEN timestamp ' 2009-04-01 00:00:00 ' timestamp AND ' 2009-04-15 00:00:00 ' ORDER BY saw_0


    When I created the prompt on the date field, I put the following in the command prompt:
    Cast ("-time".) Day)

    When I apply a filter on the query using these variables, it works fine.

    If anyone has faced this kind of question earlier and have a resolution, please help me.

    Thank you
    Kitenge

    Hello.

    Select the double - A NON-VALIDE MONTHS TO_DATE('1999-1-1','mm/dd/yyyy')

    Try this:

    OLD: EVALUATE ('TO_DATE (%1, %2)', ' @{of} {1999-1-1} ", mm/dd/yyyy)
    NEW: EVALUATE ('TO_DATE (%1, %2)', ' @{of} {01/01/1999} ", mm/dd/yyyy)

    and

    OLD: EVALUATE ('TO_DATE (%1, %2)', ' @{of} {2999-1-1} ", mm/dd/yyyy)
    NEW: EVALUATE ('TO_DATE (%1, %2)', ' @{of} {1, 1, 2999} ", mm/dd/yyyy)

    and if not ok after that, after an error in query SQL of NQQuery.log.

    Kind regards

    Goran Ocko

    http://108obiee.blogspot.com/

  • Svchost.exe - Application error. The instruction at "0x7d4caa9b" reference memory at "0x00000010". The memory cannot be: "read"

    Hi, I get the error message after my system boots - svchost.exe - Application error. The instruction at "0x7d4caa9b" reference memory at "0x00000010". The memory could not be "read".

    And then after a few minutes it stops and restarts.
    I'm also not able to use the mouse.
    I need help with this problem
    Thank you and best regards

    Hi GeorgeMotaung,

    ·         Did you do changes on the computer before the show?

    ·         Are you able to boot to the desktop?

    Follow these methods.

    Method 1: Start your computer in last known good configuration.

    How to start your computer by using last good known Windows XP Configuration

    http://support.Microsoft.com/kb/307852

    Method 2: Follow these steps:

    Step 1: Start the computer in safe mode and check if the problem persists.

    A description of the options to start in Windows XP Mode

    http://support.Microsoft.com/kb/315222

    Step 2: Perform a clean boot to see if there is a conflict of software like the clean boot helps eliminate software conflicts.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Note: After the boot minimum troubleshooting steps, follow section How to configure Windows to use a Normal startup state of the link to return the computer to a Normal startupmode.

    After the clean boot used to resolve the problem, you can follow these steps to configure Windows XP to start normally.

    (a) click Start and then click Run.

    (b) type msconfig and click OK.

    (c) the System Configuration Utility dialog box appears.

    (d) click the general tab, click Normal Startup - load all services and device drivers and then click OK.

    (e) when you are prompted, click on restart to restart the computer.

  • Satellite L350-214 - error with the software Reeltime

    Hello

    I have a Satellite L350-214 with Windows 7 Pro and have encountered an error with the software Reeltime, I uninstalled and reinstalled and still get the error below. Any help or assistance would be great

    Tony Miller

    Log name: Application
    Source: Windows Error Reporting
    Date: 2010-11-30 12:27:58
    Event ID: 1001
    Task category: no
    Level: Information
    Keywords: Classic
    User: n/a
    Computer: Tony-TOSH
    Description:
    Fault bucket 1223018385, type 5
    Event name: CLR20r3
    Answer: No available
    Cabin ID: 0
    Signature of the problem:
    P1: tosreeltime.exe
    P2: 1.0.0.0
    P3: 4a769d0e
    P4: WindowsBase
    P5: 3.0.0.0
    P6: 4b5950b7
    P7: a86
    P8: 18
    P9: System.InvalidOperationException
    P10:
    Attached files:
    C:\Users\Tony\AppData\Local\Temp\WER7C9E.tmp.WERIn ternalMetadata.xml
    These files are available here:
    C:\Users\Tony\AppData\Local\Microsoft\Windows\WER\ ReportArchive\AppCrash_tosreeltime.exe_25c5a6496c7 ad44943ce88637e3389e8a80bd45_07f0c745
    Symbol of the analysis:
    Recheck for solution: 0
    Report ID: d5b71327-fc74-11df-a596-00266c333aed
    State: 0
    The event XML:



    1001
    4
    0
    0 x 80000000000000

    37886
    Application
    Tony-TOSH



    1223018385
    5
    CLR20r3
    Not available
    0
    tosreeltime.exe
    1.0.0.0
    4a769d0e
    WindowsBase
    3.0.0.0
    4b5950b7
    A86
    18
    System.InvalidOperationException



    C:\Users\Tony\AppData\Local\Temp\WER7C9E.tmp.WERIn ternalMetadata.xml

    C:\Users\Tony\AppData\Local\Microsoft\Window s\WER\ReportArchive\AppCrash_tosreeltime.exe_25c5a 6496c7ad44943ce88637e3389e8a80bd45_07f0c745


    0
    d5b71327-fc74-11df-A596-00266c333aed
    0


    My system specs

    Hey,.

    If you get this error Reeltime, you should try Ccleaner. There may be a registry problem and CCleaner might solve this problem. This great freeware and easy tool which you can download here:
    http://www.Piriform.com/

    Check this box!

  • Cannot install SP3 because of an error with KB2393802

    I can not install SP3 because of an error with KB2393802 - he says I have other running programs andI don't? I am running Windows XP any help out there?

    Thanks for the reply. The error that you list can be associated with malware. This is not always the case, but many times it is. Therefore, the first step is to make sure that your computer is not infected. Follow the instructions below carefully.

    Click HERE. Download Malwarebytes. Update Malwarebytes and perform a scan.  Choose whether to remove anything found. Once completed click HERE and download Superantispyware Portable. Perform a quick scan again remove anything found.

  • Svchost.exe - banner of error application the instruction at 0x5ba0ddae referenced memory at 0x00000000.

    Svchost.exe - banner of error application the instruction at 0x5ba0ddae referenced memory at 0x00000000. The memory could not be written.  Banner returns after you press ok to complete the program and cancel without debugging.  Machine will not now stop down. Tried system restore to previous date does not resolve.  Some applications work, that some do not, machine shuts himself often.  Windows Update will not work.  Operating system is Windows XP media center edition with Service Pack 3.  A short of ideas.

    It seems that my hard drive is faulty and it is originally this and quite a few other questions, I'm going to change and upgrade the operating system.  Thanks for the help.

  • IRQL_NOT_LESS_OR_EQUAL Error with BSOD error

    Hello

    I get the IRQL_NOT_LESS_OR_EQUAL Error with blue screen when I start the machine.
    STOP: 0X0000000A (0X00000000, 0X804DC11D, 0X00000001, 0 X 000000002)

    I can't that connection in Debugging Mode.winDBG output points to a file PxHelp20.sys, which is a Sonic driver. Is it possible to delete this file? Or is this some kind of virus? (out of winDBG is attached below). There was no new HW SW or recently installed or when this error occurred.

    I also tried to run Verifier.exe with the option "Select all drivers installed automatically on this computer" and as soon as I chose this option, another mistake (and cannot change this option), DRIVER_IRQL_NOT_LESS_OR_EQUAL
    STOP: 0x000000D1(0x8068329C,0x00000002,0x00000000,0x89E4460A)

    Thanks in advance,
    SRSK

    output in winDbg:

    Debug version of Microsoft Windows (R) 6.11.0001.404 X 86

    Copyright (c) Microsoft Corporation. All rights reserved.

    Loading dump file [C:\WINDOWS\Minidump\Mini102109-01.dmp]

    The mini kernel dump file: only registers and the trace of the stack are available

    Symbol search path is: SRV * c:\Symbols* http://msdl.microsoft.com/download/symbols

    Executable search path is:

    Windows XP Kernel Version 2600 (Service Pack 3) PUTS free x 86 compatible

    Product: WinNt, suite: TerminalServer SingleUserTS

    By: 2600.xpsp_sp3_gdr.090206 - 1234

    Computer name:

    Kernel base = 0x804d7000 PsLoadedModuleList = 0x8055b1c0

    The debugging session: 23:57:36.015 Tue Oct 20, 2009 (GMT-4)

    System Uptime: 0 days 9:05:10.605

    Loading the kernel symbols

    ...............................................................

    ................................................................

    .......

    Loading user symbols

    Loading unloaded module list

    ..................

    *******************************************************************************

    *                                                                             *

    * Bugcheck analysis *.

    *                                                                             *

    *******************************************************************************

    Use! analyze - v to obtain detailed debugging information.

    Bugcheck 1000007E, {c0000005, 8736d01a, f78d9ec4, f78d9bc0}

    Could not load the PxHelp20.sys, 0n2 error Win32 image

    WARNING: Unable to verify timestamp for PxHelp20.sys

    ERROR: Module load completed but symbols can be loaded for PxHelp20.sys

    Probably caused by: PxHelp20.sys (PxHelp20 + 59b 7)

    Follow-up: MachineOwner

    ---------

    KD >! analyze - v

    *******************************************************************************

    *                                                                             *

    * Bugcheck analysis *.

    *                                                                             *

    *******************************************************************************

    SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M (1000007e)

    It is a very common bugcheck.  Usually the PIN address of exception

    the driver/function that caused the problem.  Always note this address

    and the date of the picture link / driver that contains this address.

    Some common problems are the exception code 0 x 80000003.  This means a hard

    coded breakpoint or assertion was hit, but this system has been started

    / /NODEBUG.  It is not supposed to happen as developers should never have

    breakpoints coded hard in retail code, but...

    In this case, make sure a debugger must be connected and the

    system startup/DEBUG.  This will we will see why this breakpoint is

    happening.

    Arguments:

    Arg1: c0000005, the unhandled exception code

    Arg2: 8736d01a, the address that the exception occurred at

    Arg3: f78d9ec4, address of Exception report

    Arg4: f78d9bc0, address of the context record

    Debugging information:

    ------------------

    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - the instruction at "0 x % lx 08" referenced memory at "0 x % 08 lx. The memory could not be '%s '.

    FAULTING_IP:

    + 59b 7

    8736d01a 0fb74714 movzx eax, word ptr [edi + 14 h]

    EXCEPTION_RECORD: f78d9ec4-(.exr 0xfffffffff78d9ec4)

    ExceptionAddress: 8736d01a

    ExceptionCode: c0000005 (access violation)

    ExceptionFlags: 00000000

    NumberParameters: 2

    Parameter [0]: 00000000

    Parameter [1]: 00000014

    Attempt to read from address 00000014

    CONTEXT: f78d9bc0-(.cxr 0xfffffffff78d9bc0)

    EAX = 00000000 ebx = 00000000 ecx = 8a60e910 edx = 00000000 esi = 00000000 edi = 00000000

    EIP = 8736d01a esp = f78d9f8c ebp = f78da54c iopl = 0 nv up ei pl zr pe nc

    CS = 0008 ss = 0010 ds = 0023're = 0023 fs = 0030 gs = 0000 efl = 00210246

    8736d01a 0fb74714 movzx eax, word ptr [edi + 14 h] ds:0023:00000014 is?

    Reset the default scope

    CUSTOMER_CRASH_COUNT: 1

    Nom_processus: System

    Error_code: (NTSTATUS) 0xc0000005 - the instruction at "0 x % lx 08" referenced memory at "0 x % 08 lx. The memory could not be '%s '.

    EXCEPTION_PARAMETER1: 00000000

    EXCEPTION_PARAMETER2: 00000014

    READ_ADDRESS: 00000014

    FOLLOWUP_IP:

    PxHelp20 + 59b 7

    f766c9b7?              ???

    FAILED_INSTRUCTION_ADDRESS:

    + 24b952f00f7dfdc

    8736d01a 0fb74714 movzx eax, word ptr [edi + 14 h]

    BUGCHECK_STR: 0X7E

    DEFAULT_BUCKET_ID: NULL_CLASS_PTR_DEREFERENCE

    LAST_CONTROL_TRANSFER: from 68772073 to 8736d01a

    SYMBOL_ON_RAW_STACK: 1

    STACK_ADDR_RAW_STACK_SYMBOL: fffffffff78da140

    STACK_COMMAND: dds F78DA140-0 x 20; Ko

    STACK_TEXT:

    f78da120 ffffb905

    f78da124 0f66f18a

    f78da128 6640c6b6

    f78da12c 80d1b60f

    f78da130 e2f73fe2

    f78da134 edc0cd86

    f78da138 0f664106

    F766c9b7 f78da13c PxHelp20 + 0x59b7

    f78da140 20a366e1

    f78da144 41b4c300

    f78da148 8a55aabb

    f78da14c cd002416

    f78da150 810f7213

    f78da154 75aa55fb

    f78da158 01c1f609

    f78da15c 06fe0474

    f78da160 66 30014

    f78da164 66061e60

    f78da168 660010 a-1

    f78da16c 001C 0603

    f78da170 b 20063, 66

    f78da174 3a820f00

    f78da178 6a661e00

    f78da17c 06506600

    f78da180 10686653

    f78da184 80000100

    0000143e f78da188

    f78da18c 000c850f

    f78da190 80ffb3e8

    0000143e f78da194

    f78da198 0061840f

    f78da19c 168a42b4

    SYMBOL_NAME: PxHelp20 + 59b 7

    FOLLOWUP_NAME: MachineOwner

    MODULE_NAME: PxHelp20

    Nom_image: PxHelp20.sys

    DEBUG_FLR_IMAGE_TIMESTAMP: 4679 has 978

    FAILURE_BUCKET_ID: 0x7E_BAD_IP_PxHelp20 + 59b 7

    BUCKET_ID: 0x7E_BAD_IP_PxHelp20 + 59b 7

    Follow-up: MachineOwner

    ---------

    SRSK,
    Well I looked around the PxHelp20.sys file and it looks like it is related to things CD\DVD.  If it was me...   I rename the file to .old or move it to a temporary folder and then restart and see what happens.  If you try that bak to view the results.  Good luck. QQ learn manage!

  • Get the IRQL_NOT_LESS_OR_EQUAL Error with blue screen

    Hello

    I get the IRQL_NOT_LESS_OR_EQUAL Error with blue screen when I start the machine.
    STOP: 0X0000000A (0X00000000, 0X804DC11D, 0X00000001, 0 X 000000002)

    I can't connect in Debug Mode. I tried winDBG, but cannot interpret the output (output is attached below). There was no new HW SW or recently installed or when this error occurred.

    I also tried to run Verifier.exe with the option "Select all drivers installed automatically on this computer" and as soon as I chose this option, another mistake (and cannot change this option), DRIVER_IRQL_NOT_LESS_OR_EQUAL
    STOP: 0x000000D1(0x8068329C,0x00000002,0x00000000,0x89E4460A)

    Thanks in advance,
    SRSK

    output in winDbg:

    Debug version of Microsoft Windows (R) 6.11.0001.404 X 86

    Copyright (c) Microsoft Corporation. All rights reserved.

    Loading dump file [C:\WINDOWS\Minidump\Mini102109-01.dmp]

    The mini kernel dump file: only registers and the trace of the stack are available

    Symbol search path is: * invalid *.

    ****************************************************************************

    * Loading of the symbol may be unreliable without a symbol search path.           *

    * Use .symfix to get the debugger to choose a symbol path.                   *

    * After adjusting your path to symbols, use .reload to refresh the locations of symbols. *

    ****************************************************************************

    Executable search path is:

    *********************************************************************

    * Symbols cannot be loaded because the path is not initialized. *

    *                                                                   *

    * The symbol path can be defined: *.

    * using the _NT_SYMBOL_PATH environment variable.                 *

    * with the help of the there when you start the debugger argument. *.

    * using the .sympath and .sympath + *.

    *********************************************************************

    Could not load the ntoskrnl.exe, 0n2 error Win32 image

    WARNING: Unable to verify timestamp for ntoskrnl.exe

    ERROR: Module load completed but symbols can be loaded for ntoskrnl.exe

    Windows XP Kernel Version 2600 (Service Pack 3) PUTS free x 86 compatible

    Product: WinNt, suite: TerminalServer SingleUserTS

    Computer name:

    Kernel base = 0x804d7000 PsLoadedModuleList = 0x8055b1c0

    The debugging session: 23:57:36.015 Tue Oct 20, 2009 (GMT-4)

    System Uptime: 0 days 9:05:10.605

    *********************************************************************

    * Symbols cannot be loaded because the path is not initialized. *

    *                                                                   *

    * The symbol path can be defined: *.

    * using the _NT_SYMBOL_PATH environment variable.                 *

    * with the help of the there when you start the debugger argument. *.

    * using the .sympath and .sympath + *.

    *********************************************************************

    Could not load the ntoskrnl.exe, 0n2 error Win32 image

    WARNING: Unable to verify timestamp for ntoskrnl.exe

    ERROR: Module load completed but symbols can be loaded for ntoskrnl.exe

    Loading the kernel symbols

    ...............................................................

    ................................................................

    .......

    Loading user symbols

    Loading unloaded module list

    ..................

    *******************************************************************************

    *                                                                             *

    * Bugcheck analysis *.

    *                                                                             *

    *******************************************************************************

    Use! analyze - v to obtain detailed debugging information.

    Bugcheck 1000007E, {c0000005, 8736d01a, f78d9ec4, f78d9bc0}

    The kernel symbols are FALSE. Correct symbols to do the analysis.

    *************************************************************************

    ***                                                                   ***

    ***                                                                   ***

    Your debugger is not using the appropriate symbols *.

    ***                                                                   ***

    In order for this command works correctly, your symbol path *.

    should point to .pdb files have the type information complete.      ***

    ***                                                                   ***

    Some (such as the public OS symbols) .pdb files are not *.

    contain the required information.  The contact group that *.

    you provided with these symbols, if you need this command for *.

    work.                                                          ***

    ***                                                                   ***

    Type referenced: nt! _KPRCB *.

    *

    Type referenced: nt! KPRCB                                      ***

    Type referenced: nt! _KPRCB *.

    *

    Type referenced: nt! _KPRCB *.

    *************************************************************************

    WARNING: Unable to verify timestamp for Ntfs.sys

    ERROR: Module load completed but symbols can be loaded for Ntfs.sys

    Could not load the PxHelp20.sys, 0n2 error Win32 image

    WARNING: Unable to verify timestamp for PxHelp20.sys

    ERROR: Module load completed but symbols can be loaded for PxHelp20.sys

    Type referenced: nt! _KPRCB *.

    *                                                                  ***

    Type referenced: nt! _KPRCB *.

    * Symbols cannot be loaded because the path is not initialized. *

    *                                                                   *

    * The symbol path can be defined: *.

    * using the _NT_SYMBOL_PATH environment variable.                 *

    * with the help of the there when you start the debugger argument. *.

    * using the .sympath and .sympath + *.

    *********************************************************************

    *********************************************************************

    * Symbols cannot be loaded because the path is not initialized. *

    *                                                                   *

    * The symbol path can be defined: *.

    * using the _NT_SYMBOL_PATH environment variable.                 *

    * with the help of the there when you start the debugger argument. *.

    * using the .sympath and .sympath + *.

    *********************************************************************

    Probably caused by: PxHelp20.sys (PxHelp20 + 59b 7)

    Follow-up: MachineOwner

    ---------

    KD > .symfix

    KD > .reload

    Could not load the ntoskrnl.exe, 0n2 error Win32 image

    WARNING: Unable to verify timestamp for ntoskrnl.exe

    ERROR: Module load completed but symbols can be loaded for ntoskrnl.exe

    Loading the kernel symbols

    ...............................................................

    ................................................................

    .......

    Loading user symbols

    Loading unloaded module list

    ..................

    KD > kb

    ChildEBP RetAddr Args to child

    WARNING: Frame IP not in any known module. Sequence of images may be wrong.

    68772073 20657265 20657261 3f756f79 0x8736d01a f78da54c

    20657265 20657261 3f756f79 6d6f4820 f78da550 0 x 68772073

    f78da554 20657261 3f756f79 6d6f4820 63207265 0 x 20657265

    f78da558 3f756f79 6d6f4820 63207265 736c6c61 0 x 20657261

    f78da55c 6d6f4820 63207265 736c6c61 62654 has 20 0x3f756f79

    f78da560 63207265 62654a 20 00217375 0x6d6f4820 736c6c61

    f78da564 736c6c61 62654a 20 00217375 666e6f63 0 x 63207265

    62654a 20 00217375 666e6f63 692e6769 0x736c6c61 f78da568

    f78da56c 00217375 666e6f63 692e6769 0000696e 0x62654a20

    f78da570 666e6f63 692e6769 0000696e 73726576 0 x 217375

    f78da574 0000696e 692e6769 73726576 006e6f69 0x666e6f63

    00000000 73726576 006e6f69 746f7571 0x692e6769 f78da578

    KD > lmv

    start end module name

    804 d 7000 806ed700 nt T (no symbol)

    Loaded symbol image file: ntoskrnl.exe

    Image path: ntoskrnl.exe

    Image name: ntoskrnl.exe

    Timestamp: Fri Feb 06 06:08:08 2009 (498C1A18)

    CheckSum: 002197F5

    ImageSize: 00216700

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    806ee000 8070e300 hal (postponed)

    Image path: hal.dll

    Image name: hal.dll

    Timestamp: Sun Apr 13 14:31:27 2008 (4802517F)

    CheckSum: 00024F17

    ImageSize: 00020300

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    951ba180 95190000 kmixer (postponed)

    Image path: c:\windows\system32\drivers\kmixer.sys

    Image name: c:\windows\system32\drivers\kmixer.sys

    Timestamp: Sun Apr 13 14:45:07 2008 (480254B 3)

    CheckSum: 0002F580

    ImageSize: 0002A 180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    953c 6000 953d 2000 1 (postponed)

    Image path: 1C.tmp

    Image name: 1C.tmp

    Timestamp: Sat Oct 17 23:21:43 2009 (4ADA89C7)

    CheckSum: 00007E35

    ImageSize: 0000-000 C

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    98528000 98579880 srv (postponed)

    Image path: srv.sys

    Image name: srv.sys

    Timestamp: Thu Dec 11 05:57:07 2008 (4940F203)

    CheckSum: 0005EF30

    ImageSize: 00051880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    985f5000 98609480 wdmaud (postponed)

    Image path: wdmaud.sys

    Image name: wdmaud.sys

    Timestamp: Sun Apr 13 15:17:18 2008 (48025C3E)

    CheckSum: 00018CBD

    ImageSize: 00014480

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9865 to 000 9869aa80 HTTP (postponed)

    Image path: HTTP.sys

    Image name: HTTP.sys

    Timestamp: Sun Apr 13 14:53:48 2008 (480256BC)

    Checksum: 00046D 31

    ImageSize: 00040A 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9870e000 9873 has 180 mrxdav (postponed)

    Image path: c:\windows\system32\drivers\mrxdav.sys

    Image name: c:\windows\system32\drivers\mrxdav.sys

    Timestamp: Sun Apr 13 14:32:42 2008 (480251CA)

    Sum: 0002C 564

    ImageSize: 0002C 180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a7b3000 9a 825100 dump_iastor (postponed)

    Image path: dump_iastor.sys

    Image name: dump_iastor.sys

    Timestamp: Tue Mar 23 15:13:55 2004 (40608 C 73)

    CheckSum: 00072C3C

    ImageSize: 00072100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a 826000 9 has 876380 avgldx86 (postponed)

    Image path: avgldx86.sys

    Image name: avgldx86.sys

    Timestamp: Thu Jul 09 20:17:49 2009 (4A5688AD)

    Sum: 0005C 506

    ImageSize: 00050380

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a 877000 9a89c500 ipnat (postponed)

    Image path: ipnat.sys

    Image name: ipnat.sys

    Timestamp: Sun Apr 13 14:57:10 2008 (48025786)

    CheckSum: 0002AF4A

    ImageSize: 00025500

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a89d000 9a90c280 mrxsmb (postponed)

    Image path: mrxsmb.sys

    Image name: mrxsmb.sys

    Timestamp: Fri Oct 24 07:21:07 2008 (4901AFA3)

    CheckSum: 0007CB15

    ImageSize: 0006F280

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a90d000 9a937e80 rdbss (postponed)

    Image path: rdbss.sys

    Image name: rdbss.sys

    Timestamp: Sun Apr 13 15:28:38 2008 (48025EE6)

    CheckSum: 0002F906

    ImageSize: 0002AE80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a 938000 9a959d00 afd (postponed)

    Image path: afd.sys

    Image name: afd.sys

    Timestamp: Thu Aug 14 06:04:35 2008 (48A 40333)

    CheckSum: 000292E0

    ImageSize: 00021D 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a95a000 9a981c00 netbt (postponed)

    Image path: netbt.sys

    Image name: netbt.sys

    Timestamp: Sun Apr 13 15:20:59 2008 (48025D1B)

    CheckSum: 0002FE7A

    ImageSize: 00027C 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a 982000 9a99ae00 avgtdix (postponed)

    Image path: c:\windows\system32\drivers\avgtdix.sys Device

    Image name: c:\windows\system32\drivers\avgtdix.sys Device

    Timestamp: My Apr 06 09:42:27 2009 (49DA06C3)

    CheckSum: 00029806

    ImageSize: 00018E00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a99b000 9a9f3480 tcpip (postponed)

    Image path: tcpip.sys

    Image name: tcpip.sys

    Timestamp: Fri Jun 20 07:51:09 2008 (485B99AD)

    CheckSum: 0005ED6B

    ImageSize: 00058480

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9a9f4000 9aa06600 ipsec (postponed)

    Image path: ipsec.sys

    Image name: ipsec.sys

    Timestamp: Sun Apr 13 15:19:42 2008 (48025CCE)

    CheckSum: 00016389

    ImageSize: 00012600

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9aa27000 9aac3000 ctac32k (postponed)

    Image path: ctac32k.sys

    Image name: ctac32k.sys

    Timestamp: Fri Aug 11 02:45:14 2006 (44DC277A)

    CheckSum: 00081570

    ImageSize: 0009C 000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9aac3000 9aaea000 ctsfm2k (postponed)

    Image path: ctsfm2k.sys

    Image name: ctsfm2k.sys

    Timestamp: Fri Aug 11 02:45:18 2006 (44DC277E)

    Checksum: 000275C 8

    ImageSize: 00027000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9aaea000 9ab17000 emupia2k (postponed)

    Image path: emupia2k.sys

    Image name: emupia2k.sys

    Timestamp: Fri Aug 11 02:45:17 2006 (44DC277D)

    CheckSum: 00013B 96

    ImageSize: 0002D 000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9ab17000 9ac1b000 ha10kx2k (postponed)

    Image path: ha10kx2k.sys

    Image name: ha10kx2k.sys

    Timestamp: Fri Aug 11 02:45:24 2006 (44DC2784)

    CheckSum: 000BD2C0

    ImageSize: 00104000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9ac1b000 9ac45000 hap16v2k (postponed)

    Image path: hap16v2k.sys

    Image name: hap16v2k.sys

    Timestamp: Fri Aug 11 02:45:26 2006 (44DC2786)

    Checksum: 0002D 547

    ImageSize: 0002A, 000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b20b000 9b219a80 usbaudio (postponed)

    Image path: usbaudio.sys

    Image name: usbaudio.sys

    Timestamp: Sun Apr 13 14:45:11 2008 (480254B 7)

    CheckSum: 0001D8AC

    ImageSize: 0000EA80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b2bb000 9b2be900 o ndisuio (postponed)

    Image path: ndisuio.sys

    Image name: ndisuio.sys

    Timestamp: Sun Apr 13 14:55:57 2008 (4802573D)

    CheckSum: 00008481

    ImageSize: 00003900

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b2dc000 9b2dcb80 Null (postponed)

    Image path: Null.SYS

    Image name: Null.SYS

    Timestamp: Fri Aug 17 16:47:39 2001 (3B7D82EB)

    CheckSum: 00008483

    ImageSize: 00000B 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b 964000 9b972d80 arp1394 (postponed)

    Image path: arp1394.sys

    Image name: arp1394.sys

    Timestamp: Sun Apr 13 14:51:22 2008 (4802562A)

    CheckSum: 0000EE1E

    ImageSize: 0000ED80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b 974000 9b97c700 wanarp (postponed)

    Image path: wanarp.sys

    Image name: wanarp.sys

    Timestamp: Sun Apr 13 14:57:20 2008 (48025790)

    CheckSum: 00009785

    ImageSize: 00008700

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b 994000 9b99ee00 Fips (postponed)

    Image path: Fips.SYS

    Image name: Fips.SYS

    Timestamp: Sun Apr 13 14:33:27 2008 (480251F7)

    CheckSum: 0001559A

    ImageSize: 0000AE00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9b9b4000 9b9bc780 netbios (postponed)

    Image path: netbios.sys

    Image name: netbios.sys

    Timestamp: Sun Apr 13 14:56:01 2008 (48025741)

    CheckSum: 00010B5E

    ImageSize: 00008780

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9bd09000 9bd0c240 OMCI (postponed)

    Image path: OMCI. SYS

    Image name: OMCI. SYS

    Timestamp: Sea Aug 22 12:42:57 2001 (3B83E111)

    CheckSum: 0000FDD9

    ImageSize: 00003240

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    9ca 75000 9 ca 77280 Rdbss (postponed)

    Image path: rasacd.sys

    Image name: rasacd.sys

    Timestamp: Fri Aug 17 16:55:39 2001 (3B7D84CB)

    CheckSum: 0000B2E7

    ImageSize: 00002280

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    a6782000 dog guard a6786500 (postponed)

    Image path: watchdog.sys

    Image name: watchdog.sys

    Timestamp: Sun Apr 13 14:44:59 2008 (480254AB)

    CheckSum: 000078B 2

    ImageSize: 00004500

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    a6870000 a687f900 Cdfs (postponed)

    Image path: Cdfs.SYS

    Image name: Cdfs.SYS

    Timestamp: Sun Apr 13 15:14:21 2008 (48025B8D)

    CheckSum: 000127A 4

    ImageSize: 0000F900

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    a7027000 a7029900 Dxapi (postponed)

    Image path: Dxapi.sys

    Image name: Dxapi.sys

    Timestamp: Fri Aug 17 16:53:19 2001 (3B7D843F)

    CheckSum: 0000ACC2

    ImageSize: 00002900

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    aa431000 aa437700 USBSTOR (postponed)

    Image path: USBSTOR. SYS

    Image name: USBSTOR. SYS

    Timestamp: Sun Apr 13 14:45:37 (1 480254) 2008

    CheckSum: 00011541

    ImageSize: 00006700

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ad66c000 ad673d80 usbccgp (postponed)

    Image path: usbccgp.sys

    Image name: usbccgp.sys

    Timestamp: Sun Apr 13 14:45:38 2008 (480254 2)

    CheckSum: 000100CC

    ImageSize: 00007D 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ad684000 ad689280 avgmfx86 (postponed)

    Image path: avgmfx86.sys

    Image name: avgmfx86.sys

    Timestamp: Wed Jul 01 16:37:21 2009 (4A4BC901)

    CheckSum: 0000B17B

    ImageSize: 00005280

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ad68c000 ad693880 NPH (postponed)

    Image path: Npfs.SYS

    Image name: Npfs.SYS

    Timestamp: Sun Apr 13 14:32:38 2008 (6 480251)

    CheckSum: 0000C3AB

    ImageSize: 00007880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ad694000 ad698a80 Msfs (postponed)

    Image path: Msfs.SYS

    Image name: Msfs.SYS

    Timestamp: Sun Apr 13 14:32:38 2008 (6 480251)

    CheckSum: 00005BB8

    ImageSize: 00004A 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ad69c000 ad6a1200 vga (postponed)

    Image path: vga.sys

    Image name: vga.sys

    Timestamp: Sun Apr 13 14:44:40 2008 (48025498)

    Checksum: 0001170C

    ImageSize: 00005200

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ad6a4000 ad6aa180 HIDPARSE (postponed)

    Image path: HIDPARSE. SYS

    Image name: HIDPARSE. SYS

    Timestamp: Sun Apr 13 14:45:22 2008 (480254 2)

    CheckSum: 00008E19

    ImageSize: 00006180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b03d8000 b03d8d00 dxgthk (postponed)

    Image path: dxgthk.sys

    Image name: dxgthk.sys

    Timestamp: Fri Aug 17 16:53:12 2001 (3B7D8438)

    CheckSum: 000035E7

    ImageSize: 00000D 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9722000 b977ff00 update (postponed)

    Image path: update.sys

    Image name: update.sys

    Timestamp: Sun Apr 13 14:39:46 2008 (48025372)

    CheckSum: 0006CBBF

    ImageSize: 0005DF00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9780000 b97afe80 rdpdr (postponed)

    Image path: rdpdr.sys

    Image name: rdpdr.sys

    Timestamp: Sun Apr 13 14:32:50 (480251 2) 2008

    CheckSum: 00039B0C

    ImageSize: 0002FE80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b97b0000 b97c0e00 psched (postponed)

    Image path: psched.sys

    Image name: psched.sys

    Timestamp: Sun Apr 13 14:56:36 2008 (48025764)

    CheckSum: 0001E655

    ImageSize: 00010E00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b97c1000 b97d7580 ndiswan (postponed)

    Image path: ndiswan.sys

    Image name: ndiswan.sys

    Timestamp: Sun Apr 13 15:20:41 2008 (48025-09)

    CheckSum: 00018B 10

    ImageSize: 00016580

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b97d8000 b9826500 luipsec (postponed)

    Image path: luipsec.sys

    Image name: luipsec.sys

    Timestamp: Fri Feb 20 14:55:19 2008 (47BC85A7)

    CheckSum: 0005082D

    ImageSize: 0004E500

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9827000 b9860000 arkzlin6 (postponed)

    Image path: arkzlin6. SYS

    Image name: arkzlin6. SYS

    Timestamp: Sun Jul 13 18:54 2008 (487A 8788)

    CheckSum: 00042E1D

    ImageSize: 00039000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9860000 b9873900 parport (postponed)

    Image path: parport.sys

    Image name: parport.sys

    Timestamp: Sun Apr 13 14:40:09 2008 (48025389)

    CheckSum: 00018D4E

    ImageSize: 00013900

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9874000 b98a7000 ctoss2k (postponed)

    Image path: ctoss2k.sys

    Image name: ctoss2k.sys

    Timestamp: Fri Aug 11 02:45:23 2006 (44DC2783)

    CheckSum: 000299B 7

    ImageSize: 00033000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b98a7000 b98caa80 portcls (postponed)

    Image path: portcls.sys

    Image name: portcls.sys

    Timestamp: Sun Apr 13 15:19:40 2008 (48025CCC)

    CheckSum: 00030B 59

    ImageSize: 00023A 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b98cb000 b9944f80 ctaud2k (postponed)

    Image path: ctaud2k.sys don't

    Image name: ctaud2k.sys don't

    Timestamp: Fri Aug 11 02:45:37 2006 (44DC2791)

    CheckSum: 00084619

    ImageSize: 00079F80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9945000 b9967700 ks (deferred)

    Image path: ks.sys

    Image name: ks.sys

    Timestamp: Sun Apr 13 15:16:34 (48025 12) 2008

    CheckSum: 000326F0

    ImageSize: 00022700

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9968000 b99dea00 atinewp2 (postponed)

    Image path: atinewp2.sys

    Image name: atinewp2.sys

    Timestamp: Kills Jul 27 21:43:40 2004 (410704CC)

    CheckSum: 00083DD5

    ImageSize: 00076A 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b99df000 b9a02200 USBPORT (postponed)

    Image path: USBPORT. SYS

    Image name: USBPORT. SYS

    Timestamp: Sun Apr 13 14:45:34 2008 (480254CE)

    CheckSum: 0002AAEC

    ImageSize: 00023200

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9a03000 b9a20a80 b57xp32 (postponed)

    Image path: b57xp32.sys

    Image name: b57xp32.sys

    Timestamp: Mon August 23 at 17:49:29 2004 (412A 6669)

    CheckSum: 00028D3C

    ImageSize: 0001DA80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9a21000 b9a34f00 VIDEOPRT (postponed)

    Image path: VIDEOPRT. SYS

    Image name: VIDEOPRT. SYS

    Timestamp: Sun Apr 13 14:44:39 2008 (48025497)

    CheckSum: 000142CF

    ImageSize: 00013F00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9a35000 b9bb2000 ati2mtag (postponed)

    Image path: ati2mtag.sys

    Image name: ati2mtag.sys

    Timestamp: Thu Feb 09 21:57:44 2006 (43EC0128)

    CheckSum: 00179501

    ImageSize: 0017D 000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9cd6000 b9cda580 ptilink (postponed)

    Image path: ptilink.sys

    Image name: ptilink.sys

    Timestamp: Fri Aug 17 16:49:53 2001 (3B7D8371)

    Sum: 0000648C

    ImageSize: 00004580

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    b9cde000 b9ce2a80 TDI (postponed)

    Image path: TDI. SYS

    Image name: TDI. SYS

    Timestamp: Sun Apr 13 15:00:04 2008 (48025834)

    CheckSum: 0000649E

    ImageSize: 00004A 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba0a0000 ba0a9f00 termdd (postponed)

    Image path: termdd.sys

    Image name: termdd.sys

    Timestamp: Sun Apr 13 14:38:36 2008 (4802532 C)

    CheckSum: 0000DEB5

    ImageSize: 00009F00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba0b0000 ba0b8900 msgpc (postponed)

    Image path: msgpc.sys

    Image name: msgpc.sys

    Timestamp: Sun Apr 13 14:56:32 2008 (48025760)

    CheckSum: 0000DE60

    ImageSize: 00008900

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba0c0000 ba0cbd00 raspptp (postponed)

    Image path: raspptp.sys

    Image name: raspptp.sys

    Timestamp: Sun Apr 13 15:19:47 2008 (48025 CD 3)

    CheckSum: 000188A 6

    ImageSize: 0000BD00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba0d0000 ba0da200 raspppoe (postponed)

    Image path: raspppoe.sys

    Image name: raspppoe.sys

    Timestamp: Sun Apr 13 14:57:31 2008 (4802579B)

    Sum: 0000D 695

    ImageSize: 0000A 200

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba0e0000 ba0ec880 rasl2tp (postponed)

    Image path: rasl2tp.sys

    Image name: rasl2tp.sys

    Timestamp: Sun Apr 13 15:19:43 2008 (48025CCF)

    CheckSum: 0000FAE5

    ImageSize: 0000C 880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba0f0000 ba0fa480 imapi (postponed)

    Image path: imapi.sys

    Image name: imapi.sys

    Timestamp: Sun Apr 13 14:40:57 2008 (B 480253, 9)

    CheckSum: 00014A 61

    ImageSize: 0000A 480

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba100000 ba10e100 redbook (postponed)

    Image path: redbook.sys

    Image name: redbook.sys

    Timestamp: Sun Apr 13 14:40:27 2008 (4802539B)

    CheckSum: 0001462F

    ImageSize: 0000E100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba63d000 ba64c600 cdrom (postponed)

    Image path: cdrom.sys

    Image name: cdrom.sys

    Timestamp: Sun Apr 13 14:40:45 2008 (480253AD)

    CheckSum: 00018524

    ImageSize: 0000F600

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba64d000 ba65cc00 series (postponed)

    Image path: serial.sys

    Image name: serial.sys

    Timestamp: Sun Apr 13 15:15:44 2008 (48025BE0)

    CheckSum: 00014865

    ImageSize: 0000 00 FC

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba65d000 ba669d00 i8042prt (postponed)

    Image path: i8042prt.sys

    Image name: i8042prt.sys

    Timestamp: Sun Apr 13 15:17:59 2008 (48025 C 67)

    Checksum: 0001918C

    ImageSize: 0000CD 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba66d000 ba67bb00 drmk (postponed)

    Image path: drmk.sys

    Image name: drmk.sys

    Timestamp: Sun Apr 13 14:45:12 2008 (480254B 8)

    CheckSum: 0001 B 540

    ImageSize: 0000EB00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba67d000 ba689100 STREAM (postponed)

    Image path: streams. SYS

    Image name: streams. SYS

    Timestamp: Sun Apr 13 14:45:14 2008 (480254BA)

    CheckSum: 0001B4AB

    ImageSize: 0000C 100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    ba68d000 ba695e00 intelppm (postponed)

    Image path: intelppm.sys

    Image name: intelppm.sys

    Timestamp: Sun Apr 13 14:31:31 2008 (48025183)

    Sum: 0000C 894

    ImageSize: 00008E00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    badd2000 badd5c80 mssmbios (postponed)

    Image path: mssmbios.sys

    Image name: mssmbios.sys

    Timestamp: Sun Apr 13 14:36:45 2008 (480252BD)

    CheckSum: 0000FC8F

    ImageSize: 00003C 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    badfb000 badfd780 ndistapi (postponed)

    Image path: ndistapi.sys

    Image name: ndistapi.sys

    Timestamp: Sun Apr 13 14:57:27 2008 (48025797)

    CheckSum: 0000A1B3

    ImageSize: 00002780

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bae17000 bae1ad80 serenum (postponed)

    Image path: serenum.sys

    Image name: serenum.sys

    Timestamp: Sun Apr 13 14:40:12 2008 (4802538 C)

    CheckSum: 0001290A

    ImageSize: 00003D 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bae43000 bae5cb80 Mup (postponed)

    Image path: Mup.sys

    Image name: Mup.sys

    Timestamp: Sun Apr 13 15:17:05 (48025 31) 2008

    CheckSum: 0001AB3E

    ImageSize: 00019B 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bae5d000 bae89980 NDIS (postponed)

    Image path: NDIS.sys

    Image name: NDIS.sys

    Timestamp: Sun Apr 13 15:20:35 (48025 03) 2008

    CheckSum: 0002E181

    ImageSize: 0002C 980

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bae8a000 baf16600 Ntfs (postponed)

    Image path: Ntfs.sys

    Image name: Ntfs.sys

    Timestamp: Sun Apr 13 15:15:49 2008 (48025BE5)

    CheckSum: 0009586B

    ImageSize: 0008C 600

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    baf17000 baf2d880 KSecDD (postponed)

    Image path: KSecDD.sys

    Image name: KSecDD.sys

    Timestamp: Sun Apr 13 14:31:40 2008 (4802518 C)

    CheckSum: 00025D4C

    ImageSize: 00016880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    baf3e000 baf47e80 NDProxy (postponed)

    Image path: NDProxy.SYS

    Image name: NDProxy.SYS

    Timestamp: Sun Apr 13 14:57:28 2008 (48025798)

    CheckSum: 00011DE5

    ImageSize: 00009E80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bafce000 bafdff00 sr (postponed)

    Image path: sr.sys

    Image name: sr.sys

    Timestamp: Sun Apr 13 14:36:50 2008 (480252 2)

    CheckSum: 00012604

    ImageSize: 00011F00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bafe0000 bafffb00 fltmgr (postponed)

    Image path: fltmgr.sys

    Image name: fltmgr.sys

    Timestamp: Sun Apr 13 14:32:58 2008 (480251DA)

    CheckSum: 000251BB

    ImageSize: 0001FB00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    BF800000 bf9c2f80 win32k (postponed)

    Image path: win32k.sys

    Image name: win32k.sys

    Timestamp: Fri Apr 17 08:26:26 2009 (49E87572)

    CheckSum: 001C50F1

    ImageSize: 001C2F80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bf9c3000 bf9d4600 dxg (postponed)

    Image path: dxg.sys

    Image name: dxg.sys

    Timestamp: Sun Apr 13 14:38:27 2008 (48025323)

    Sum: 0001313C

    ImageSize: 00011600

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    BF9D5000 bfa17000 ati2dvag (postponed)

    Image path: ati2dvag.dll

    Image name: ati2dvag.dll

    Timestamp: Thu Feb 09 21:58:02 2006 (43EC013A)

    CheckSum: 000493AB

    ImageSize: 00042000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bfa17000 bfa56000 ati2cqag (postponed)

    Image path: ati2cqag.dll

    Image name: ati2cqag.dll

    Timestamp: Thu Feb 09 21:22:39 2006 (43EBF8EF)

    CheckSum: 00044F2F

    ImageSize: 0003F000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bfa56000 bfa8c000 atikvmag (postponed)

    Image path: c:\windows\system32\atikvmag.dll

    Image name: c:\windows\system32\atikvmag.dll

    Timestamp: Thu Feb 09 21:27:47 2006 (43EBFA23)

    Checksum: 000317C 3

    ImageSize: 00036000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bfa8c000 bfd0f940 ati3duag (postponed)

    Image path: ati3duag.dll

    Image name: ati3duag.dll

    Timestamp: Thu Feb 09 21:44:39 2006 (43EBFE17)

    CheckSum: 0028EAA1

    ImageSize: 00283940

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bfd10000 bfde20c0 ativvaxx (postponed)

    Image path: ativvaxx.dll

    Image name: ativvaxx.dll

    Timestamp: Thu Feb 09 21:39:23 2006 (43EBFCDB)

    CheckSum: 000D58AB

    ImageSize: 000D20C0

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bff50000 bff52f00 TSDDD (postponed)

    Image path: TSDDD.dll

    Image name: TSDDD.dll

    Timestamp: Sun Apr 13 20:11:25 2008 (4802A12D)

    CheckSum: 0000E39C

    ImageSize: 00002F00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    bffa0000 bffe5c00 ATMFD (postponed)

    Image path: ATMFD. DLL

    Image name: ATMFD. DLL

    Timestamp: Sun Apr 13 20:09:55 2008 (4802A0D3)

    CheckSum: 0004BE90

    ImageSize: 00045C 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f747f000 f748fa80 pci (postponed)

    Image path: pci.sys

    Image name: pci.sys

    Timestamp: Sun Apr 13 14:36:43 2008 (480252BB)

    CheckSum: 00015F46

    ImageSize: 00010A 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7490000 f74bdd80 ACPI (postponed)

    Image path: ACPI.sys

    Image name: ACPI.sys

    Timestamp: Sun Apr 13 14:36:33 2008 (480252B 1)

    CheckSum: 00038955

    ImageSize: 0002DD80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f74be000 f74d5880 SCSIPORT (postponed)

    Image path: SCSIPORT. SYS

    Image name: SCSIPORT. SYS

    Timestamp: Sun Apr 13 14:40:29 2008 (4802539 D)

    CheckSum: 00021101

    ImageSize: 00017880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f74d6000 f75d6000 DTAS (postponed)

    Image path: c:\windows\system32\drivers\sptd.sys

    Image name: c:\windows\system32\drivers\sptd.sys

    Timestamp: Wed Mar 05 19:32:57 2008 (47CF3BB9)

    CheckSum: 000 B 4211

    ImageSize: 00100000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f75f7000 f7606100 ohci1394 (postponed)

    Image path: ohci1394.sys

    Image name: ohci1394.sys

    Timestamp: Sun Apr 13 14:46:18 2008 (480254FA)

    CheckSum: 000151B 2

    ImageSize: 0000F100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7607000 f7614080 1394BUS (postponed)

    Image path: 1394BUS. SYS

    Image name: 1394BUS. SYS

    Timestamp: Sun Apr 13 14:46:18 2008 (480254FA)

    CheckSum: 0000F247

    ImageSize: 0000D 080

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7617000 f7620180 isapnp (postponed)

    Image path: isapnp.sys

    Image name: isapnp.sys

    Timestamp: Sun Apr 13 14:36:40 2008 (480252B 8)

    Sum: 0000D 074

    ImageSize: 00009180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7627000 f7631580 MountMgr (postponed)

    Image path: MountMgr.sys

    Image name: MountMgr.sys

    Timestamp: Sun Apr 13 14:39:45 2008 (48025371)

    CheckSum: 0000E3AA

    ImageSize: 0000A 580

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7637000 f7643c80 VolSnap (postponed)

    Image path: VolSnap.sys

    Image name: VolSnap.sys

    Timestamp: Sun Apr 13 14:41 2008 (480253BC)

    CheckSum: 00019063

    ImageSize: 0000CC80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7647000 f764fe00 drive (postponed)

    Image path: disk.sys

    Image name: disk.sys

    Timestamp: Sun Apr 13 14:40:46 2008 (480253AE)

    Checksum: 00014C 02

    ImageSize: 00008E00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7657000 f7663180 CLASSPNP (postponed)

    Image path: CLASSPNP. SYS

    Image name: CLASSPNP. SYS

    Timestamp: Sun Apr 13 15:16:21 2008 (48025-05)

    CheckSum: 0000CA8C

    ImageSize: 0000C 180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7667000 f766fde0 PxHelp20 (postponed)

    Image path: PxHelp20.sys

    Image name: PxHelp20.sys

    Timestamp: Wed Jun 20 18:26 2007 (4679A 978)

    CheckSum: 00015660

    ImageSize: 00008DE0

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7687000 f7696180 nic1394 (postponed)

    Image path: nic1394.sys

    Image name: nic1394.sys

    Timestamp: Sun Apr 13 14:51:22 2008 (4802562A)

    CheckSum: 0000F8AC

    ImageSize: 0000F180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f76b7000 f76c5880 usbhub (postponed)

    Image path: usbhub.sys

    Image name: usbhub.sys

    Timestamp: Sun Apr 13 14:45:36 2008 (480254 D 0)

    CheckSum: 0000FBBC

    ImageSize: 0000E880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7707000 f770d180 PCIIDEX (postponed)

    Image path: PCIIDEX. SYS

    Image name: PCIIDEX. SYS

    Timestamp: Sun Apr 13 14:40:29 2008 (4802539 D)

    CheckSum: 00009319

    ImageSize: 00006180

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f770f000 f7713d00 PartMgr (postponed)

    Image path: PartMgr.sys

    Image name: PartMgr.sys

    Timestamp: Sun Apr 13 14:40:48 2008 (B 480253, 0)

    CheckSum: 0000C1F3

    ImageSize: 00004D 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f77b7000 f77bc080 usbuhci (postponed)

    Image path: usbuhci.sys

    Image name: usbuhci.sys

    Timestamp: Sun Apr 13 14:45:34 2008 (480254CE)

    CheckSum: 0000DB34

    ImageSize: 00005080

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f77bf000 f77c6600 usbehci (postponed)

    Image path: usbehci.sys

    Image name: usbehci.sys

    Timestamp: Sun Apr 13 14:45:34 2008 (480254CE)

    Checksum: 000099D 5

    ImageSize: 00007600

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f77c7000 f77cf000 ctprxy2k (postponed)

    Image path: ctprxy2k.sys

    Image name: ctprxy2k.sys

    Timestamp: Fri Aug 11 02:45:39 2006 (44DC2793)

    CheckSum: 00005746

    ImageSize: 00008000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f77cf000 f77d5000 kbdclass (postponed)

    Image path: kbdclass.sys

    Image name: kbdclass.sys

    Timestamp: Sun Apr 13 14:39:46 2008 (48025372)

    CheckSum: 00011FF4

    ImageSize: 00006000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f77d7000 f77dca00 mouclass (postponed)

    Image path: mouclass.sys

    Image name: mouclass.sys

    Timestamp: Sun Apr 13 14:39:47 2008 (48025373)

    CheckSum: 00014EAB

    ImageSize: 00005A 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f77ff000 f7803080 raspti (postponed)

    Image path: raspti.sys

    Image name: raspti.sys

    Timestamp: Fri Aug 17 16:55:32 2001 (3B7D84C4)

    CheckSum: 000114B 1

    ImageSize: 00004080

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7832000 f7857700 dmio (postponed)

    Image path: dmio.sys

    Image name: dmio.sys

    Timestamp: Sun Apr 13 14:44:45 2008 (4802549 D)

    CheckSum: 00034FCE

    ImageSize: 00025700

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7858000 f7876880 ftdisk (postponed)

    Image path: ftdisk.sys

    Image name: ftdisk.sys

    Timestamp: Fri August 17 16:52:41 2001 (3B7D8419)

    CheckSum: 00021032

    ImageSize: 0001E880

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7877000 f7885d80 sysaudio (postponed)

    Image path: sysaudio.sys

    Image name: sysaudio.sys

    Timestamp: Sun Apr 13 15:15:55 2008 (48025BEB)

    CheckSum: 0001C7CE

    ImageSize: 0000ED80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7897000 f789a000 BOOTVID (postponed)

    Image path: BOOTVID.dll

    Image name: BOOTVID.dll

    Timestamp: Fri Aug 17 16:49:09 2001 (3B7D8345)

    CheckSum: 0000A36C

    ImageSize: 00003000

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f796f000 f7986900 atapi (postponed)

    Image path: atapi.sys

    Image name: atapi.sys

    Timestamp: Sun Apr 13 14:40:29 2008 (4802539 D)

    Sum: 0001CD 25

    ImageSize: 00017900

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7987000 f7988b80 kdcom (postponed)

    Image path: kdcom.dll

    Image name: kdcom.dll

    Timestamp: Fri Aug 17 16:49:10 2001 (3B7D8346)

    CheckSum: 00008311

    ImageSize: 00001 B 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7989000 f798a100 WMILIB (postponed)

    Image path: WMILIB. SYS

    Image name: WMILIB. SYS

    Timestamp: Fri 17 August 17:07:23 2001 (3B7D878B)

    Sum: 0000D 600

    ImageSize: 00001100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f798b000 f798c580 intelide (postponed)

    Image path: intelide.sys

    Image name: intelide.sys

    Timestamp: Sun Apr 13 14:40:29 2008 (4802539 D)

    CheckSum: 0000E81D

    ImageSize: 00001580

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f798d000 f798e700 dmload (postponed)

    Image path: system32\drivers\dmload.sys

    Image name: system32\drivers\dmload.sys

    Timestamp: Fri Aug 17 16:58:15 2001 (3B7D8567)

    CheckSum: 0000DC8A

    ImageSize: 00001700

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79b7000 f79b8a80 ParVdm (postponed)

    Image path: ParVdm.SYS

    Image name: ParVdm.SYS

    Timestamp: Fri Aug 17 16:49:49 2001 (3B7D836D)

    CheckSum: 0000A 855

    ImageSize: 00001 has 80

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79c1000 f79c2f00 Fs_Rec (postponed)

    Image path: Fs_Rec.SYS

    Image name: Fs_Rec.SYS

    Timestamp: Fri Aug 17 16:49:37 2001 (3B7D8361)

    CheckSum: 000079A 7

    ImageSize: 00001F00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79c3000 f79c4080 beep (postponed)

    Image path: c:\windows\system32\drivers\beep.sys

    Image name: c:\windows\system32\drivers\beep.sys

    Timestamp: Fri Aug 17 16:47:33 2001 (3B7D82E5)

    CheckSum: 0000C82C

    ImageSize: 00001080

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79c5000 f79c6080 mnmdd (postponed)

    Image path: mnmdd. SYS

    Image name: mnmdd. SYS

    Timestamp: Fri Aug 17 16:57:28 2001 (3B7D8538)

    CheckSum: 0000F3F7

    ImageSize: 00001080

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79c7000 f79c8080 RDPCDD (postponed)

    Image path: system32\drivers\rdpcdd.sys

    Image name: system32\drivers\rdpcdd.sys

    Timestamp: Fri Aug 17 16:46:56 2001 (3B7D82C0)

    CheckSum: 0000E2B7

    ImageSize: 00001080

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79d3000 f79d4100 swenum (postponed)

    Image path: swenum.sys

    Image name: swenum.sys

    Timestamp: Sun Apr 13 14:39:52 2008 (48025378)

    CheckSum: 0000383A

    ImageSize: 00001100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79d9000 f79da380 MSPQM (postponed)

    Image path: MSPQM.sys

    Image name: MSPQM.sys

    Timestamp: Sun Apr 13 14:39:51 2008 (48025377)

    Checksum: 00006D 54

    ImageSize: 00001380

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f79df000 f79e0280 USBD (postponed)

    Image path: USBD. SYS

    Image name: USBD. SYS

    Timestamp: Fri Aug 17 17:02:58 2001 (3B7D8682)

    CheckSum: 000040AF

    ImageSize: 00001280

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7a4f000 f7a4fd00 pciide (postponed)

    Image path: system32\drivers\pciide.sys

    Image name: system32\drivers\pciide.sys

    Timestamp: Fri Aug 17 16:51:49 2001 (3B7D83E5)

    CheckSum: 0000213E

    ImageSize: 00000D 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7a73000 f7a73c00 audstub (postponed)

    Image path: audstub.sys

    Image name: audstub.sys

    Timestamp: Fri Aug 17 16:59:40 2001 (3B7D85BC)

    CheckSum: 000105B 1

    ImageSize: 00000C 00

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    f7b6c000 f7bde100 iaStor (postponed)

    Image path: iaStor.sys

    Image name: iaStor.sys

    Timestamp: Tue Mar 23 15:13:55 2004 (40608 C 73)

    CheckSum: 00072C3C

    ImageSize: 00072100

    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4

    Unloaded modules:

    9525b 000 95286000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    955e4000 9560f000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    975e4000 9760f000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    975e4000 9760f000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    975e4000 9760f000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    975e0000 b 9760, 000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    979c 6000 979f1000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ca 985 000 985f5000 c:\windows\system32\drivers\kmixer.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    b03da000 b03db000 drmkaud.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    b0ffe000 b100b000 DMusic.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ba6bd000 ba6cb000 c:\windows\system32\drivers\swmidi.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ad4ab000 ad4ad000 splitter.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    9869b 000 986be000 aec.sys

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ca 9, 79000 kbdhid.sys 9ca7d000

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ad6ac000 ad6b1000 Cdaudio.SYS

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    9ca7d000 ca 9, 80000 Sfloppy.SYS

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ad6b4000 ad6b9000 Flpydisk.SYS

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    ae12a000 ae131000 Fdc.SYS

    Timestamp: unavailable (00000000)

    Checksum: 00000000

    Hello

    Bluescreens can certainly be triggered by malware.

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone. (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Malicious removal tool from Microsoft
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with other security programs. It comes
    a scan only, VERY EFFICIENT, if it finds something to come back here or use Google to see how to remove.
    http://www.prevx.com/

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    --------------------------------------------------------

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

    --------------------------------------------------------

    Also do to the General corruption of cleaning.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Run checkdisk - schedule it to run at the next startup, then apply OK then restart your way.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    -----------------------------------------------------------------------

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

Maybe you are looking for