Error code 10000050, parameter1, parameter 2 00000000, parameter3, parameter4 00000001 805390f3 e48ed000

Hello

Please, can someone help me with this system event?

Error code 10000050, parameter1, parameter 2 00000000, parameter3, parameter4 00000001 805390f3 e48ed000

Regardfs

Hi svsk67,

This can occur due to faulty memory, hardware problems or incompatible software (such as antivirus software).

·         Have you noticed a blue screen error on the computer?

·         You have the latest drivers for the computer?

Try the following.

Method 1: Run the Windows Memory Diagnostic tool to check for memory problems.

Microsoft Online Crash Analysis - windiag

Method 2: Log on to the computer manufacturer website and update the latest drivers for chipset. In addition, update the latest device driver updates.

Respond with more information so that we can help you best.

Tags: Windows

Similar Questions

  • the system log error message: error code 1, parameter 2 8a765bf0, parameter3, parameter4 00000001 8a75c7d0 8974dda0 000000ea.

    Hi - I have a trauma.  Not very technical, but changed my pc, now under XP SP3.  I am trying to launch an application for a Sonos controller (HIFI), but as soon as I run it, it blocks my PC.  Have tried to reinstall, but no joy.  Got this from the system log, but no idea where to start now!  Please help - thanks.  While I can browse a PC pretty well, all aid will have to be non-irritable, please!

    Hello

    Follow the methods mentioned in the article:

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

    I hope that helps!

  • 100000d error code 1, parameter1, parameter2 00000002, parameter3 00000001, parameter4 b6f64c73 f6f34599.

    No idea why the above error code caused a blue screen?

    0xD1 bug check code
    http://msdn.Microsoft.com/en-us/library/ff560244 (v = VS. 85) .aspx

    Codes check Bug always are the same i.e. 0xD1?

    Is the error occurring during the boot process, or later?

    The error occurs in safe mode?

    Is your version of the Windows XP family or Professional Edition?

    What is your computer makeand model?

  • On screen error code Blue 0000009c, parameter1 00000001

    original title: blue screen of death on windows xp pro sp2 2002

    Sorry I duno how to write the problem... but I hope below the error obtained someone help me... Thank you

    Event type: error
    Event source: System error
    Event category: (102)
    Event ID: 1003
    Date: 28/04/2011
    Time: 20:00:18
    User: n/a
    Computer: JASON
    Description:
    Error code 0000009c, parameter1 00000001, parameter 2 8054d5f0, b6000000 parameter3, parameter4 00000181.

    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 53 79 73 74 65 6 d 20 45 System E
    0008: 72 72 6f 72 20 20 45 72 rror Er
    0010: 72 6f 72 20 63 6f 64 65 ror code
    0018: 20 30 30 30 30 30 30 39 0000009
    0020: 63 20 20 50 61 72 61 6 d Param c.
    0028: 65 74 65 72 73 20 30 30 00 very
    0030: 30 30 30 30 30 31 2 C 20 000001.
    0038: 38 30 35 34 64 35 66 30 8054d5f0
    0040: 2 c 20 62 36 30 30 30 30, b60000
    0048: 30 30 2 c 20 30 30 30 30 00, 0000
    0050: 30 31 38 31 0181
    p.

    Hello.

    This error code and the behavior you describe tells me you have a hardware problem with your machine.  With time to amend the BSOD, I would say the problem is a problem of overheating.  Take the machine to a service centre/repairman good reputation.

  • DeviceIoControl on ATA_PASS_THROUGH_DIRECT returns error code 87

    Dear all,
    the following code produces error code 87 (invalid parameter) only when PTE-> DataTransferLength is greater than 512 * 256.
    Would you please find out what is the problem and how to fix it.
    Thank you.

    Changwen Xie

    #################################
    The actual values PTE before call DeviceIoControl are:
    ##################################
    PTE
    5 unsigned AtaFlags in brief
    [- CurrentTaskFile {length = 8} unsigned char]
    [0] 7 unsigned char
    [1] 13 unsigned char
    [2] 1 unsigned char
    [3] 0 unsigned char
    [4] 0 unsigned char
    [5] 0 unsigned char
    [6] 146 unsigned char //0x92 downoad microcode
    [7] 0 unsigned char
    DataBuffer 0x05CB0068 void *.
    DataTransferLength 137728 unsigned int / / it is greater than 512 * 256, so return an error code 87
    Length 40 unsigned in brief
    LUN 0' unsigned char
    PathId 0 unsigned char
    [- PreviousTaskFile {length = 8} unsigned char]
    [0] 0 unsigned char
    [1] 0 unsigned char
    [2] 0 unsigned char
    [3] 0 unsigned char
    [4] 0 unsigned char
    [5] 0 unsigned char
    [6] 0 unsigned char
    [7] 0 unsigned char
    ReservedAsUchar 0 unsigned char
    ReservedAsUlong 0 unsigned int
    TargetId 0 unsigned char
    TimeOutValue 10 unsigned int

    #############################################
    The actual source code:
    #############################################
     
    ATA_PASS_THROUGH_DIRECT * PTE = new ATA_PASS_THROUGH_DIRECT;
    Memset (PTE, 0, sizeof (ATA_PASS_THROUGH_DIRECT));
    PTE-> length = sizeof (ATA_PASS_THROUGH_DIRECT);
    PTE-> AtaFlags = 0;
    PTE-> AtaFlags | = ATA_FLAGS_DRDY_REQUIRED;
    PTE-> AtaFlags | = cmd-> isread()? ATA_FLAGS_DATA_IN: ATA_FLAGS_DATA_OUT;
    order of 28 bits
    PTE-> AtaFlags | = cmd-> is48bit()? ATA_FLAGS_48BIT_COMMAND: 0;
    PTE-> AtaFlags | = cmd-> isDMA()? ATA_FLAGS_USE_DMA: 0;
    PTE-> DataTransferLength = cmd-> getbuffersize();
    PTE-> TimeOutValue = 10;
    PTE-> DataBuffer = cmd-> getbuffer();
    PTE-> CurrentTaskFile [0] = cmd-> getfeaturesbyte (false);
    PTE-> CurrentTaskFile [1] = cmd-> getnumsectorsbyte (false);
    PTE-> CurrentTaskFile [2] = cmd-> getLBAbyte(0,false);
    PTE-> CurrentTaskFile [3] = cmd-> getLBAbyte(1,false);
    PTE-> CurrentTaskFile [4] = cmd-> getLBAbyte(2,false);
    PTE-> CurrentTaskFile [5] = cmd-> getLBAbyte(3,false);
    PTE-> CurrentTaskFile [5] | = cmd-> getdevice();
    PTE-> CurrentTaskFile [6] = cmd-> getcommand();
    PTE-> PreviousTaskFile [0] = cmd-> getfeaturesbyte (true);
    PTE-> PreviousTaskFile [1] = cmd-> getnumsectorsbyte (true);
    PTE-> PreviousTaskFile [2] = cmd-> getLBAbyte(0,true);
    PTE-> PreviousTaskFile [3] = cmd-> getLBAbyte(1,true);
    PTE-> PreviousTaskFile [4] = cmd-> getLBAbyte(2,true);
    PTE-> PreviousTaskFile [5] = 0;
    PTE-> PreviousTaskFile [6] = cmd-> getcontrol();
    PTE-> PreviousTaskFile [7] = 0;
       
    make Ctrl + IO
    DWORD BR;
    int ret = (DeviceIoControl
    _handle,
    IOCTL_ATA_PASS_THROUGH_DIRECT,
    PTE,
    sizeof (ATA_PASS_THROUGH_DIRECT),
    PTE,
    sizeof (ATA_PASS_THROUGH_DIRECT),
    & BR,
    (0);
     
    If (! ret) DWORD dwLastError = GetLastError();

    Hello CWXie,

    I suggest you post your question on our MSDN Developer for support forums:
  • disks of backup creation for a toshiba satellite receive error code error zzimages\zzimages\preinst.swm 020150-20-00000000 will help what I do

    disks of backup creation for a toshiba satellite receive error code error zzimages\zzimages\preinst.swm 020150-20-00000000 will help what I do

    Hi jaygoldstein,

    ·          What program you use to create backup discs?

    If you try to create backup discs using software created by Toshiba, I suggest that you post your question in the forums of Toshiba.

    http://forums.Toshiba.com/

  • His Test results: failure at step 19 (verification of the user of software): HRESULT = 0 x 00000000 (error code)

    ------------------
    Information System
    ------------------
    Time of this report: 11/04/2011, 00:36:27
    Computer name: ADX-01
    Operating system: Windows XP Professional (5.1, Build 2600) Service Pack 2 (2600.xpsp_sp2_rtm.040803 - 2158)
    Language: English (regional setting: Indonesian)
    System manufacturer: INTEL_
    System model: D945GLF_
    BIOS: Default system BIOS
    Processor: Intel(r) atom CPU 230 @ 1.60 GHz (2 CPUs)
    Memory: 1014 MB RAM
    Page file: 570 MB used, 1870 MB of available space
    Windows Dir: C:\WINDOWS
    DirectX version: DirectX 9 .0c (4.09.0000.0904)
    DX setup parameters: not found
    DxDiag Version: 5.03.2600.2180 32 bit Unicode

    ------------
    DxDiag Notes
    ------------
    The DirectX files tab: no problems found.
    Display 1 tab: No problems found.
    Sound tab 1: DirectSound test results: failure at step 19 (verification of the user of software): HRESULT = 0 x 00000000 (error code)
    Music tab: no problems found.
    Input tab: no problems found.
    The network tab: no problems found.

    --------------------
    DirectX Debug levels
    --------------------
    Direct3D: 0/4 (n/a)
    DirectDraw: 0/4 (detail)
    DirectInput: 0/5 (n/a)
    DirectMusic: 0/5 (n/a)
    DirectPlay: 0/9 (detail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (detail)

    ---------------
    Display devices
    ---------------
    Card name: Intel(r) 82945G Express Chipset Family
    Manufacturer: Intel Corporation
    Chip type: Intel(r) 82945G Express Chipset Family
    DAC type: internal
    The device key: Enum\PCI\VEN_8086 & DEV_2772 & SUBSYS_464C8086 & REV_02
    Display memory: 64.0 MB
    Current mode: 1366 x 768 (32 bit) (60 Hz)
    Monitor: Plug-and-Play monitor
    Monitor Max Res: 1600,1200
    Driver name: igxprd32.dll
    Driver version: 6.14.0010.4926 (English)
    The DDI Version: 9 (or higher)
    Driver attributes: Final retail
    Format/driver Date: 2008-07-16 19:24:38, 57344 bytes
    Would be WHQL logo: Yes
    WHQL Date stamp: n/a
    VDD: n/a
    Mini VDD: igxpmp32.sys
    Mini VDD Date: 2008-07-16 19:24:38, 5854752 bytes
    The instrument identifier: {D7B78E66-6432-11CF-08F0-4666A3C2CB35}
    Vendor ID: 0 x 8086
    Device ID: 0 x 2772
    SubSys ID: 0x464C8086
    Revision ID: 0x0002
    Revision ID: 0x0002
    Video Accel:
    Deinterlace caps: n/a
    Registry: OK
    DDraw status: enabled
    D3D status: enabled
    AGP status: Not available
    DDraw Test result: does not work
    D3D7 Test result: does not work
    D3D8 Test result: does not work
    D3d9 Test result: does not work

    -------------
    Sound Devices
    -------------
    Description: Realtek HD Audio output
    Default audio playback: Yes
    Default voice playback: Yes
    Hardware ID: HDAUDIO\FUNC_01 & VEN_10EC & DEV_0662 & SUBSYS_8086D603 & REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver name: RtkHDAud.sys
    Driver version: 5.10.0000.5657 (English)
    Driver attributes: Final retail
    Would be WHQL logo: Yes
    Date and size: 2008-07-18 00:36:52, 4745216 bytes
    Other files:
    Driver provider: Realtek Semiconductor Corp.
    HW Accel level: full
    Cap flags: 0xF5F
    Min/Max sample rate: 8000, 192000
    Static/Strm HW Mix beef: 33: 32
    Static/Strm HW 3D steers: 33: 32
    HW memory: 0
    Management of the voice: No.
    Listen/Src/EAX (TM) 2.0: Yes, Yes
    Listen/Src/I3DL2 (TM): Yes, Yes
    Sensaura (TM) ZoomFX (tm): No.
    Registry: OK
    His Test results: failure at step 19 (verification of the user of software): HRESULT = 0 x 00000000 (error code)

    ---------------------
    Sound Capture devices
    ---------------------
    Description: Realtek HD Audio Input
    Capture audio by default: Yes
    Default voice Capture: Yes
    Driver name: RtkHDAud.sys
    Driver version: 5.10.0000.5657 (English)
    Driver attributes: Final retail
    Date and size: 2008-07-18 00:36:52, 4745216 bytes
    Cap flags: 0x41
    Format Flags: 0xFFF

    -----------
    DirectMusic
    -----------
    DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM. DLS
    DLS Version: 1.00.0016.0002
    Acceleration: n/a
    Ports: Microsoft synthesizer software (not Kernel Mode), output, DLS, internal, default Port
    The MIDI Mapper Microsoft [emulated], hardware (not Kernel Mode), output, no DLS, internal
    Hardware (not Kernel Mode), output, no DLS, internal, Microsoft GS Wavetable SW Synth [emulated]
    Registry: OK
    Test result: does not work

    -------------------
    DirectInput devices
    -------------------
    Device name: mouse
    Joint: 1
    Controller ID: n/a
    Vendor/product ID: n/a
    FF driver: n/a

    Device name: keyboard
    Joint: 1
    Controller ID: n/a
    Vendor/product ID: n/a
    FF driver: n/a

    Poll w / Interrupt: No.
    Registry: OK

    -----------
    USB devices
    -----------
    + USB root hub
    | Suppliers of products/ID: 0 x 8086, 0x27C9
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 03/08/2004 23:08:44, 57600 bytes
    | Driver: usbd.sys, 23/08/2001 18:00, 4736 bytes

    ----------------
    Gameport devices
    ----------------

    ------------
    PS/2 devices
    ------------
    + Standard 101/102-key or Microsoft Natural PS/2 keyboard
    | Matching Device ID: * pnp0303
    | Service: i8042prt
    | Driver: i8042prt.sys, 04/08/2004 04:14:38, 52736 bytes
    | Driver: kbdclass.sys, 04/08/2004 03:58:34, 24576 bytes
    |
    + Server terminal keyboard driver
    | Matching Device ID: root\rdp_kbd
    | High filters: kbdclass
    | Service: TermDD
    | Driver: termdd.sys, 04/08/2004 01:01:08, 40840 bytes
    | Driver: kbdclass.sys, 04/08/2004 03:58:34, 24576 bytes
    |
    + Microsoft PS/2 mouse
    | Matching Device ID: * pnp0f03
    | Service: i8042prt
    | Driver: i8042prt.sys, 04/08/2004 04:14:38, 52736 bytes
    | Driver: mouclass.sys, 04/08/2004 06:05:44, 23040 bytes
    |
    + Terminal Server mouse driver
    | Matching Device ID: root\rdp_mou
    | High filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 04/08/2004 01:01:08, 40840 bytes
    | Driver: mouclass.sys, 04/08/2004 06:05:44, 23040 bytes

    ----------------------------
    DirectPlay service providers
    ----------------------------
    DirectPlay8 Modem Service Provider - Registry: OK, file: dpnet.dll (5.03.2600.2180)
    Service Provider series DirectPlay8 - registry: OK, file: dpnet.dll (5.03.2600.2180)
    DirectPlay8 IPX Service Provider - registry: OK, file: dpnet.dll (5.03.2600.2180)
    DirectPlay8 TCP/IP Service Provider - Registry: OK, file: dpnet.dll (5.03.2600.2180)
    Connection Internet TCP/IP for DirectPlay - registry: OK, file: dpwsockx.dll (5.03.2600.2180)
    Connection IPX for DirectPlay - registry: OK, file: dpwsockx.dll (5.03.2600.2180)
    Connection modem for DirectPlay - registry: OK, file: dpmodemx.dll (5.03.2600.2180)
    Serial connection for DirectPlay - registry: OK, file: dpmodemx.dll (5.03.2600.2180)

    DirectPlay Voice wizard tests: Full Duplex: not run, Half Duplex: doesn't work don't not, Mic: does not work
    The DirectPlay Test result: Does not work
    Registry: OK

    -------------------
    DirectPlay adapters
    -------------------
    Service Provider series DirectPlay8: COM1
    DirectPlay8 TCP/IP Service Provider: Local - IPv4 network - connection

    -----------------------
    DirectPlay Voice Codecs
    -----------------------
    Voxware VR12 1.4kbit / s
    Voxware SC06 6.4kbit / s
    Voxware SC03 3.2kbit / s
    MS - PCM 64 kbit/s
    MS-ADPCM 32.8 kbit/s
    Microsoft GSM 6.10 13 kbit/s
    TrueSpeech (TM) 8.6 kbit/s

    -------------------------
    DirectPlay Lobbyable Apps
    -------------------------

    ------------------------
    Disk & CD-ROM/DVD-ROM readers
    ------------------------
    Drive: C:
    Free space: 53,0 GB
    Total space: 60.7 GB
    File system: NTFS
    Model: ST3160318AS

    Drive: D:
    Free space: 50.7 GB
    Total space: 52.6 GB
    File system: NTFS
    Model: ST3160318AS

    Drive: E:
    Free space: 39.1 GB
    Total space: 39.3 GB
    File system: NTFS
    Model: ST3160318AS

    --------------
    System devices
    --------------
    Name: Intel (r) 82801G (ICH7 Family) SMBus Controller - 27DA
    Device ID: PCI VEN_8086 & DEV_27DA & SUBSYS_464C8086 & REV_01\3 & 61AAA01 & 0 & FB
    Pilot: s/o

    Name: Microsoft UAA for High Definition Audio Bus driver
    Device ID: PCI VEN_8086 & DEV_27D8 & SUBSYS_D6038086 & REV_01\3 & 61AAA01 & 0 & D8
    Driver: C:\WINDOWS\system32\DRIVERS\hdaudbus.sys, 5.10.0001.5013 (English), 2005-01-07 17:07:18, 138752 bytes

    Name: Intel (r) 82801G (ICH7 Family) PCI Express Root Port - 27 6
    Device ID: PCI VEN_8086 & DEV_27D6 & SUBSYS_00000000 & REV_01\3 & 61AAA01 & 0 & E3
    Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.2180 (English), 03/08/2004-23:07:48, 68224 bytes

    Name: Intel (r) 82801G (ICH7 Family) PCI Express Root Port - 27 4
    Device ID: PCI VEN_8086 & DEV_27D4 & SUBSYS_00000000 & REV_01\3 & 61AAA01 & 0 & E2
    Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.2180 (English), 03/08/2004-23:07:48, 68224 bytes

    Name: Intel (r) 82801G (ICH7 Family) PCI Express Root Port - 27 d 0
    Device ID: PCI VEN_8086 & DEV_27D0 & SUBSYS_00000000 & REV_01\3 & 61AAA01 & 0 & E0
    Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.2180 (English), 03/08/2004-23:07:48, 68224 bytes

    Name: Intel (r) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    Device ID: PCI VEN_8086 & DEV_27CC & SUBSYS_464C8086 & REV_01\3 & 61AAA01 & 0 & EF
    Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:38, 26624 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 04/08/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 57600 bytes
    Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.2180 (English), 04/08/2004-05:56:44, 7168 bytes

    Name: Intel (r) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    Device ID: PCI VEN_8086 & DEV_27CB & SUBSYS_464C8086 & REV_01\3 & 61AAA01 & 0 & EB
    Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:38, 20480 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 04/08/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 57600 bytes

    Name: Intel (r) 82801G (ICH7 Family) USB Universal Host Controller - 27 9
    Device ID: PCI VEN_8086 & DEV_27C9 & SUBSYS_464C8086 & REV_01\3 & 61AAA01 & 0 & E9
    Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:38, 20480 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 04/08/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 57600 bytes

    Name: Intel (r) 82801G (ICH7 Family) USB Universal Host Controller - 27 8
    Device ID: PCI VEN_8086 & DEV_27C8 & SUBSYS_464C8086 & REV_01\3 & 61AAA01 & 0 & E8
    Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:38, 20480 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 04/08/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 03/08/2004 23:08:44, 57600 bytes

    Name: Intel (r) 82801 GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
    Device ID: PCI VEN_8086 & DEV_27C0 & SUBSYS_464C8086 & REV_01\3 & 61AAA01 & 0 & FA
    Pilot: C:\WINDOWS\system32\DRIVERS\pciide.sys, 5.01.2600.0000 (English), 17/08/2001-13:51:52, 3328 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.2180 (Indonesian), 03/08/2004 22:59:42, 25088 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.2180 (English), 03/08/2004 22:59:44, 95360 bytes

    Name: Intel (r) 82801 GB/GR (ICH7 Family) LPC Interface Controller - 27 b 8
    Device ID: PCI VEN_8086 & DEV_27B8 & SUBSYS_00000000 & REV_01\3 & 61AAA01 & 0 & F8
    Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.0000 (English), 17/08/2001-13:58:02, 35840 bytes

    Name: Intel (r) 82945G Express Chipset Family
    Device ID: PCI VEN_8086 & DEV_2772 & SUBSYS_464C8086 & REV_02\3 & 61AAA01 & 0 & 10
    Driver: C:\WINDOWS\system32\DRIVERS\igxpmp32.sys, 6.14.0010.4926 (English), 2008-07-16 19:24:38, 5854752 bytes
    Driver: C:\WINDOWS\system32\igxprd32.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:38, 57344 bytes
    Driver: C:\WINDOWS\system32\igxpgd32.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:37, 151040 bytes
    Driver: C:\WINDOWS\system32\igxpdv32.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:36, 1670144 bytes
    Driver: C:\WINDOWS\system32\igxpdx32.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:36, 2643968 bytes
    Driver: C:\WINDOWS\system32\igxpxk32.vp, 2008-07-16 19:24:39, 2096 bytes
    Driver: C:\WINDOWS\system32\igxpxs32.vp, 2008-07-16 19:24:39, 27024 bytes
    Driver: C:\WINDOWS\system32\hccutils.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:28, 102400 bytes
    Driver: C:\WINDOWS\system32\igfxsrvc.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 48128 bytes
    Driver: C:\WINDOWS\system32\igfxsrvc.exe, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 256536 bytes
    Driver: C:\WINDOWS\system32\igfxpph.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 204800 bytes
    Driver: C:\WINDOWS\system32\igfxcpl.cpl, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 122880 bytes
    Driver: C:\WINDOWS\system32\igfxcfg.exe, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 530968 bytes
    Driver: C:\WINDOWS\system32\igfxdev.dll, 6.14.0010.4926 (in English), 2008-07-16 19:24:30, 208896 bytes
    Driver: C:\WINDOWS\system32\igfxdo.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 135168 bytes
    Driver: C:\WINDOWS\system32\igfxtray.exe, 6.14.0010.4926 (in English), 2008-07-16 19:24:34, 141848 bytes
    Driver: C:\WINDOWS\system32\igfxzoom.exe, 6.14.0010.4926 (English), 2008-07-16 19:24:34, 170520 bytes
    Driver: C:\WINDOWS\system32\hkcmd.exe, 6.14.0010.4926 (in English), 2008-07-16 19:24:28, 166424 bytes
    Driver: C:\WINDOWS\system32\igfxress.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 3293184 bytes
    Pilot: C:\WINDOWS\system32\igfxpers.exe, 6.14.0010.4926 (in English), 2008-07-16 19:24:30, 137752 bytes
    Driver: C:\WINDOWS\system32\igfxrara.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 159744 bytes
    Driver: C:\WINDOWS\system32\igfxrchs.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 110592 bytes
    Driver: C:\WINDOWS\system32\igfxrcht.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 110592 bytes
    Driver: C:\WINDOWS\system32\igfxrdan.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:31, 172032 bytes
    Driver: C:\WINDOWS\system32\igfxrdeu.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:31, 192512 bytes
    Driver: C:\WINDOWS\system32\igfxrenu.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:31, 172032 bytes
    Driver: C:\WINDOWS\system32\igfxresp.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:31, 188416 bytes
    Driver: C:\WINDOWS\system32\igfxrfin.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 176128 bytes
    Driver: C:\WINDOWS\system32\igfxrfra.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 184320 bytes
    Driver: C:\WINDOWS\system32\igfxrheb.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 155648 bytes
    Driver: C:\WINDOWS\system32\igfxrita.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 188416 bytes
    Driver: C:\WINDOWS\system32\igfxrjpn.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 131072 bytes
    Driver: C:\WINDOWS\system32\igfxrkor.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 126976 bytes
    Driver: C:\WINDOWS\system32\igfxrnld.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 188416 bytes
    Driver: C:\WINDOWS\system32\igfxrnor.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 176128 bytes
    Driver: C:\WINDOWS\system32\igfxrplk.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 180224 bytes
    Driver: C:\WINDOWS\system32\igfxrptb.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 180224 bytes
    Driver: C:\WINDOWS\system32\igfxrptg.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 180224 bytes
    Driver: C:\WINDOWS\system32\igfxrrus.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 180224 bytes
    Driver: C:\WINDOWS\system32\igfxrsky.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 176128 bytes
    Driver: C:\WINDOWS\system32\igfxrslv.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 172032 bytes
    Driver: C:\WINDOWS\system32\igfxrsve.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 172032 bytes
    Driver: C:\WINDOWS\system32\igfxrtha.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 163840 bytes
    Driver: C:\WINDOWS\system32\igfxrcsy.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:31, 176128 bytes
    Driver: C:\WINDOWS\system32\igfxrell.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:31, 192512 bytes
    Driver: C:\WINDOWS\system32\igfxrhun.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:32, 180224 bytes
    Driver: C:\WINDOWS\system32\igfxrtrk.lrc, 6.14.0010.4926 (English), 2008-07-16 19:24:33, 172032 bytes
    Driver: C:\WINDOWS\system32\igfxext.exe, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 170520 bytes
    Driver: C:\WINDOWS\system32\igfxexps.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:30, 24576 bytes
    Driver: C:\WINDOWS\system32\iglicd32.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:35, 2334720 bytes
    Driver: C:\WINDOWS\system32\igldev32.dll, 6.14.0010.4926 (English), 2008-07-16 19:24:35, 294912 bytes
    Driver: C:\WINDOWS\system32\igfxCoIn_v4926.dll, 2008-07-16 19:24:35, 147456 bytes

    Name: Intel (r) 945 G/GZ/GC/P/PL Processor to i/o Controller - 2770
    Device ID: PCI VEN_8086 & DEV_2770 & SUBSYS_00000000 & REV_02\3 & 61AAA01 & 0 & 00
    Pilot: s/o

    Name: Intel(r) 82801 PCI Bridge - 244
    Device ID: PCI VEN_8086 & DEV_244E & SUBSYS_00000000 & REV_E1\3 & 61AAA01 & 0 & F0
    Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.2180 (English), 03/08/2004-23:07:48, 68224 bytes

    Name: Realtek RTL8102E Family PCI - E Fast Ethernet NIC
    Device ID: PCI\VEN_10EC & DEV_8136 & SUBSYS_00018086 & REV_02\4 & 6C79FC5 & 0 & 00E0
    Driver: C:\WINDOWS\system32\DRIVERS\Rtenicxp.sys, 5.694.0507.2008 (Indonesia), 2008-07-16 19:24:18, 106368 bytes

    ------------------
    DirectX components
    ------------------
    Ddraw.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 266240 bytes
    ddrawex.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 27136 bytes
    dxapi.sys: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 10496 bytes
    D3D8.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:42 1179648 bytes
    d3d8thk.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:42 8192 bytes
    D3D9.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:42 1689088 bytes
    D3dim.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 436224 bytes
    d3dim700.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:42 bytes 825344
    d3dramp.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 590336 bytes
    d3drm.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 350208 bytes
    d3dxof.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 47616 bytes
    d3dpmesh.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 34816 bytes
    dplay.dll: 5.00.2134.0001 English Final Retail 08/23/2001 18:00 33040 bytes
    dplayx.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 229888 bytes
    dpmodemx.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 23552 bytes
    dpwsock.dll: 5.00.2134.0001 English Final Retail 08/23/2001 18:00 42768 bytes
    dpwsockx.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 57344 bytes
    dplaysvr.exe: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:50 30 208 bytes
    dpnsvr.exe: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:50 18432 bytes
    dpnet.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 375296 bytes
    dpnlobby.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:04 3584 bytes
    dpnaddr.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:04 3584 bytes
    dpvoice.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 212480 bytes
    DPVSetup.exe: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:50 83456 bytes
    dpvvox.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 116736 bytes
    dpvacm.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 21504 bytes
    dpnhpast.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 35328 bytes
    dpnhupnp.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 60928 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 08/23/2001 18:00 53520 bytes
    Dinput.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 159232 bytes
    Dinput8.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 181760 bytes
    dimap.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 44032 bytes
    diactfrm.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 394240 bytes
    Joy.cpl: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:58 68608 bytes
    gcdef.dll: 5.01.2600.0000 English Final Retail 08/23/2001 18:00 76800 bytes
    PID.dll: 5.03.2600.2180 English Final Retail 04/08/2004 06:05:44 35328 bytes
    Dsound.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 367616 bytes
    dsound3d.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 bytes 1294336
    dswave.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 19456 bytes
    dsdmo.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 181760 bytes
    dsdmoprp.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 71680 bytes
    dmusic.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 104448 bytes
    dmband.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 28672 bytes
    dmcompos.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 61440 bytes
    dmime.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 181248 bytes
    dmloader.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 35840 bytes
    dmstyle.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 105984 bytes
    dmsynth.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 103424 bytes
    DMScript.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 82432 bytes
    dx7vb.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 bytes 619008
    dx8vb.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 bytes 1227264
    c:\windows\system32\dxdiagn.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 bytes 2113536
    MFC40.dll: 4.01.0000.6140 English retail Final 23/08/2001 18:00 924432 bytes
    Mfc42.dll: 6.02.4131.0000 English retail Final 04/08/2004 05:56:44 1028096 bytes
    Wsock32.dll: 5.01.2600.2180 English Final Retail 04/08/2004 05:56:48 22528 bytes
    amstream.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:42 70656 bytes
    devenum.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:44 59904 bytes
    Dxmasf.dll: 6.04.0009.1125 English retail Final 04/08/2004 05:56:44 bytes 498205
    mciqtz32.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:44 35328 bytes
    mpg2splt.AX: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:58 148992 bytes
    msdmo.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:44 14336 bytes
    encapi.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:44 20480 bytes
    QASF.dll: 9.00.0000.3250 English retail Final 04/08/2004 05:56:46, 237568 bytes
    QCAP.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:46 192512 bytes
    QDV.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:46 279040 bytes
    Qdvd.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:46 385024 bytes
    Qedit.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:46 562176 bytes
    qedwipes.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:26 733696 bytes
    Quartz.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:46 bytes 1287680
    Strmdll.dll: 4.01.0000.3928 English retail Final 04/08/2004 05:56:46 246302 bytes
    iac25_32.AX: 2.00.0005.0053 English retail Final 04/08/2004 05:56:58 199680 bytes
    ir41_32.AX: 4.51.0016.0003 English retail Final 04/08/2004 05:56:58 bytes 848384
    ir41_qc.dll: 4.30.0062.0002 English retail Final 04/08/2004 05:56:44 bytes, 120320
    ir41_qcx.dll: 4.30.0064.0001 English retail Final 04/08/2004 05:56:44 bytes 338432
    ir50_32.dll: 5.2562.0015.0055 English retail Final 04/08/2004 05:56:44 755200 bytes
    ir50_qc.dll: 5.00.0063.0048 English retail Final 04/08/2004 05:56:44 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English retail Final 04/08/2004 05:56:44 183808 bytes
    ivfsrc.AX: 5.10.0002.0051 English retail Final 04/08/2004 05:56:58 154624 bytes
    mswebdvd.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:46 204288 bytes
    The KS.sys: 5.03.2600.2180 Indonesian retail Final 03/08/2004 23:15:22 140928 bytes
    ksproxy.AX: 5.03.2600.2180 Indonesian retail Final 04/08/2004 00:56:58, 130048 bytes
    ksuser.dll: 5.03.2600.2180 Indonesian retail Final 04/08/2004 00:56:44 4 096 bytes
    Stream.sys: 5.03.2600.2180 Indonesian retail Final 03/08/2004 23:08:04 48640 bytes
    MSPCLOCK.sys: 5.03.2600.2180 Indonesian retail Final 03/08/2004 22:58:40 5376 bytes
    MSPQM.sys: 5.01.2600.2180 Indonesian retail Final 03/08/2004 22:58:42 4992 bytes
    MSKSSRV.sys: 5.03.2600.2180 Indonesian retail Final 03/08/2004 22:58:42 7552 bytes
    SWENUM.sys: 5.03.2600.2180 Indonesian retail Final 04/08/2004 06:05:44 4352 bytes
    mpeg2data.AX: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:58 118272 bytes
    MSVidCtl.dll: 6.05.2600.2180 English Final Retail 04/08/2004 05:56:44 bytes 1428480
    vbisurf.AX: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:58 30720 bytes
    msyuv.dll: 5.03.2600.2180 English Final Retail 04/08/2004 06:05:44 17408 bytes
    wstdecod.dll: 5.03.2600.2180 English Final Retail 04/08/2004 05:56:48 50688 bytes

    ------------------
    DirectShow filters
    ------------------

    DirectShow filters:
    WMAudio Decoder DMO, 0 x 00800800, 1, 1,
    WMSpeech Decoder DMO, 0 x 00600800, 1, 1,
    Mpeg4s Decoder DMO, 0 x 00800001, 1, 1,
    Decoder DMO, 0 x 00800001, 1, 1 screen, WMV
    WMVideo Decoder DMO, 0 x 00800001, 1, 1,
    Mpeg43 Decoder DMO, 0 x 00800001, 1, 1,
    MPEG4 Decoder DMO, 0 x 00800001, 1, 1,
    WMT MuxDeMux Filter, 0 x 00200000, 0, 0, wmm2filt.dll, 2.01.4026.0000
    Full-screen Renderer, 00200000 x 0, 1, 0, quartz.dll, 6.05.2600.2180
    DV Muxer, 0x00400000, 0, 0, qdv.dll, 6.05.2600.2180
    Converter, 0 x 00400001, 1, 1, quartz.dll, 6.05.2600.2180 color space
    Reader, 0x00400000, 0, 0, qasf.dll, WM ASF 9.00.0000.3250
    AVI Splitter, 0 x 00600000, 1, 1, quartz.dll, 6.05.2600.2180
    AudioAnalyzer, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000 WMT
    VGA 16 color Ditherer, 0 x 00400000, 1, 1, quartz.dll, 6.05.2600.2180
    Indeo® video 5.10 Compression Filter, 0 x 00200000, 1, 1, ir50_32.dll, 5.2562.0015.0055
    Windows Media Audio Decoder, 0 x 00800001, 1, 1, msadds32.ax, 8.00.0000.4487
    AC3 parser Filter, 0 x 00600000, 1, 1, mpg2splt.ax, 6.05.2600.2180
    WMT Format Conversion, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    StreamBufferSink, 0 x 00200000, 0, 0, sbe.dll, 6.05.2600.2180
    WMT frame black Generator, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    MJPEG Decompressor, 0 x 00600000, 1, 1, quartz.dll, 6.05.2600.2180
    Indeo® video 5.10 Decompression Filter, 0 x 00640000, 1, 1, ir50_32.dll, 5.2562.0015.0055
    Capture screen filter, 0 x 00200000 WMT, 0, 1, wmm2filt.dll, 2.01.4026.0000
    Microsoft screen video Decompressor, 0 x 00800000, 1, 1, msscds32.ax, 8.00.0000.4487
    MPEG-I Stream Splitter, 0 x 00600000, 1, 2, quartz.dll, 6.05.2600.2180
    Parser, 0 x 00400000, 1, 1, quartz.dll, 6.05.2600.2180 SAMI (CC)
    MPEG Layer - 3 Decoder, 0 x 00810000, 1, 1, l3codecx.ax, 1.05.0000.0050
    MPEG-2 Splitter, 0x005fffff, 1, 0, mpg2splt.ax, 6.05.2600.2180
    ACELP.net Sipro Lab Audio Decoder, 0 00800001, 1, 1, x acelpdec.ax, 1.04.0000.0000
    Renderer, 0 x 00800001, 1, 0, quartz.dll, 6.05.2600.2180 Script command internal
    MPEG Audio Decoder, 0 x 03680001, 1, 1, quartz.dll, 6.05.2600.2180
    File Source (Netshow URL), 0 x 00400000, 0, 1, wmpasf.dll, 9.00.0000.3250
    WMT Import Filter, 0 x 00200000, 0, 1, wmm2filt.dll, 2.01.4026.0000
    DV Splitter, 0 x 00600000, 1, 2, qdv.dll, 6.05.2600.2180
    Generate, 0 x 00200000, 1, 1 bitmap, image wmm2filt.dll, 2.01.4026.0000
    Windows Media video Decoder, 0 x 00800000, 1, 1, wmvds32.ax, 8.00.0000.4487
    Video Mixing Renderer 9 0 x 00200000, 1, 0, quartz.dll, 6.05.2600.2180
    Windows Media video Decoder, 0 x 00800000, 1, 1, wmv8ds32.ax, 8.00.0000.4000
    WMT 2 Fix, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    Note tail, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    Windows Media multiplex, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    ASX Parser file, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    File v.2 ASX Parser, 0 x 00600000, 1, 0, wmpasf.dll, 9.00.0000.3250
    File NSC Parser, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    ACM Wrapper, 0 x 00600000, 1, 1, quartz.dll, 6.05.2600.2180
    Windows Media source filter, 0 x 00600000, 0, 2, wmpasf.dll, 9.00.0000.3250
    Video Renderer, 0 x 00800001, 1, 0, quartz.dll, 6.05.2600.2180
    Frame Eater, 0 00200000, 1, 1, x wmm2filt.dll, 2.01.4026.0000
    Video stream MPEG - 2 Analyzer, 0 x 00200000, 0, 0, sbe.dll, 6.05.2600.2180
    Line 21 Decoder, 0 x 00600000, 1, 1, qdvd.dll, 6.05.2600.2180
    Port video Manager, 0 x 00600000, 2, 1, quartz.dll, 6.05.2600.2180
    Decoder, 0 x 00600000, 1, 1, wstdecod.dll, 5.03.2600.2180 WST
    Video Renderer, 0x00400000, 1, 0, quartz.dll, 6.05.2600.2180
    Writer, 0x00400000, 0, 0, qasf.dll, WM ASF 9.00.0000.3250
    WMT sample information Filter, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    Allocator, 0 x 00600000, 1, 1, vbisurf.ax, 5.03.2600.2180 Surface of VBI
    Microsoft MPEG-4 video Decompressor, 0 x 00800000, 1, 1, mpg4ds32.ax, 8.00.0000.4487
    File writer, 00200000 x 0, 1, 0, qcap.dll, 6.05.2600.2180
    WMT Log Filter, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    WMT Renderer, 00200000 x 0, 1, 0, wmm2filt.dll, 2.01.4026.0000 virtual
    DVD Navigator, 0 x 00200000, 0, 2, qdvd.dll, 6.05.2600.2180
    Mixer2, 0 x 00400000, 1, 1, qdvd.dll, 6.05.2600.2180 overlay
    AVI Draw, 0 x 00600064, 9, 1, quartz.dll, 6.05.2600.2180
    . File Parser RAM, 0 x 00600000, 1, 0, wmpasf.dll, 9.00.0000.3250
    WMT DirectX Transform Wrapper, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    G.711 Codec, 0 x 00200000, 1, 1, g711codc.ax, 5.01.2600.0000
    MPEG2 demux, 0 x 00600000, 1, 1, mpg2splt.ax, 6.05.2600.2180
    Decoder, 0 x 00800000, 1, 1, qdv.dll, 6.05.2600.2180 DV video
    Indeo® audio software, 0 x 00500000, 1, 1, iac25_32.ax, 2.00.0005.0053
    Update Windows Media Filter, 0 x 00400000, 1, 0, wmpasf.dll, 9.00.0000.3250
    Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250 ASF DIB
    ASF ACM Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    ASF ICM Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    ASF URL Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250 ASF JPEG
    IMAGES of the ASF Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    ASF embedded stuff Handler, 0 x 00600000, 1, 1, wmpasf.dll, 9.00.0000.3250
    9x8Resize, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    WIA instant flow Filter, 0 x 00200000, 1, 1, wiasf.ax, 1.00.0000.0000
    0 00200000, 1, 1, x, allocator Fix wmm2filt.dll, 2.01.4026.0000
    SampleGrabber, 0 x 00200000, 1, 1, qedit.dll, 6.05.2600.2180
    Renderer, 00200000 x 0, 1, 0, qedit.dll, 6.05.2600.2180 null
    WMT Source, 0 x 00200000, 0, 1, wmm2filt.dll, 2.01.4026.0000 virtual
    Interlacer, 0 00200000, 1, 1, x wmm2filt.dll, 2.01.4026.0000 WMT
    StreamBufferSource, 0 x 00200000, 0, 0, sbe.dll, 6.05.2600.2180
    Smart Tee, 0 x 00200000, 1, 2, qcap.dll, 6.05.2600.2180
    Mix, 0 x 00200000, 0, 0, qdvd.dll, 6.05.2600.2180 overlay
    AVI Decompressor, 0 x 00600000, 1, 1, quartz.dll, 6.05.2600.2180
    Domain uncompressed detection Filter, 0 x 00200000 shooting, 1, 1, wmm2filt.dll, 2.01.4026.0000
    Source, 0 x 00400000, 0, 2, quartz.dll, 6.05.2600.2180 AVI/WAV file
    QuickTime Movie Parser, 0 x 00600000, 1, 1, quartz.dll, 6.05.2600.2180
    Parser, 0 x 00400000, 1, 1, quartz.dll, 6.05.2600.2180 wave
    Parser, 0 x 00400000, 1, 1, quartz.dll, 6.05.2600.2180 MIDI
    Multi-fichier Parser, 0 x 00400000, 1, 1, quartz.dll, 6.05.2600.2180
    File stream renderer, 0x00400000, 1, 1, quartz.dll, 6.05.2600.2180
    XML Playlist, 0x00400000, 1, 0, wmpasf.dll, 9.00.0000.3250
    AVI Mux, 00200000 x 0, 1, 0, qcap.dll, 6.05.2600.2180
    Line 21 decoder 2, 0 x 00600002, 1, 1, quartz.dll, 6.05.2600.2180
    File Source (Async.), 0 x 00400000, 0, 1, quartz.dll, 6.05.2600.2180
    File Source (URL), 0 x 00400000, 0, 1, quartz.dll, 6.05.2600.2180
    WMT DV Extract, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000
    Filter, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000 switch WMT
    Volume, 0 x 00200000, 1, 1, wmm2filt.dll, 2.01.4026.0000 WMT
    Video, 0 x 00200000, 1, 1, wmm2filt.dll, Extensible 2.01.4026.0000
    Infinite pin Tee Filter, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Decompressor, 0 x 00600000, 1, 1, quartz.dll, 6.05.2600.2180 QT
    Decoder, 0 x 40000001, 1, 1, quartz.dll, 6.05.2600.2180 MPEG video
    Indeo® video 4.4 Decompression Filter, 0 x 00640000, 1, 1, ir41_32.ax, 4.51.0016.0003
    Indeo® video 4.4 Compression Filter, 0 x 00200000, 1, 1, ir41_32.ax, 4.51.0016.0003

    WDM streaming data transformations:
    Cancellation of acoustic echo of core Microsoft, 0 x 00000000, 0, 0,
    Core Microsoft GS Wavetable Synthesizer, 0 x 00200000, 1, 1, 5.03.2600.2180
    Synthesizer DLS to the core Microsoft 0 x 00200000, 1, 1, 5.03.2600.2180
    Audio decoder core Microsoft DRM, 0 x 00200000, 1, 1, 5.03.2600.2180

    Video compressors:
    MSScreen encoder DMO, 0 x 00600800, 1, 1,
    WMVideo9 encoder DMO, 0 x 00600800, 1, 1,
    Encoder DMO MSScreen 9, 0 x 00600800, 1, 1,
    Encode, 0 x 00200000, 0, 0, qdv.dll, 6.05.2600.2180 DV video
    Indeo® video 5.10 Compression Filter, 0 x 00100000, 1, 1, ir50_32.dll, 5.2562.0015.0055
    MJPEG Compressor, 0 x 00200000, 0, 0, quartz.dll, 6.05.2600.2180
    Cinepak Codec by Radius, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Intel 4:2:0 video V2.50, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Intel Indeo video A3.2, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Intel Indeo® video 4.5, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Indeo® video 5.10, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Intel IYUV codec, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Codec, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180 Microsoft H.261 video
    Codec, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180 Microsoft H.263 video
    Microsoft RLE, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180
    Microsoft Video 1, 0 x 00200000, 1, 1, qcap.dll, 6.05.2600.2180

    Audio compressors:
    Speech WM Encoder DMO, 0 x 00600800, 1, 1,
    WMAudio encoder DMO, 0 x 00600800, 1, 1,
    IAC2, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    IMA ADPCM, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    PCM, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    Microsoft ADPCM, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    ACELP.net, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    DSP Group TrueSpeech (TM), 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    Windows Media Audio V1, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    Windows Media Audio V2, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    GSM 6.10, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    Microsoft G.723.1, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    CCITT A - Law, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    CCITT u - Law, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180
    MPEG Layer-3, 0 x 00200000, 1, 1, quartz.dll, 6.05.2600.2180

    Audio Capture sources:
    Realtek HD Audio Input, 0 x 00200000, 0, 0, qcap.dll, 6.05.2600.2180

    Midi converters:
    Default MidiOut Device, 0 x 00800000, 1, 0, quartz.dll, 6.05.2600.2180
    Microsoft GS Wavetable SW Synth, 00200000 x 0, 1, 0, quartz.dll, 6.05.2600.2180

    WDM Streaming Capture devices:
    Realtek HD Audio Input, 0 x 00200000, 1, 1, 5.03.2600.2180

    WDM Streaming making devices:
    Realtek HD Audio output, 0 x 00200000, 1, 1, 5.03.2600.2180

    WDM Streaming Mixer devices:
    Mixer Audio Wave of core Microsoft, 0 x 00000000, 0, 0,

    CP/CA BDA filters:
    Decrypt/Tag,0x00600000,1,0,encdec.dll,6.05.2600.2180
    Encrypt/Tag,0x00200000,0,0,encdec.dll,6.05.2600.2180
    XDS Codec, 0 x 00200000, 0, 0, encdec.dll, 6.05.2600.2180

    Audio converters:
    Realtek HD Audio output, 0 x 00200000, 1, 0, quartz.dll, 6.05.2600.2180
    DirectSound Device, 0 x 00800000, 1, 0, quartz.dll, default 6.05.2600.2180
    Default WaveOut Device, 0 x 00200000, 1, 0, quartz.dll, 6.05.2600.2180
    DirectSound: Realtek HD Audio output, 0 x 00200000, 1, 0, quartz.dll, 6.05.2600.2180

    WDM Streaming features:
    Realtek HD Audio Input, 0 x 00200000, 4, 1, 5.03.2600.2180
    Realtek HD Audio output, 0 x 00200000, 9, 1, 5.03.2600.2180

    (1) upgrade to XP sp3

    2) update or reinstall Direct 9.0 c

    3) go to your computer manufacturer's website and download the latest drivers XP for your audio device. Re-start thereafter.

    See you soon,.
    Jerry

  • Error code; The parameter is Incorrect

    My operating system is "Windows XP Home." I tried to print a multitude of photos using the "Photo Print Wizard." When I click the link icon in the "picture and Fax Viewer", I get the error code; The parameter is Incorrect. The wizard does not open. I noticed that the icon in the 'Control Panel' folder has changed and the name is 'File' rather than 'printers and faxes '. I made every effort to change, including to remove and reinstall my printer but nothing helped. I can't delete the file or find the root of this folder in 'windows '. It seemed to me that the path of the file has been changed due to a change of name of this file in the path. However, I can still use a printer installed by other software to print. By the way, when I reinstall any printer, I do not see the printer in this file but it always says 'File' in the 'control panel '. The shimgvw.dll file is registered correctly as I can tell. If I try to launch 'Photo and Print Wizard' from the link on the left in the "Control Panel" itself, I just get a beep for error but no error code. The wizard does not start. This wizard is a very important tool to print multiple selections at once. I havn't used in awhile, so I don't know when it is first of all changed. Any thoughts?, anyone? Is there another install name of the package in the wizard to reinstall it from Microsoft?

    THIS WILL SOLVE THE PROBLEM

    1. Click Start> run type REGSVR32 photowiz.dll click OK

    NOTE: leave a space between the two.

    FACT!

    This will re - save the "TheAssistant printing photographs"and it will work from the folder 'My pictures'.

    * However, this does not resolve the question "renaming" of the file folder in the 'Control Panel', 'printers and faxes '.   That remains a mystery, I hope I can solve.

    2. If you are unsure if you have this module, DO a SEARCH using the search tool in the "Start Menu".

    3. If the search shows nothing in the directory... (drive letter) \Windows\System32, and then search the directory(drive letter)\WINDOWS\ServicePackFiles\i386, Scroll to module; photowiz.dll and 'Copy and paste' to your windows folder directory as described above. Depends on your drive letter on which you originally installed "Windows XP". It is usually a letter'C'.

    5. If you had to 'Copy and paste' this module in your operating system folder. Then, you must re-register the above method module.

    Thank you, GARTH

     

  • Im trying to find my windows oc disk and I keep getting an error shell excute ex failed; Code 87 the parameter is incorrect how can I solve this problem

    Im trying to get my disk of oc windows, and I get an error shell excute ex failed; Code 87 the parameter is incorrect. Please help me

    How can I solve this problem. Thank you.

    Hello

    You did it changes on the computer before the problem started?

    I suggest you perform a startup repair.

    See these articles for help:

    http://Windows.Microsoft.com/en-us/Windows-Vista/startup-repair-frequently-asked-questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/how-do-I-fix-a-boot-startup-problem

  • When you play call of Duty Modern Warfare 2, I get the 1000008e error code.

    original title: Windows crashed when you play the game

    I got error when playing in game:

    Error code 1000008e c0000005 parameter1, b53137f4, parameter3, parameter4 00000000 a561a424 parameter 2.
    Error ID: 1003

    It was happen every 30 minutes and 1 day

    I had Windows XP SP3, Phenom x 6 and HD 6450 on my old PC

    Phenom x 4 and ATI HD 6870 and Win 7 Ultimate edition

    Surprisingly, I can run MW2 without accident in my old PC for two days!

    Hello

    It seems that the issue could be with the file to install the game. I suggest you to uninstall the game and then get the new installation disc. Reinstall the game using the new drive and see if that fixes the problem.

    I suggest you to check with the game support Men of War for more information.

    http://www.menofwargame.com/support

  • Blue screen error code: 000000d 1

    original title: BSOD error code: 000000d 1

    Parameter1: 00000060,

    parameter 2: 00000002,

    parameter3: 00000000.

    parameter4: b7f2d78c.

    0000: 53 79 73 74 65 6 d 20 45

    0008: 72 72 6f 72 20 20 45 72

    0010: 72 6f 72 20 63 6f 64 65

    0018: 20 30 30 30 30 30 30 64

    0020: 31 20 20 50 61 72 61 6 D

    0028: 65 74 65 72 73 20 30 30

    0030: 30 30 30 30 36 30 2 C 20

    0038: 30 30 30 30 30 30 30 32

    0040: 2 C 20 30 30 30 30 30 30

    0048: 30 30 2 c 20 62 37 66 32

    0050: 64 37 38 63

    The BSOD is intermittent and random.

    Can someone tell me please in the right direction. Thank you.

    Please provide additional information on your system:
    What is your system brand and model?
    What is your version of XP and the Service Pack?
    Describe your current antivirus and software anti malware situation: McAfee, Norton, Spybot, AVG, Avira!, Defender, ZoneAlarm, PC Tools, MSE, Comodo, etc..
    The afflicted system has a CD/DVD drive work?
    You have a true bootable XP installation CD (it is not the same as any recovery CD provided with your system)
    ?
    Fill in the blank:
    My system worked well until ___.
    Click Start, run and enter in the box:
    Msinfo32
    Click on OK and when the system info summary appears, click on Edition, select all, copy, and then paste the information here.
    For information about video drivers, expand components, click view, click on edit, select all, copy and then paste the information here.
    There will be some personal information (such as the user name and the name of the system), and anything that turns information private for you, simply delete the pasted information.
    This will minimize back Q & A and eliminate guesswork.
    Download BlueScreenView here:
    Unzip it and run it (BSV installs nothing) and let him complete the digitization of all your crash dump files.
    If you double-click on depressed, you will get information on it (including the field caused by the driver) and you should be able to spot the problem right away - especially if you see a model in landfills where Caused by field pilot is the same (beginning with this driver).
    Select (highlight) one or more of the most recent dump files by clicking on them and hold down the CTRL key to select multiple files.  Try to select only the most recent links that relate to your problem (perhaps five or six to start dump files).
    Click on file, save selected items and save information from the dumps to a text file on your desktop called BSOD.txt.  Open BSOD.txt with a text editor, copy the text and paste it in your next reply.
    Here's an example of report ASB to a single BSOD I initiated on purpose that indicates the cause of the accident as the pilot i8042prt.sys belonging to Microsoft Corporation:
    ==================================================
    Dump file: Mini062110 - 01.dmp
    Crash time: 21/06/2010-11:51:31
    Bug Check String: MANUALLY_INITIATED_CRASH
    Bug check code: 0x000000e2
    Parameter 1: 0x00000000
    Parameter 2: 0x00000000
    Parameter 3: 0x00000000
    Parameter 4: 0x00000000
    Caused by the driver: i8042prt.sys
    Caused by the address: i8042prt.sys + 27fb
    Description of the file: i8042 Port driver
    Product name: Microsoft® Windows® Operating System
    Company: Microsoft Corporation
    File version: 5.1.2600.5512 (xpsp.080413 - 2108)
    Processor: 32-bit
    Computer name:
    Full path: C:\WINDOWS\minidump\Mini062110-01.dmp
    ==================================================
    Send information from 5 last memory dumps.
    No matter what you use for protection against malware, please follow these steps:
    Download, install, update and do a full scan with these free malware detection programs:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    It can be uninstalled later if you wish.

    Do not guess what the problem might be - understand and resolve it. I need YOUR voice and the points for helpful answers and propose responses. I'm saving for a pony!

  • blue screen error code 1000008e death.

    Original title: error code?

    I sometimes get the "blue screen of death"... with this error code:

    BCCode: 1000008e BCP1: E0000001 BCP2: B8400925 BCP3: AC4178B8
    BCP4: 00000000 OSVer: 5_1_2600 SP: 3_0 product: 768_1

    Can someone help me solve this problem?

    Since the MS Answers forum does not prompt for any information system when a new question is asked, we know absolutely nothing about your system.  This makes troubleshooting difficult unless you like to try things.

    All the Microsoft Engineers do sometimes (most of the time) is just use the Bing search engine to see what happens to your error message and publish the first Microsoft KB article that appears in the search engine Bing (try it yourself and you will get the article sent you the MSE - which is unlikely to help all).  Who is troubleshooting not, is it?

    Did you take a glance at this KB article?  It's a bit overwhelming, and it requires you to have an XP installation CD and if you have one, it better be the same Service Pack as your Service Pack installed or things will go back.  However, the MSE was using the word "try" and that does not sound very confident for me-, but feel free to try.

    If you sometimes get only the BSOD, you provide a us with more information about your system and use something like BlueScreenView to see if you can understand what is underway.

    Please provide additional information on your system:
    What is your system brand and model?
    What is your Version of XP and the Service Pack?
    Describe your current antivirus and software anti malware situation: McAfee, Symantec, Norton, Spybot, AVG, Avira!, MSE, Panda, Trend Micro, CA, Defender, ZoneAlarm, PC Tools, Comodo, etc..
    The question was preceded by a loss of power, aborted reboot or abnormal termination?  (this includes the plug pulling, buttons power, remove the battery, etc.)
    The afflicted system has a CD/DVD drive work?
    You have a true bootable XP installation CD (it is not the same as any recovery CD provided with your system)?
    Your system seems to start OK and then crash or didn't he start not at all?
    If your system works fine, what do you think might have changed since the last time it worked correctly?
    Can you make the system crash when you want
    ?  For example, you would say that there is no specific system activity that coincides with the accidents (like watching videos, playing games, etc.).

    The next time your system crashes, provide more information on what you see.

    Here's a BSOD example showing information you provide:
    Send for the nose and the Red arrows (3 to 4 lines total).
    Send all * line STOP message since there are clues in the 4 parameters.
    If there is a name of the file listed in the STOP message, don't forget to include this information too.
    Ignore the boring text unless it seems important to you.  We know what a BSOD looks like, we need to know what your BSOD looks like.
    Now provide more information about your system and data against more recent accidents.
    Click Start, run and enter in the box:
    Msinfo32
    Click on OK and when the system info summary appears, click on Edition, select all, copy, and then paste the information here.
    For information about video drivers, expand components, click view, click on edit, select all, copy and then paste the information here.
    There will be some personal information (such as the user name and the name of the system), and anything that turns information private for you, simply delete the pasted information.
    This will minimize back Q & A and eliminate guesswork.
    Download BlueScreenView here:
    Unzip it and run it (BSV installs nothing) and let him complete the digitization of all your crash dump files.
    If you double-click on depressed, you will get information on it (including the field caused by the driver) and you should be able to spot the problem right away - especially if you see a model in landfills where Caused by field pilot is the same (beginning with this driver).
    BlueScreenView tries to find the right driver or module that caused the blue screen by looking inside the stack of the accident. However, be aware that the driver detection mechanism is not 100% reliable, and you should also look in the lower pane, that display all drivers/modules found in the stack.
    Select (highlight) one or more of the most recent dump files by clicking on them and hold down the CTRL key to select multiple files.  Try to select only the most recent links that relate to your problem (perhaps five or six to start dump files).
    Click on file, save selected items and save information from the dumps to a text file on your desktop called BSOD.txt
    .  Open BSOD.txt with a text editor, copy the text and paste it in your next reply.
    Here's an example of report ASB to a single BSOD I initiated on purpose that indicates the cause of the accident as the pilot i8042prt.sys belonging to Microsoft Corporation:
    ==================================================
    Dump file: Mini062110 - 01.dmp
    Crash time: 21/06/2010-11:51:31
    Bug Check String: MANUALLY_INITIATED_CRASH
    Bug check code: 0x000000e2
    Parameter 1: 0x00000000
    Parameter 2: 0x00000000
    Parameter 3: 0x00000000
    Parameter 4: 0x00000000
    Caused by the driver: i8042prt.sys
    Caused by the address: i8042prt.sys + 27fb
    Description of the file: i8042 Port driver
    Product name: Microsoft® Windows® Operating System
    Company: Microsoft Corporation
    File version: 5.1.2600.5512 (xpsp.080413 - 2108)
    Processor: 32-bit
    Computer name:
    Full path: C:\WINDOWS\minidump\Mini062110-01.dmp
    ==================================================
    Send the information of the last 5 memory dumps (if you don't have 5 memory dumps yet, send the newest, you have).
    While you wait, please follow these steps:
    Perform scans for malware, and then fix any problems:
    Download, install, update and do a full scan with these free malware detection programs:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    They can be uninstalled later if you wish.
    Restart your computer and solve the outstanding issues.
  • Blue screen after having ejected the error code 1000007e game disc.

    Hello, I get the BSOD error message when I eject a game disc every time. It's sort of a stop error message. ::

    Error 1000007e, parameter1 c0000005, 80515b9d, parameter3, parameter4 f7bdb930 f7bdbc34 parameter 2.

    I've updated the drivers for DVD players, and it seems to have worked so far. Thanks to each of you for your help.

    Jay
  • HOW CAN I FIX A SCREEN BLUE, WITH STOP ERROR CODE: 0X0000007E (0XC0000005, 0X89F24OAE, 0X8A953BA0, 0X8A95389C)

    HOW CAN I FIX A SCREEN BLUE, WITH STOP ERROR CODE: 0X0000007E (0XC0000005, 0X89F24OAE, 0X8A953BA0, 0X8A95389C)

    Hello

    Please do not type in capital letters because it's difficult to read and considered to be shouting.

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

    Check this thread for more information using BlueScreenView, MyEventViewer and other methods
    to troubleshoot the BlueScreens - top 3 responses (+ 1 other).

    http://social.answers.Microsoft.com/forums/en-us/vistarepair/thread/3deab2fa-4000-4136-8c78-a3d22b1db009

    We can analyze the minidumps if make you it available to the SkyDrive or another file
    sharing sites.

    ZIP or download the content of the C:\Windows\minidump

    Use SkyDrive download collected files and after shot/screenshot.
    http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

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

    Also this, so you can see the probable bluescreens.

    Windows Vista restarts automatically if your computer encounters an error that requires him to plant.
    (also Windows 7)
    http://www.winvistatips.com/disable-automatic-restart-T84.html

    ===========================================================

    The system has RAID? If so, it's also very suspicious.

    This error is usually a driver problem and display adapter (video) driver is the most suspicious if she
    may be others. Antivirus/antispyware/security programs, equipment (heat) and major software problems
    can also cause the error. When you get to the section of the driver to use the Troubleshoot utility my generic
    methods in the next message and then return to the if necessary troubleshooting tool.

    Have you recently added hardware or drivers updated? Don't forget to look in Control Panel - Windows
    Updates to see if all drivers have been updated it. Other donor opportunities include the antivirus/anti-
    spyware/security programs.

    When you get to the pilot and sections of the memory of the troubleshooter check the following message to
    update drivers and memory test and then return to the troubleshooter if necessary.

    BCCode: 7F 0x0000007E which is also 0x1000007E

    Cause

    SYSTEM_THREAD_EXCEPTION_NOT_HANDLED bug control is a very common bug control. TO
    interpret, you must identify which exception has been generated.

    Common exception codes are:

    • 0xc0000005: STATUS_ACCESS_VIOLATION indicates a memory access violation has occurred.

    For a complete list of exception codes, see the Ntstatus.h file located in theinc directory
    the Microsoft Windows Driver Kit (WDK).

    Solve the problem

    If you do not have to debug this problem, you must use certain basic troubleshooting techniques.

    • Make sure you have enough disk space.
    • If a driver is identified in the bug check message, disable the driver or check with the
    • Reference of the manufacturer for driver updates.
    • Try changing video cards.
    • Check with your hardware vendor for updates to the BIOS.
    • Disable the BIOS memory options such as implementing caching or shading.

    If you plan to debug this problem, you may find it difficult to get a stack trace. Parameter 2
    (the address of the exception) must identify the driver or function that caused the problem.

    If the exception code 0 x 80000003 occurs, a hard-coded breakpoint or assertion was hit, but the system
    has been launched with the /nodebug. switch. This problem should occur infrequently. If it occurs repeatedly,
    Make sure that a kernel debugger is connected and the system is booted with the Switch/DEBUG .

    In case of exception code 0 x 80000002, the trap frame provides additional information.

    If you do not know the specific cause of the exception, consider the following questions:

    • Hardware incompatibility. Make sure all new hardware that is installed is listed in the
    • List of Microsoft Windows Marketplace tested products.
    • Service driver or defective peripheral system. A service driver or defective peripheral system can be
    • responsible for this error. Hardware problems, such as the incompatibilities of the BIOS, memory, conflicts
    • and IRQ conflicts can also generate this error.

    If a driver is listed by name in the bug check message, disable or remove that driver. Disable
    or remove drivers or services that have been recently added. If the error occurs during startup
    sequence and the system partition is formatted with the NTFS file system, you may be able to use safe
    Mode to rename or to delete the faulty driver. If the driver is used as part of the system startup procedure
    in Safe Mode, you must start the computer by using the Recovery Console to access the file.

    If the problem is associated with Win32k.sys, the source of the error may be a third remote
    control program. If this software is installed, you can remove the boot of the computer service
    by using the Recovery Console, and then by removing the offending system service file.

    Check the system log in Event Viewer for additional error messages that might help identify the
    device or the driver that generated the bug check 0x7E.

    You can also disable memory cache BIOS may try to resolve the error. You should also
    Run the diagnostics of material, especially the scanner memory, which provides the manufacturer of the system.
    For more information about these procedures, see the manual of your computer.

    The error that generates this message may occur after the first reboot during Windows Setup, or
    Once the installation is complete. A possible cause of the error is lack of disk space for installation and system
    BIOS incompatibilities. For problems during the installation of Windows that are associated with the absence of disc
    space, reduce the number of files on the disk drive hard target. Find and delete any temporary
    the files that you do not have to have files hidden Internet, backup application and.chkfiles files that
    contain fragments of file saved to disk scans. You can also use another hard drive with more drive
    free space for the installation. You can solve the problems of BIOS by upgrading the version of the system BIOS.

    BCCode: 7F 0x00000007E who is also a 0x1000007E<-- read="" this="">
    * 1141.html? order = votes http://www.faultwire.com/solutions-fatal_error/System-thread-exception-not-HANDLED-0x0000007E-

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

    Look in the Event Viewer to see if something is reported on those.
    http://www.computerperformance.co.UK/Vista/vista_event_viewer.htm

    MyEventViewer - free - a simple alternative in the standard event viewer
    Windows. TIP - Options - Advanced filter allows you to see a time rather
    of the entire file.

    http://www.NirSoft.NET/utils/my_event_viewer.html

    Here are a few ways to possibly fix the blue screen issue. If you could give the blue screen
    info that would help. Such as ITC and 4 others entered at the bottom left. And all others
    error information such as codes of STOP and info like IRQL_NOT_LESS_OR_EQUAL or PAGE_FAULT_IN_NONPAGED_AREA and similar messages.

    As examples:

    BCCode: 116
    BCP1: 87BC9510
    BCP2: 8C013D80
    BCP3: 00000000
    BCP4: 00000002

    or in this format:

    Stop: 0 x 00000000 (oxoooooooo oxoooooooo oxoooooooo oxooooooooo)
    Tcpip.sys - address blocking 0 x 0 00000000 000000000 DateStamp 0 x 000000000

    It is an excellent tool for displaying the blue screen error information

    BlueScreenView scans all your minidump files created during ' blue screen of the.
    death ' crashes and displays information about all accidents of a table.
    Free
    http://www.NirSoft.NET/utils/blue_screen_view.html

    BlueScreens many are caused by drivers of old or damaged, in particular the video drivers
    However, there are other causes.

    You can do mode if necessary safe or the Vista DVD command prompt or
    Options recovery if your system is installed by the manufacturer.

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    You can try a system restore to a point before the problem started when one exists.

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html

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

    Start - type this into the search-> find COMMAND to top box 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

    The log can give you the answer if there is a corrupted driver. (Does not work
    tell all possible driver issues).

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

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

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

    Often drivers up-to-date will help, usually video, sound, network card (NIC), WiFi, part 3
    keyboard and mouse, as well as of other major device drivers.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

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

    How to fix BlueScreen (STOP) errors that cause Windows Vista to shut down or restart
    quit unexpectedly
    http://support.Microsoft.com/kb/958233

    Troubleshooting, STOP error blue screen Vista
    http://www.chicagotech.NET/Vista/vistabluescreen.htm

    Understanding and decoding BSOD (blue screen of death) Messages
    http://www.Taranfx.com/blog/?p=692

    Windows - troubleshooting blue screen errors
    http://KB.wisc.edu/page.php?id=7033

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

    In some cases, it may be necessary.

    The Options or Vista recovery disk Startup Repair

    How to do a startup repair
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • Windows Update 8024402f - lots of work error code

    Windows Vista Edition Home Premium

    Service Pack2

    32 bit

    The Trend Micro Internet Security antivirus 2012; other programs installed I do not know

    Buy laptop with Vista on ii

    Windows that open the update page:

    Final check of updates: never

    Updates have been installed: never

    Installation updates page:

    KB953595 07/11/2009

    Adobe Reader X (10.1.1) 27/09/2011

    Microsoft Silverlight 4.0.60831.0 24/01/2012

    Review page your update history - all updates of definition for Defender could not leave on 19/03/2011 (definition 1.99.1460.0) until today 18/02/2012 (definition 1.119.2141.0).  No other updates for all programs are listed.

    I already have

    1. tried and waited several minutes before running update several times.  Shut the computer down and restarted all day long.
    2. Downloaded difficulty It Center and run the update patch.  There were a few difficulties but set does not completely the problem.  Note: during the installation of Fix It, I received the following message: "MATSWiz.exe---C:\Windows\system32\dssenh.dll bad Image is not designed to run on Windows or it contains an error. Try to install the program by using the original installation media o contact your system administrator or support software provider. »
    3. Follow-up KB836941 - manually disabled my disabled Trend Micro Security, accelerators software on IE. turned on the Defender.
    4. Updated defender and necessary - then received the error.  I had to manually download the update of the Defender due to errors.  Obtained working Defender.  Don't recall the KB, I followed this.
    5. Then downloaded Windows Update Agent - the program fix did not work.  Checked to host files and proxy servers - no.
    6. Difficulty he asked responded and he couldn't have sent me this forum. Learned to read WindowsUpdateLog.

    Here is the log report AFTER that I installed the update agent and update of Defender "."  Any help you can give would be great!

    2012-02-18 14:27:15:075 3760 12f0 package Setup installation of CBS

    'c:\ae250e4e010dfe2f1378178f062ce6\WUClient-SelfUpdate-Aux-TopLevel.cab '.
    2012-02-18 14:27:41:580 3760 12f0 Setup install the installation package

    'c:\ae250e4e010dfe2f1378178f062ce6\WUClient-SelfUpdate-Aux-TopLevel.cab' succeeded
    2012-02-18 14:27:42:562 1068 1440 Misc = logging initialized (build):

    7.4.7600.226, tz:-0600) =.
    2012-02-18 14:27:42:562 1068 1440 Misc = process: C:\Windows\system32\svchost.exe
    2012-02-18 14:27:42:562 1068 1440 Misc = Module: c:\windows\system32\wuaueng.dll
    2012-02-18 14:27:42:562 1068 1440 Service *.
    2012-02-18 14:27:42:562 1068 1440 Service * START * Service: Service startup
    2012-02-18 14:27:42:562 1068 1440 Service *.
    2012-02-18 14:27:42:578 1068 1440 Agent * WU version 7.4.7600.226 customer
    2012-02-18 14:27:42:578 1068 1440 Agent * Base Directory: C:\Windows\SoftwareDistribution
    2012-02-18 14:27:42:578 1068 1440 Agent * access type: no proxy
    2012-02-18 14:27:42:578 1068 1440 Agent * network state: connected
    2012-02-18 14:27:59:925 3760 1768 wusetup configuration is complete.  Exit code is 0. Reset is NOT

    necessary
    2012-02-18 14:28:36:632 1068 1440 report CWERReporter::Init succeeded
    2012-02-18 14:28:36:632 1068 1440 Agent * Agent: initialization of Windows Update

    Agent *.
    2012-02-18 14:28:36:632 1068 1440 Agent * Agent: initialization of the global settings

    cache *.
    2012-02-18 14:28:36:632 1068 1440 Agent * WSUS server:
    2012-02-18 14:28:36:632 1068 1440 Agent * state WSUS server:
    2012-02-18 14:28:36:632 1068 1440 Agent * target group: (Unassigned Computers)
    2012-02-18 14:28:36:632 1068 1440 Agent * Windows Update access disabled: No.
    2012-02-18 14:28:36:648 1068 1440 DnldMgr Download manager restoring 0 downloads
    2012-02-18 14:28:37:677 1068 1440 to THE # to THE: initialization of automatic updates

    ###########
    2012-02-18 14:28:37:677 1068 1440 to # approval type: on demand (user preference)
    2012-02-18 14:28:37:677 1068 1440 to THE # scheduled install date and time: daily at 10:00
    Minor updates of 2012-02-18 14:28:37:677 1068 1440 to THE # auto-install: Yes (by the user

    preferably)
    2012-02-18 14:28:37:677 at the request of 1068 1440 to THE setting at the time of installation to 2012-02-19

    16:00
    2012-02-18 14:28:37:677 1068 1440 AU initialization featured updates
    2012-02-18 14:28:37:677 1068 1440 to THE Found set 0 cached updates featured
    Setting of to THE to THE 2012-02-18 14:28:37:677 1068 1440 pending client directive to "impossible to"

    Detect"
    2012-02-18 14:28:37:677 1068 1440 only to THE delayed finish to initialize
    2012-02-18 14:28:38:956 1068 1440 report * report: initialization of static reports

    data *.
    2012-02-18 14:28:38:956 1068 1440 report * OS Version = 6.0.6002.2.0.66304
    2012-02-18 14:28:38:956 1068 1440 report * OS Product Type = 0 x 00000003
    2012-02-18 14:28:39:003 1068 1440 report * computer brand = Hewlett-Packard
    2012-02-18 14:28:39:003 1068 1440 report * computer model = Compaq Presario CQ50 Notebook

    PC
    2012-02-18 14:28:39:003 1068 1440 report * Bios revision = F.24
    2012-02-18 14:28:39:003 1068 1440 report * name of Bios = PhoenixBIOS 4.0 Release 6.1
    2012-02-18 14:28:39:003 1068 1440 report * the Bios Release Date = 2008-09 - 03 T 00: 00:00
    2012-02-18 14:28:39:003 1068 1440 report * locale 1033 = ID
    2012-02-18 14:28:44:042 1068 e94 report CWERReporter finish event management. (00000000)
    2012-02-18 14:28:52:794 1068 1440 launched THE new to THE customer for the directive "impossible to"

    Detect ", session id = 0x1
    2012-02-18 14:32:39:493 1068 10 b 0 detection of THE shutter to THE via API DetectNow
    2012-02-18 14:32:39:493 1068 10 b 0 to trigger detection online (interactive)
    2012-02-18 14:32:39:493 1068 1440 AU #.
    2012-02-18 14:32:39:493 1068 1440 AU # START # to THE: research updates
    2012-02-18 14:32:39:493 1068 1440 AU #.
    AU 14:32:39:508 1068 1440 2012-02-18<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">

    {7FB7F7C2-7DE9-467F-B9C7-E14B0E76F6B1}]
    2012-02-18 14:32:39:508 1068 e94 Agent *.
    2012-02-18 14:32:39:508 1068 e94 Agent * START * Agent: find the updates [CallerId =

    AutomaticUpdates]
    2012-02-18 14:32:39:508 1068 e94 Agent *.
    2012-02-18 14:32:39:508 1068 e94 Agent * Online = Yes; Ignore download priority = No
    2012-02-18 14:32:39:508 1068 e94 Agent * criteria = "IsInstalled = 0 and.

    DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and

    DeploymentAction = 'Installation' and RebootRequired = 1 or IsInstalled = 0 and DeploymentAction = "uninstall."

    and RebootRequired = 1 "
    2012-02-18 14:32:39:508 1068 e94 Agent * ServiceID = {7971F918-A847-4430 - 9279-}

    Service of third 4A52D1EFE18D}
    2012-02-18 14:32:39:508 1068 e94 Agent * Search Scope = {Machine}
    2012-02-18 14:32:39:508 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-02-18 14:32:39:524 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:39:664 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-02-18 14:32:39:664 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:39:680 1068 e94 Agent searching for auth cab for 7971f918 service updates-

    A847-4430-9279-4a52d1efe18d to http://download.windowsupdate.com/v9/microsoftupdate/redir/muauth.cab
    2012-02-18 14:32:39:680 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2012-02-18 14:32:39:696 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:39:742 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2012-02-18 14:32:39:758 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:39:758 1068 e94 Setup looking for agent SelfUpdate
    2012-02-18 14:32:39:758 1068 e94 configuration version Client: Core: 7.4.7600.226 to the:

    7.4.7600.226
    2012-02-18 14:32:39:758 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-02-18 14:32:39:774 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:39:820 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-02-18 14:32:39:820 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:39:836 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2012-02-18 14:32:39:852 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:40:054 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2012-02-18 14:32:40:070 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:40:070 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2012-02-18 14:32:40:086 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:40:132 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2012-02-18 14:32:40:148 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:40:179 1068 e94 Setup determine whether a new installation program manager should be

    Downloaded
    2012-02-18 14:32:40:179 1068 Setup Manager SelfUpdate e94 is found.  It will be

    Downloaded
    2012-02-18 14:32:40:179 1068 e94 Setup assessment applicability of installing package 'WUClient '.

    -SelfUpdate-ActiveX ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 "
    2012-02-18 14:32:40:304 1068 e94 configuration package 'WUClient - SelfUpdate-

    ActiveX ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 "is already installed.
    2012-02-18 14:32:40:304 1068 e94 Setup assessment applicability of installing package 'WUClient '.

    -SelfUpdate - to the TopLevel ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 "
    2012-02-18 14:32:43:096 1068 e94 configuration package ' WUClient-SelfUpdate - to the-

    TopLevel ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 "is already installed.
    2012-02-18 14:32:43:112 1068 e94 Setup assessment applicability of installing package 'WUClient '.

    -SelfUpdate-Core-TopLevel ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 "
    2012-02-18 14:32:46:154 1068 e94 configuration package 'WUClient-SelfUpdate - Core-

    TopLevel ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 "is already installed.
    2012-02-18 14:32:46:170 1068 e94 SelfUpdate installation verification completed.  SelfUpdate is NOT

    Mandatory.
    2012-02-18 14:32:48:510 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\WuRedir\7971F918-A847-4430-9279-4A52D1EFE18D\muv4muredir.cab:
    2012-02-18 14:32:48:525 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:48:572 1068 e94 Misc signature validation for

    C:\Windows\SoftwareDistribution\WuRedir\7971F918-A847-4430-9279-4A52D1EFE18D\muv4muredir.cab:
    2012-02-18 14:32:48:588 1068 e94 Misc Microsoft signed: Yes
    2012-02-18 14:32:48:588 1068 e94 PT +++ PT: synchronization of updates of the server

    +++++++++++
    2012-02-18 14:32:48:588 1068 e94 PT + ServiceId = {7971F918-A847-4430 - 9279-}

    4A52D1EFE18D}, server URL = https://www.update.microsoft.com/v6/ClientWebService/client.asmx
    2012-02-18 14:32:52:113 1068 e94 PT WARNING: SyncUpdates failure, error = 0x8024400D,.

    the SOAP client error = 7, soap = 300, HTTP = 200 status code error code
    2012-02-18 14:32:52:113 1068 e94 PT WARNING: SOAP fault: 0x00012c
    2012-02-18 14:32:52:113 1068 e94 PT WARNING: faultstring:Fault has occurred
    2012-02-18 14:32:52:113 1068 e94 PT WARNING: ErrorCode:ConfigChanged (2)
    2012-02-18 14:32:52:113 1068 e94 PT WARNING: Message: (null)
    2012-02-18 14:32:52:113 1068 e94 PT WARNING:

    "" Method: "http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/SyncUpdates"
    2012-02-18 14:32:52:113 1068 e94 PT WARNING: ID:6c788ff5-7148-4981-abf6-14cb1309e2cf
    2012-02-18 14:32:55:701 1068 e94 PT WARNING: ECP: could not validate the cab file digest

    Downloaded from

    http://download.windowsupdate.com/msdownload/update/software/dflt/2009/05/2731676_2758f42e46605c9915ace2dd77

    0a693fb29dd555.cab

    with error 0x8009001d
    2012-02-18 14:32:55:701 1068 e94 PT WARNING: ECP: this trip contained some

    optimized updates failed. New number of update = 0, old Count = 30
    2012-02-18 14:32:55:701 1068 e94 PT FATALE: ProcessCoreMetadata did not return any update

    to be validated
    2012-02-18 14:32:55:701 1068 e94 PT WARNING: synchronization of updates: 0x8024402f
    2012-02-18 14:32:55:701 1068 e94 PT WARNING: SyncServerUpdatesInternal failed:

    0X8024402F
    2012-02-18 14:32:55:701 1068 e94 Agent * WARNING: could not synchronize, error =.

    0X8024402F
    2012-02-18 14:32:55:795 1068 e94 Agent * WARNING: exit code = 0x8024402F
    2012-02-18 14:32:55:795 1068 e94 Agent *.
    2012-02-18 14:32:55:795 1068 e94 Agent * END * Agent: finding updates [CallerId = of

    AutomaticUpdates]
    2012-02-18 14:32:55:795 1068 e94 Agent *.
    2012-02-18 14:32:55:795 1068 e94 Agent WARNING: customer WU didn't search for the update with

    error 0x8024402f
    2012-02-18 14:32:55:795 1068 1140 AU > # RETURN # to THE: research updates [CallId =

    {7FB7F7C2-7DE9-467F-B9C7-E14B0E76F6B1}]
    2012-02-18 14:32:55:795 1068 1140 # warning: reminder of search failed, result =

    0X8024402F
    2012-02-18 14:32:55:795 1068 1140 # warning: could not find updates with error code

    8024402F
    2012-02-18 14:32:55:795 1068 1140 AU #.
    2012-02-18 14:32:55:795 1068 1140 # end # in THE: research updates [CallId =

    {7FB7F7C2-7DE9-467F-B9C7-E14B0E76F6B1}]
    2012-02-18 14:32:55:795 1068 1140 AU #.
    2012-02-18 14:32:55:795 1068 1140 to THE need to show undetectable notification
    2012-02-18 14:32:55:795 1068 1140 to THE timeout parameter next detection to 2012-02-19

    01:32:55
    2012-02-18 14:32:55:795 at the request of 1068 1140 to THE setting at the time of installation to 2012-02-19

    16:00
    2012-02-18 14:33:00:802 1068 e94 report REPORT EVENT: {2834EEA3-6CB6-49DD-90A1-5617DF87DFEF}

    2012-02-18 14:32:55:795 - 0600 1 148 101 {00000000-0000-0000-0000-000000000000} 0

    8024402f AutomaticUpdates failure software sync Windows Update Client failed

    to detect with error 0x8024402f.
    2012-02-18 14:33:00:818 1068 e94 report CWERReporter::HandleEvents - WER report upload

    completed with status 0 x 8
    2012-02-18 14:33:00:818 1068 e94 WER sent report: 7.4.7600.226 0x8024402f 00000000.

    0000-0000-0000-000000000000 scan unmanaged 101
    2012-02-18 14:33:00:818 1068 e94 report CWERReporter finish event management. (00000000)

    Research on lead dssenh.dll me:
    http://support.Microsoft.com/kb/822798

Maybe you are looking for

  • iPad 2 Mini will not connect WiFi

    I was able to surf the web on my iPad Mini 2 retina always. When I woke up this morning, it didn't connect to the WiFi. He said that the entered password is incorrect. I know it's okay, because I checked several times and my MacBook works on the same

  • Satellite M70-173 - cannot burn CDs or DVDs

    Hello I have an old but expensive laptop (Satellite M70-173). The CD/DVD drive is a carpet * a UJ - 841 s and can currently only read DVDs and CDsI have Nero installed 8.3.7.1, but it does not allow me to burn any DVD or CDI have all the updates that

  • DSADD, defining securities on preconfigured accounts

    I need to prepare 100 accounts of computers in a specified ORGANIZATIONAL unit, that I have to do via the batch file, which can be; dsadd computer "cn = client01, OU = construction, OR =, dc = mydomain, dc = co, dc = uk" dsadd computer "Cn = client02

  • HP 15: USB recovery

    Recovery (disk) on USB works more than once? What I have to do an extra on another usb just in case copy? Can I make another copy after I use it to recover my laptop?

  • Windows cannot find any network (unable to connect to the internet!)

    I use Vista on my laptop... All of sudden my connection to laptops is down... and when I searched for my wireless connections... I get a message indicating that Windows cannot find all the networks. I can find networks and connect to our wireless thr