Unable to get the database searched with MAX and GROUP BY function

Hello
All the

I have a table as below:
COLUMN TYPE
User_id VARCHAR2 (10 byte)
ID_processus VARCHAR2 (30 bytes)
END_TIME DATE (STAMP)
TO_LOC VARCHAR2 (12 bytes)
TO_LOC_TYPE VARCHAR2 (15 bytes)
FROM_LOC VARCHAR2 (12 bytes)
ITEM_ID VARCHAR2 (25 bytes)
CASE NUMBER (12.4)
LMS_UDA1 VARCHAR2 (250 bytes)
AREA VARCHAR2 (2 bytes)

I only want to get one record with all the columns, have only one clause MAX (END_TIME)
But the other column value of the difference.
When I use MAX (END_TIME) and GROUP OF USER_ID, ID_processus, CASE...
the sql did not a single record,
It gives the number of records

Please help me on this

Concerning

Saven

>
I only want to get one record with all the columns, have only one clause MAX (END_TIME)
But the other column value of the difference.
>
Maybe it's not possible because it depends on your data.

If the combination of all columns except END_TIME is not unique then there will be multiple records; a record for each unique combination (GROUP BY) of all other columns.

The only way to ensure that a record is

SELECT MAX(END_TIME) FROM myTable

Tags: Database

Similar Questions

  • Script to get the VLan ID, vSwitch, networking and group of vCenter vmkernel ports.

    Hello

    Need help to get the script of ' Script for the VLan ID, vSwitch, networking and group ports vmkernel of vCenter. "to CSV

    Any help will be much appreciated.

    Get-VMHost | {foreach}

    $vmhost = $_

    $PortGroups = $vmhost | Get-VirtualPortGroup

    $vSwitchs = $vmhost | Get-VirtualSwitch

    $pNic = $vmhost | Get-VMHostNetworkAdapter

    $Managementinfo = $pNic | Where-Object {$_.} ManagementTrafficEnabled - eq $true}

    $vMotioninfo = $pNic | Where-Object {$_.} VMotionEnabled - eq $true}

    $FTinfo = $pNic | Where-Object {$_.} FaultToleranceLoggingEnabled - eq $true}

    $vlanID = $PortGroup | Where-Object {$_.name - eq $Managementinfo.ExtensionData.spec.Portgroup} | Select-object - ExpandProperty VLanId

    {foreach ($PG in $PortGroups)

    #Management Info network

    If ($Managementinfo.PortGroupName - eq $PG.) {Name)

    $MGMTStatus = "enabled".

    $ManagementIP = $Managementinfo | Where-Object {$_.} PortGroupName - eq $PG. Name} | Select-Object - ExpandProperty IP

    }

    else {}

    $MGMTStatus = "Disabled".

    $ManagementIP = $null

    }

    #vMotion Info network

    If ($vMotioninfo.PortGroupName - eq $PG.) {Name)

    $vmotionStatus = "enabled".

    $vMotionIP = $vMotioninfo | Where-Object {$_.} PortGroupName - eq $PG. Name} | Select-Object - ExpandProperty IP

    }

    else {}

    $vmotionStatus = "Disabled".

    $vMotionIP = $null

    }

    #FT Info network

    If ($FaultToleranceLoggingEnabled.PortGroupName - eq $PG.) {Name)

    $FTStatus = "enabled".

    $ftIP = $FTinfo | Where-Object {$_.} PortGroupName - eq $PG. Name} | Select-Object - ExpandProperty IP

    }

    else {}

    $FTStatus = "Disabled".

    $ftIP = $null

    }

    #vmKernel name

    $VMKernel = $pNic | Where-Object {$_.} PortGroupName - eq $PG. Name} | Select-Object - ExpandProperty DeviceName

    $result = "" | Select-Object HostName, vSwitchName, PortGroupName, VLanID, ManagementTraffic, ManagementIP, vMotionTraffic, vMotionIP, FTTraffic, FTIP, VMKernel

    $result. Host name = $vmhost.name

    $result.vSwitchName = $PG. VirtualSwitchName

    $result. PortGroupName = $PG. Name

    $result. VLanID = $PG. VLanID

    $result. VLanID = $PG. VLanID

    $result. ManagementTraffic = $MGMTStatus

    $result. ManagementIP = $ManagementIP

    $result.vMotionTraffic = $vmotionStatus

    $result.vMotionIP = $vMotionIP

    $result. FTTraffic = $FTStatus

    $result. FTIP = $ftIP

    $result. VMKernel = $VMKernel

    $result

    }

    } | Export-Csv c:\temp\data.csv

  • Combine queries to get the result set with max Y

    Hello
    I use forms 6i and db 10.2.0.1.0

    With the query below
    Select ufam_usrgrp,ufam_filegrp,ufam_read,ufam_write,ufam_overwrite,ufam_delete from usr_file_access_master
    Where ufam_ecode = '0004108';
    the result set is
    UFAM_USRGRP     UFAM_FILEGRP    UFA UFA UFA UFA
    --------------- --------------- --- --- --- ---
    MGMNT           CV              Y   Y   Y   Y
    EMPLOYEE        GENERAL         Y   N   N   N
    EMPLOYEE        PERSONAL        Y   N   N   N
    Another query
    Select uul_usrgrp, ufl_file_grp,ufl_read,ufl_write,ufl_overwrite,ufl_delete from usr_usrgrp_lnk,USRGRP_FILEGRP_LINK
    Where usr_usrgrp_lnk.uul_usrgrp = USRGRP_FILEGRP_LINK.UFL_USR_GRP
    and usr_usrgrp_lnk.uul_ecode = '0004108'
    gives the result
    UUL_USRGRP      UFL_FILE_GRP    UFL UFL UFL UFL
    --------------- --------------- --- --- --- ---
    MGMNT           GENERAL         Y   Y   Y   Y
    EMPLOYEE        GENERAL         Y   Y   N   N
    MGMNT           CV              Y   N   N   N
    I need to combine these two queries to get a separate result set with maximum Y

    Like here "MGMNT CV" is repeated in both the result set, but the first has more, then it should come from the combined result set. reverse-case also the same (such as "EMPLOYEE GENERAL")

    So I want to combine the queries so that I get the result as set below
    UserGroup       FileGroup       Rd Wrt Owrt Del
    --------------- --------------- --- --- --- ---
    MGMNT           GENERAL         Y   Y   Y   Y
    EMPLOYEE        GENERAL         Y   Y   N   N
    MGMNT           CV              Y   Y   Y   Y
    EMPLOYEE        PERSONAL        Y   N   N   N
    Please help me to combine these queries

    Published by: Divya on August 14, 2011 21:24
    Changed the result set and the last exit

    NOT TESTED!

    select y.uul_usrgrp,
           y.ufl_file_grp,
           greatest(ufl_read,nvl(ufam_read,' ')) ufl_read,
           greatest(ufl_write,nvl(ufam_write,' ')) ufl_write,
           greatest(ufl_overwrite,nvl(ufam_overwrite,' ')) ufl_overwrite,
           greatest(ufl_delete,nvl(ufam_delete,' ')) ufl_delete
      from (select ufam_usrgrp,ufam_filegrp,ufam_read,ufam_write,ufam_overwrite,ufam_delete
              from usr_file_access_master
             Where ufam_ecode = '0004108'
           ) x,
           (select uul_usrgrp, ufl_file_grp,ufl_read,ufl_write,ufl_overwrite,ufl_delete
              from usr_usrgrp_lnk,USRGRP_FILEGRP_LINK
             Where usr_usrgrp_lnk.uul_usrgrp = USRGRP_FILEGRP_LINK.UFL_USR_GRP
               and usr_usrgrp_lnk.uul_ecode = '0004108'
           ) y
     where y.uul_usrgrp = x.ufam_usrgrp(+)
       and y.ufl_file_grp = x.ufam_filegrp(+)
    

    Concerning

    Etbin

    Edited by: Etbin on 14.8.2011 13:08
    deleted by group

  • Help on report with max and group of?

    Hello I need to display the next report

    SELECT THE TABLE TABLE_NAME, NOM_PARTITION, LAST_ANALYZED IN USER_TAB_PARTITIONS;
    However, I need to display the table table_name time with sound (partition_name) MAX current (assuming that the names are P2010, P2011, etc...) and when he was last_analyzed

    What is the most effective way to do it? Subselect statement? Inner join?

    Thank you!

    Hello

    Using a GROUP BY:

    SELECT table_name,
           max(partition_name) as partition_name,
           max(last_analyzed) keep (dense_rank last order by partition_name) as last_analyzed
    FROM all_tab_partitions
    GROUP BY table_name
    ;
    

    Another solution would be a TOP - n query, using the ROW_NUMBER analytic function:

    SELECT table_name, partition_name, last_analyzed
    FROM (
      SELECT table_name,
             partition_name,
             last_analyzed ,
             row_number() over( partition by table_name
                                order by nlssort(partition_name,'NLS_SORT=BINARY') desc ) as rn
      FROM all_tab_partitions
    )
    WHERE rn = 1
    ;
    

    Note that I had to use the NLSSORT function to get the same result as the value that the query GROUP BY.
    Depending on your NLS DB/SESSION settings, you may not do.

    Edited by: odie_63 Feb 4. 2011 14:31

  • Re: Unable to get the Satellite L650 for system and inaccessible boot repair

    Computer laptop satellite L650 ~ Windows 7.

    I have problems with the laptop being very slow to start for several months until he was able to start. It took to PC World and they said I had a virus and they had reinstalled the software back to the HDD factory settings. Worked well for a few weeks as falied to start. Restored from Windows recovery option by pressing F8 at startup upward. Worked fine for a few weeks until last week. Repeat the process and works very well.

    Monday, I installed Adobe Photoshop and Tuesday night cell phone has been slow to start up again, so uninstalled Photoshop. Stop it installed some updates of Windows. Last night, when I walk it came with a messgae saying doing xxxxx of the registry changes, and then could not start. Now when I press F8 and select "Repair your computer" Windows starts to load files and then get to the System Recovery Options ~ Select UK keyboard and press next and then I get a window saying: "you must login to access the System Recovery Options. If you havingtrouble connect, contact your administrator for the computer for assistance. Click OK to restart the computer. »

    I did not have this on reinstalls previous and I can't get around it. Help!

    Hello

    In the past, I got several laptop computers several times and this option is still available. Please check follow document - http://aps2.toshiba-tro.de/kb0/HTD1303440001R01.htm - Toshiba and you will see that this option is available.

    If you have created a Windows login password you must use it, otherwise leave it blank and just press OK. Don t change same keyboard layout just click on next.

    Please let us know if you've had success with it. E later can discuss how do for faster laptop to start.

  • Get the computer virtual with "Check and upgrade before each start-up tools" checked.

    Hello

    I want to know if we have machines virtual with the indicator "Check and upgrade before each start-up tools", is activated. It is possible via the current shell?

    Thank you in advance.

    Saludos.

    Xavier

    VCP4 and professional VCP3 certified VMware.

    -


    If upon that esta o any other campaign respuesta ha sido utility, votalas. Gracias.

    If you find this or any other information useful or appropriate, please consider giving points. Thank you.

    The next PowerCLI script will give a list of all virtual machines with the indicator "Check and upgrade before each start-up tools" is activated:

    Get-VM | Get-View | `
    Select-Object -property Name,@{N="ToolsUpgradePolicy";E={$_.Config.Tools.ToolsUpgradePolicy}} | `
    Where-Object { $_.ToolsUpgradePolicy -eq "upgradeAtPowerCycle" }
    

    Robert

  • Unable to get the Bluetooth Toshiba BT Stac Headset profile in collaboration with mic

    Hello.

    I have problems with my Motorola HT 820 Stereo headset, the Toshiba Bluetooth Stack installed on Vista Home Premium 32 bit laptop.

    I am unable to get the microphone to work at all, so can't use it for Skype / VOIP calls etc. Features such as the A2DP and AVRCP work very well, and I can listen to music via the media player without problems.

    I read in a FAQ on this site, to make sure that I use the installation option custom rather than the quick installation when adding the device, but it seems to make no difference, am I missing a step here?

    In the properties of the device Windows registry, I see the option listed for Bluetooth Mic, but even assigning as device by default does not work.

    I know to plug my headphones on my desktop PC that uses the bluetooth stack Widdcom, can I use the headset/microphone function, but this battery seems to work differently, as I can select option headphones in the bluetooth settings, but I don't see such an interior option Toshiba stack - and I think that's the problem.

    I've updated to the last stack of Toshiba on this website, but this did not help at all.

    Here, any help would be appreciated.

    Concerning

    Matt

    Post edited by: Toxyturvy - wrong spelling

    Hello Matt

    Unfortunately I can't help you with that, but if I remember right here on the BT section that someone has already asked something similar. Please take a little time and see the BT section on this forum.

    You can also visit the FAQ section on http://aps2.toshiba-tro.de/bluetooth/
    Might find something there.

    Good luck!

  • Fix it fails Center with the error: unable to get the catalog of the troubleshooter. Error MatsGetSapCatalog failed

    Original title: Fix it center fails.

    Difficulty Center fails with the error:
    Unable to get the catalog of the troubleshooter. Error MatsGetSapCatalog failed
    I can't find the url of re - download.
    It doesn't seem to be at the Download Center.
    Thank you
    Frank C

    Vista Ultimate 64 bit sp2

    CF. http://answers.microsoft.com/en-us/protect/forum/mse-protect_scanning/scanning-engine-has-stopped-responding/e0f84bec-2555-4279-bfb7-aff691b8ba8d

  • Unable to get the elements placed at the top and bottom of the cell of the table with vertical-align

    Hello

    I have a three-day educational courses in the list table. In each cell, I have the title of the presentation at the top with the name of the speaker below. Because some titles are longer than others, the line grows (rightly) as longer securities are covered in Word. So far so good. Now, I want all the titles to always start at the same distance from the surface of the cell (I use padding 2px) and names of speaker all be equidistant from the lower border, (i.e. 2px).

    I tried to place the title elements with < span style = "vertical-align: top" > </span > presentation title

    and the name of the speaker as < span style = "vertical-align: bottom" > name </span > Speaker

    and I tried the same method with < div > and < p > tags. Items don't move. Can someone tell me how to make the names of the speakers will be all aligned at the bottom of each cell?

    Here is an example of the code table I've tried:

    (Thanks!)

    < table style = "text-align: center;" do-family: Arial; background-color: #f7d49c; "border ="2"bordercolor =" #467E9F "cellpadding ="2 ".

    "cellspacing ="0"width ="900">"

    < tbody >

    < b >

    < td width = "300" > < span style = "" vertical-align: top; "> This is a short title </span > < br / >"

    < span style = "vertical-align: bottom" > name </span > < table > Speaker

    < td width = "300" > < div > is the title of another presentation, which is really long because some of the presentations have titles like that < / div > < br / >

    < div style = "vertical-align: bottom" > Speaker name < / div > < table >

    < td width = "300" > < span style = "vertical-align: top" > This is yet another presentation with a semi-long title </span > < br / >

    < span style = "vertical-align: bottom" > < table > </span > Speaker's name

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < / tbody >

    < /table >

    By default, the content of the table cell is average aligned.  You need not do anything.

    If you want your cell vertically aligned up or down, you can specify it in your CSS.  These effects all the text inside the cell.   It's all or nothing.

    Some text that is aligned at the top Some bottom-aligned text

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

  • New problem, Lycos Mail is my home page. When I open a new window I usually get the Google search, which is what I want. Now, somehow when I open a new window I Yahoo search. How can I change to Google? Thank you, Randy

    New problem, Lycos Mail is my home page. When I open a new window I usually get the Google search, which is what I want. Now, somehow when I open a new window I Yahoo search. How can I change to Google?
    Thank you
    Randy

    A new window opens by default with the homepage.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • I keep trying to run 2 updates that will not update. I get the error 646 with them. they are related to the KB976884 and KB976416. they are for Outlook and the pathfinder 2007. I'm not sure but I think they are for microsoft office 2007.

    Sorry if I'm repeating myself, but just trying to meet what is needed.  The only thing I have changed or done on my computer is run the defragmentation and tried to update each update separately but I am unable to get the updates for the update for Microsoft Office InfoPath 2007 (KB976416)

    Download size: 2.1 MB

    This update provides the latest fixes to Microsoft Office InfoPath 2007. Additionally, this update contains stability and performance improvements.

    More information:
    http://support.Microsoft.com/kb/976416

    and I am unable to get this update also: update for the junk e-mail in Microsoft Office Outlook 2007 (KB976884) filter

    Download size: 3.2 MB

    Update type: Important

    This update provides the filter of junk e-mail in Microsoft Office Outlook 2007 a more current definition of which e-mail messages should be considered junk e-mail.

    Hello

    Try this 1st to see if it helps, and it should:

    Description of the Patch registration cleanup tool
    http://support.Microsoft.com/kb/976220/

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

    If necessary :

    Try this - Panel - Windows Updates - on every update that will not be installed - click on the important updates
    or the update itself - double click a view more information (or click top then discovers on the right)

    Those who will take you to a page where you can download the update.

    Or go here and the KBxxxxxx number to download it.

    Download Center - mount the KBxxxxxx.

    Microsoft Download Center
    http://www.Microsoft.com/downloads/en/default.aspx

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

    Then you can right click on the update in the updates Windows and HIDE.

    If you get an error Installer install this version:

    Windows install 4.5 Redistributable
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en

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

    Then run this:

    How to reset the Windows Update components? -a Mr Fixit
    http://support.Microsoft.com/kb/971058

    Description of the system for Windows Vista, Windows Server 2008, update tool and
    for Windows 7
    http://support.Microsoft.com/kb/947821

    ------------------------------------------------------------
    Because these are all Office updates you might get more information if necessary in the Agency of those groups that
    may have experienced the same problem.

    Office newsgroups
    http://www.Microsoft.com/Office/Community/en-us/FlyoutOverview.mspx

    Microsoft.public.office.misc discussions
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Office.misc&cat=en_us_01cb749f-c998-4762-8099-df71793c11c7&lang=en&CR=us

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

    If necessary you can incident free get reports however the above should take care of it for you.

    Windows updates - free Incident report

    Go here and click on-> Windows Update fails while searching, downloading or installation of updates
    http://support.Microsoft.com/GP/wusupport#tab3

    The security updates, you can get free support Incident report
    http://www.Microsoft.com/protect/resources/support.aspx

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Unable to get the Windows updates. Activation of Windows icon "this copy of Windows is not activated." Cannot be enabled. Please notify.

    I was using Windows XP Professional for over 3 years with no problems. I get Windows updates automatically recently, I am unable to get the Windows updates. Activation of Windows icon is now displayed "this copy of Windows is not activated. What is going on?  Tried to reactivate without success.

    I tried with the key of product without success. Please notify. Thank you, Mark to * address email is removed from the privacy *

    I was using Windows XP Professional for over 3 years with no problems. I get Windows updates automatically recently, I am unable to get the Windows updates. Activation of Windows icon is now displayed "this copy of Windows is not activated. What is going on?  Tried to reactivate without success.

    I tried with the key of product without success. Please notify. Thank you, Mark at * address email is removed from the privacy *.

    Click HERE. Follow the instructions. I recommend to use Guided Help.

  • Unable to get the basic unit of the stainless steel bracelet

    Hi, I am unable; e of pop on the basic unit of the steel stainless bracelet body. I couldn't find anything online that shows the process. In addition, can I exchange the strap metallic with leather and other straps? where can I buy these? Concerning

    Hey!

    I understand that it may be a little difficult to understand, since there are no edges or cuts to adjust to pop the base unit on. I took a few photos for you:

    Basically what you need to do, it's only gently but firmly push you down on the screen next to the edge to pop out. Make sure it is on the same side as the microUSB port, you recognize there is not not a small hole in the front (and a microUSB on the back port). I've marked the photo that I took with the green as to where you have to press on and red on the side that you should not press.

    Once jumped, it will look like this:

    Let me know if is not yet known!

    About yew, you can exchange the strap, it's quite possible. Everything just to get a different bracelet and insert the base unit. Unfortunately, I can't help where you find it as it varies depending on the market, but see if your retailer can help you in this regard!

  • Unable to get the upgrade to Windows 7 purchased to start

    I bought an upgrade to a provider. I have acquired a product key. I invoke Windows Anytime Upgrade according to the directions and the only option is to upgrade to Vista. Then I went to the Microsoft page to buy the product. I have Vista 64-bit with all updates installed on my Toshibe Satellite computer. I ran the Upgrade Advisor and everything was satisfactory.

    Unable to get the upgrade to Windows 7 purchased to start

    I call Windows Anytime Upgrade according to the guidelines

    I have Vista 64-bit

    Windows 7 anytime upgrade: you have Vista or XP currently installed?

    If the product you have Windows 7 'Anytime Upgrade' does not allow to move from XP/Vista to Windows 7. You can buy the product at retail of Windows 7 Upgrade not the ' Anytime Upgrade '.

    Windows 7 'Anytime Upgrade' is for moving from one version of Windows 7 to a higher version, such as Windows 7 Home Premium to Windows 7 Professional.

    You can buy Windows 7 here:

    http://www.microsoftstore.com/store/msstore/cat/CategoryID.44066700

Maybe you are looking for

  • iPhone/iCloud storage issue

    I have a 64 GB iPhone 6s and 200 GB of storage iCloud. Whenever I plug in my iPhone and watch my storage, I see that I have Photos 14.12 and 27,67 GB of data and Documents on my iPhone. However, I use iCloud for photos and helped my office and docume

  • door of the satellite dvd does not close

    Please help the door is not closed himself, but if I closed the drive works very wellHeather

  • DV7-7386ez: laptop light not by chance

    I just load my labtop (dv7) and it was working fine, then it stopped abruptly and it back on or turn on outlet, however my charger works on other laptops. On the other hand; I felt a kind of smoke coming from the root of AC power!Can u please tell me

  • How to install the ssl certificate in windows server 2008?

    Hello Can someone give me the steps to install the SSL certificate on my application hosted on windows server 2008 R2?

  • Replacing HD on an Aspire V5 - 572P

    Is there documentation available on the replacement of the HD on my Aspire V5 - 572P? THX...