Streams declarative transformation

Streams in Oracle rac version 11.2.0.3
I am trying to create a declarative transformation in streams for a table to add a date column on the apply side.
the date column will be part of a partitioning key.  It does not exist in the source table.
I am using the dbms_streams_adm.add_column
dbms_streams_adm.add_column(
rule_name => 'STRMADMIN.FINCENCUSTOMER1858',
table_name => 'ANDERA_DB.FINCENCUSTOMER',
column_name => 'TIMESTAMP',
column_function => 'SYSDATE',
operation => 'ADD');
In this case, the table rule name is FINCENCUSTOMER1858
When lcr's come across, it generates an ora-26688 and sends the lcr to the dba_apply_error.  When I re-execute the error via
dbms_apply_adm.execute_error it processes successfully but I need the records to automatically have the current sysdate added without having to
reprocess the errors.
I need the new column to simply be populated with the current sysdate() value.
Any idea of what I'm missing?

Additional information.  When the lcr's land in the error queue, the new column and its value is not included.  The reason the re-executed lcr's succeed is most likely due to the default of sysdate for the new table coulumn..
I have also tried moving this from the apply side to the capture side.  I have validated that the dml rules referenced in the add_column process are positive rulesets.  Values in the dba_streams_transformations table appear to be correct as well.  

Similar Messages

  • Oracle stream and  standby database

    i want to implement stream(table level) in the following scenario
    what i must to set for standby as when i switch to standby database the stream work correctly like when primary was working.
    DB1--------------------stream---------------------DB2
    DB1standby .......................................DB2standby
    Narges.

    Your schema above do not tell us if this is a streams master/master. Also it is important to know if you a doing full schema replication or only some tables.
    For the db_name think global name : how do you setup a propagation when the source DB and target DB have the same TNS entry - whose name is driven by the rule dblink name = global_name = tns entry.
    Here it is a slightly different case : DG will succeed to SRC and appear as the same DB for the remote though they are on different hostname. Only way is the fail over in tns entry when you set multiple host for the same services.
    The rest should be ok except for the lost data of SRC which requires a re-sync.
    On the streams side problems remains and I am still skeptic on the feasibility : on paper no problems but problems come fast for the data's lost during the switch to DG (and this is to be expected with async DG, last SCN's will be missing on DG but not necessary on remote target site).
    Then both sites will start suffering on the loss of this data most probably with ORA 1403 data not found or Streams transactions pending and there is no way to predict the extend of this in advance. The re-sync of this status is then crucial and I am working on this. I will come back to the community with a generic procedure for master-master re-sync. One of the main problem is to identify table remote correspondents: These are easy to determine for declarative transformations but for transformation done within apply handler or transformation function associated to a context I have not find better than to comes back to the DBA and ask pitifully which are the remote target tables. The correspondence is a precious data that do not appear in any data dictionary view, but is only into the text of a pl/sql block.
    For my comments on the others thread, when the former SRC comes back, I have not considered the possibility in 11g to re-sync the former Master with a DG being the new master and sound like I should have.
    But this is all new also for me and I need to test it. if it works then you don't have the problem to setup a downstream capture between 2 DB having the same db_name.

  • How to stream one table twice (with different names) in another schema ?

    hello guys,
    i have to replicate one table (TAB_1) from one schema (SCH_1) on source database (DB_1) twice to schema (SCH_2) on target database (DB_2) with two different names (TAB_1 and TAB_1_SHORT). TAB_1_SHORT on target db should be a subset (eg. WHERE STATUS = 1) of TAB_1 !
    how to do ? can anyone help me ?
    i tried to realize that this way:
    1) creating 1 capture process with 1 table rule on source db (without any subset rules to capture all changes) for table TAB_1
    2) creating a propagation process without any rules
    3) creating 1 apply process with a table rule for table TAB_1 without any subset_rule but with schema transformation from SCH_1 to SCH_2 (DBMS_STREAMS_ADM.RENAME_SCHEMA) => this works correct !
    4) creating a subset_rule (WHERE STATUS = 1), a schema transformation from SCH_1 to SCH_2 (DBMS_STREAMS_ADM.RENAME_SCHEMA) and a tablename transformation from TAB_1 to TAB_1_SHORT (DBMS_STREAMS_ADM.RENAME_SCHEMA) for table TAB_1_SHORT => doesn`t work, no errors posted in dba_apply_error !
    in another try, i tried to transform the table- and the schemaname in the capture process, with the effect, that my first table TAB_1 wouldn`t be streamed again.
    i`m not sure, what is wrong. i think it must be possible to stream a table to two different targettables in the same schema on another db, isn`t it ?
    hopefully greetings
    Flo

    Hello
    Adding a normal table rule and also a subset rule would not work since the rule would be evaluated only once in the positive rule set. If the normal rule is evaluated first then the subset rule and rest of the rules would not be evaluated at all hence this would not work.
    This can be done using either of the following methods:
    Method 1:
         1. Use the declarative transformation on the capture/apply and rename the schema from SCH_1 to SCH_2.
         2. Now, on the apply site, set a DML Handler for SCH_2.TAB_1
         3. In DML Handler perform the following:
              a. get the column value for STATUS
              b. check if the value for STATUS=1, if yes then modify the object name to TAB_1_SHORT and execute the LCR.
              c. else do not modify the object name (leave it as it is, TAB_1) and execute the LCR.
    Method 2:
         1. Add a DML Handler for SCH_1.TAB_1
         2. In the DML Handler perform:
              a. use set_object_owner method of LCR$_ROW_RECORD to rename the owner to SCH_2
              b. get the column value for STATUS
              c. check if the value for STATUS=1, if yes then modify the object name to TAB_1_SHORT and execute the LCR.
              d. else do not modify the object name (leave it as it is, TAB_1) and execute the LCR.
    Please let me know if you need sample code.          
    Thanks,
    Rijesh

  • How to validate and transform large (180M) xml files

    Hi:
    I've been looking at various ways to do this with oracle and am getting a bit lost in the sea of documentation and different ways to go about this. I was hoping that something like the XMLParser class and XMLTransform would be smart enough to handle large files by using SAX when it has to but I'm getting "too many nodes" when trying to transform a really large file. I've gotten oraxsl to handle it if I pass in the proper memory parameters on the command line but a) this will still have limits and b) I was trying to do this in a stored procedure which (I think) means I'm looking at XMLParser?
    I've also seen documentation on something called "Scalable DOM" but I think that's only in 11g? So I'm thinking I have to write a (Java?) stored procedure to loop through the top elements of this XML file (select extract(...)) and transform each node?
    I have the XML, XSD, and XSLT all in clob columns. What's the easiest/quickest path within Oracle to validate the XML against the xsd and translate source XML with XSL?
    I'm using Oracle 10gR2 on RH Linux.
    Thanks.

    So I'm thinking I have to write a (Java?) stored procedure to loop through the top elements of this XML file (select extract(...)) and transform each node? Here's something I've written a while back when I hit the same restrictions ("too many nodes") on 10.2.0.4.
    It takes XMLType as input parameters (but it's easy to adapt for CLOB), and streams the transformed XML directly into a file :
    create or replace and compile java source named ora_xslt_util as
    import oracle.xml.parser.v2.*;
    import oracle.xdb.XMLType;
    import java.io.*;
    import org.w3c.dom.*;
    public class oraXSL
    private static XMLDocument getXMLDocument(XMLType xml) throws Exception
        XMLDocument doc = null;
        DOMParser parser  = new DOMParser();
        parser.setValidationMode(oracle.xml.parser.v2.XMLParser.NONVALIDATING);
        parser.setPreserveWhitespace(true);
        parser.parse(new StringReader(xml.getStringVal()));
        doc = parser.getDocument();
        return doc;
    public static void transform(XMLType doc, XMLType xsl, String filename) throws Exception
        OutputStream os = new FileOutputStream(filename);
        XMLDocument xmldoc = getXMLDocument(doc);
        XMLDocument xsldoc = getXMLDocument(xsl);
        XSLProcessor xsp = new XSLProcessor();
        XSLStylesheet xss = xsp.newXSLStylesheet(xsldoc);
        xsp.processXSL(xss, xmldoc, os);
        os.close();
    }and the PL/SQL wrapper (originally part of a package) :
    PROCEDURE processXSL (
       p_xmldoc IN XMLType
    , p_xsldoc IN XMLType
    , p_filename IN VARCHAR2
    IS
    LANGUAGE JAVA NAME 'oraXSL.transform(oracle.xdb.XMLType,oracle.xdb.XMLType,java.lang.String)'
    ;

  • All video streaming has continuous pixelation/macroblocking issues

    On youtube, dailymotion, vimeo, etc.  (all internet video streaming sites)  the video becomes pixelated and I get macroblocking.  It appears for a few seconds, then it goes away, then a few seconds later it comes back.  It does this continuously off and on.  This happened before and I couldn't find a solution so I re-installed Windows 7 and then the problem went away.  But only 3 weeks into the new re-boot and the problem has resurfaced.  I have no idea what happened or how to fix it.  Please help!!  I can give you the specs for my PC and let you know whatever else is needed to solve this problem.  My PC skills are not that advanced, but I can follow directions very well.  This problem is starting to really piss me off.  When I download a youtube video, the problem is not there when I watch it on VLC media player.  The problem is only present when I am streaming it from the internet.  This problem just "appeared".  It was not there on a clean re-install.  I  don't know how it re-surfaced again.  I've searched through other forums an I cannot find an answer anywhere!  I need to know the source of the problem and I thought it might be Adobe Flash, but I am not sure.  When the videos become pixelated, it looks like this (I took a screen shot):

    My browser is Firefox version 18.0 (it is up-to-date) and I have DownloadHelper version 4.9.13 and Adblock Plus version 2.2.1 as add-ons.  My Adobe flash player version is 11.5.502.146.  My operating system is Windows 7 Professional (64-bit).  The HTML5 video worked perfectly fine.  No problems with that one.  The Non-HTML5 video showed the same problems I keep running into.  Here is a cropped screenshot of it:
    Thank you.  I really appreciate the help.  So what is the next step???  The HTML5 video had no problems and worked perfectly fine.  I figured it would just be easier to show my entire system information (motherboard, processor, video card etc.), so here is the output from the DirectX Diagnotic Tool regarding my system information:
    System Information
    Time of this report: 1/14/2013, 20:36:43
           Machine name: KYLE-PC
       Operating System: Windows 7 Professional 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.120830-0333)
               Language: English (Regional Setting: English)
    System Manufacturer: Gigabyte Technology Co., Ltd.
           System Model: GA-890GPA-UD3H
                   BIOS: Award Modular BIOS v6.00PG
              Processor: AMD Phenom(tm) II X4 970 Processor (4 CPUs), ~3.5GHz
                 Memory: 4096MB RAM
    Available OS Memory: 3582MB RAM
              Page File: 1977MB used, 5183MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
            Sound Tab 3: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: ATI Radeon HD 4290
           Manufacturer: ATI Technologies Inc.
              Chip type: ATI display adapter (0x9714)
               DAC type: Internal DAC(400MHz)
             Device Key: Enum\PCI\VEN_1002&DEV_9714&SUBSYS_D0001458&REV_00
         Display Memory: 2161 MB
       Dedicated Memory: 627 MB
          Shared Memory: 1534 MB
           Current Mode: 1360 x 768 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: SAMSUNG
             Monitor Id: SAM0505
            Native Mode: 1360 x 768(p) (60.015Hz)
            Output Type: HDMI
            Driver Name: atiu9p64.dll,aticfx64.dll,atiu9pag,aticfx32,atiumd64.dll,atidxx64.dll,atiumdag,atidxx32,a tiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.14.0001.6105 (English)
         Driver Version: 8.723.0.0
            DDI Version: 10.1
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 4/6/2010 20:22:38, 28160 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71EE2-D454-11CF-3160-01F0A1C2C535}
              Vendor ID: 0x1002
              Device ID: 0x9714
              SubSys ID: 0xD0001458
            Revision ID: 0x0000
    Driver Strong Name: oem2.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_RS880:8.723.0.0:pci\ven_1002&dev_9714
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C
       Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Not Supported
                DXVA-HD: Not Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Realtek HDMI Output (ATI HDMI Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_1002&DEV_791A&SUBSYS_00791A00&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RtHDMIVX.sys
             Driver Version: 6.00.0001.6034 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/26/2010 22:05:00, 231328 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output(Optical) (Realtek High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_1458A102&REV_1003
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6083 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 4/6/2010 05:17:44, 2337440 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output (Realtek High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_1458A102&REV_1003
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6083 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 4/6/2010 05:17:44, 2337440 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Realtek Digital Input (Realtek High Definition Audio)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6083 (English)
          Driver Attributes: Final Retail
              Date and Size: 4/6/2010 05:17:44, 2337440 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Logitech USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC31B
            FF Driver: n/a
          Device Name: Logitech USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC31B
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x1002, 0x4397
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC31B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC062
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 447.1 GB
    Total Space: 476.9 GB
    File System: NTFS
          Model: ST3500418AS ATA Device
          Drive: E:
    Free Space: 238.7 GB
    Total Space: 476.9 GB
    File System: NTFS
          Model: Seagate FreeAgentDesktop USB Device
          Drive: D:
          Model: HL-DT-ST BD-RE  WH10LS30 ATA Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    System Devices
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9608&SUBSYS_96011022&REV_00\3&18D45AA6&0&48
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1200&SUBSYS_00000000&REV_00\3&18D45AA6&0&C0
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&98
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002&DEV_4383&SUBSYS_A1021458&REV_40\3&18D45AA6&0&A2
       Driver: n/a
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_197B&DEV_2363&SUBSYS_B0001458&REV_02\4&1A75311A&0&01A8
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9605&SUBSYS_96011022&REV_00\3&18D45AA6&0&28
       Driver: n/a
         Name: ATI Radeon HD 4290
    Device ID: PCI\VEN_1002&DEV_9714&SUBSYS_D0001458&REV_00\4&23F7DD16&0&2808
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&90
       Driver: n/a
         Name: GIGABYTE GBB36X Controller
    Device ID: PCI\VEN_197B&DEV_2363&SUBSYS_B0001458&REV_02\4&1A75311A&0&00A8
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9602&SUBSYS_96021022&REV_00\3&18D45AA6&0&08
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002&DEV_970F&SUBSYS_960F1458&REV_00\4&23F7DD16&0&2908
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_50041458&REV_00\3&18D45AA6&0&B2
       Driver: n/a
         Name: D-Link DWA-556 Xtreme N PCIe Desktop Adapter
    Device ID: PCI\VEN_168C&DEV_0024&SUBSYS_3A701186&REV_01\4&5B6B27D&0&0048
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_9601&SUBSYS_96011022&REV_00\3&18D45AA6&0&00
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_43A0&SUBSYS_00001002&REV_00\3&18D45AA6&0&A8
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_50041458&REV_00\3&18D45AA6&0&9A
       Driver: n/a
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_E0001458&REV_03\4&2BE2F00&0&0050
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1204&SUBSYS_00000000&REV_00\3&18D45AA6&0&C4
       Driver: n/a
         Name: PCI standard ISA bridge
    Device ID: PCI\VEN_1002&DEV_439D&SUBSYS_439D1002&REV_40\3&18D45AA6&0&A3
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_50041458&REV_00\3&18D45AA6&0&92
       Driver: n/a
         Name: Texas Instruments 1394 OHCI Compliant Host Controller
    Device ID: PCI\VEN_104C&DEV_8024&SUBSYS_10001458&REV_00\4&340CE6FE&0&70A4
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1203&SUBSYS_00000000&REV_00\3&18D45AA6&0&C3
       Driver: n/a
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_1002&DEV_439C&SUBSYS_50021458&REV_40\3&18D45AA6&0&A1
       Driver: n/a
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_1002&DEV_4390&SUBSYS_B0021458&REV_40\3&18D45AA6&0&88
       Driver: n/a
         Name: NEC Electronics USB 3.0 Host Controller
    Device ID: PCI\VEN_1033&DEV_0194&SUBSYS_50071458&REV_03\4&87DAECB&0&0028
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1202&SUBSYS_00000000&REV_00\3&18D45AA6&0&C2
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4399&SUBSYS_50041458&REV_00\3&18D45AA6&0&A5
       Driver: n/a
         Name: ATI I/O Communications Processor SMBus Controller
    Device ID: PCI\VEN_1002&DEV_4385&SUBSYS_00000000&REV_41\3&18D45AA6&0&A0
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9609&SUBSYS_96011022&REV_00\3&18D45AA6&0&50
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1201&SUBSYS_00000000&REV_00\3&18D45AA6&0&C1
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&B0
       Driver: n/a
         Name: ATI I/O Communications Processor PCI Bus Controller
    Device ID: PCI\VEN_1002&DEV_4384&SUBSYS_00000000&REV_40\3&18D45AA6&0&A4
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    ATI Ticker,0x00200000,0,1,Ticker.ax,
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    MMACE ProcAmp,0x00200000,0,2,MMACEFilters.dll,
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17713
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    MMACE SoftEmu,0x00200000,0,2,MMACEFilters.dll,
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17713
    MMACE DeInterlace,0x00200000,0,2,MMACEFilters.dll,
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17713
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17713
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Audio Capture Sources:
    Realtek Digital Input (Realtek ,0x00200000,0,0,qcap.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713
    WDM Streaming Capture Devices:
    Realtek HD Digital input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio CD input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    Realtek HDA HDMI Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Optical Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Realtek HDMI Output (ATI HDMI A,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Realtek Digital Output(Optical) (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Realtek HDMI Output (ATI HDMI Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Realtek Digital Output(Optical),0x00200000,1,0,quartz.dll,6.06.7601.17713
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

  • XsltCompiledTransform.Transform with XmlReader/XmlWriter

    Hi - there is one form of the XsltCompiledTransform class's Transform() function that takes an XmlReader and XmlWriter as parameters:
    https://msdn.microsoft.com/en-us/library/ms163433%28v=vs.110%29.aspx
    At first glance, this would appear to allow a streaming-based transform of the input XML, without having to load the whole XML document into memory first.
    But doing an XSLT transform is something very difficult to do in a streaming fashion (which XmlReader/XmlWriters would allow you to do).
    So, I assume whilst this form of the function takes these streaming XML reader/writer classes, in reality it still loads the XML pointed to by the XmlReader completely into memory first, performs the transform, then writes out the whole document to the XmlWriter?
    It doesn't say whether it loads the whole document into memory before transforming it in the MSDN docs...

    Hi Herro, thanks for your response.
    Sorry if my initial question wasn't clear - I don't know if the XsltCompiledTransform.Transform() function always loads the complete XML document into memory before transforming or not, that's what I'm asking.
    The Transform(XmlReader, XmlWriter) form of the function is passed an XmlReader to read the XML to transform. An XmlReader does not have to load the complete XML document into memory in order to read any of its contents - it can read it part by part, tag
    by tag in a forward-only fashion (in contrast to, say, XDocument or XmlDocument which loads the complete XML into a DOM tree).
    If you use this form of the Transform(XmlReader, XmlWriter) method, my question is does this method still load the whole XML document into memory first before transforming the document and writing out the transformed XML using the XmlWriter?
    To put it in a nutshell, is it possible to use XSLTs on large XML documents without loading the complete (large) XML document into memory first? Does this method load the whole document into memory first before performing the transform?

  • Itunes crash & faild to load

    Hello, my freind seems to be having problems making itunes work on his computer, the error is "Tunes has encountered a problem and needs to close"
    ever since he bought his ipod nano he has never gotten it to work. I tryed everything. I reinstalled it, uninstalled it, uninstalled quicktime,reinstalled it, updated to service pack 2, Download an adware remover program removed the adware of the comp and still no luck, i even uninstalled Norton Firewall and it still doesnt work. Last thing i didnt try was to reinstall his operating system. Or this article http://docs.info.apple.com/article.html?artnum=304318 I also have his computer specs if anyone wants to see.
    System Information
    Time of this report: 10/19/2006, 17:16:20
    Machine name: YOUR-O0KWKW9JWC
    Operating System: Windows XP Home Edition (5.1, Build 2600) Service Pack 2 (2600.xpspsp2gdr.050301-1519)
    Language: English (Regional Setting: English)
    System Manufacturer: HP Pavilion 061
    System Model: DK218A-ABA A220N
    BIOS: BIOS Date: 07/11/03 17:19:14 Ver: 08.00.08
    Processor: AMD Athlon(tm) XP 2600+, MMX, 3DNow, ~2.1GHz
    Memory: 448MB RAM
    Page File: 228MB used, 829MB available
    Windows Dir: C:\WINDOWS
    DirectX Version: DirectX 9.0c (4.09.0000.0904)
    DX Setup Parameters: Not found
    DxDiag Version: 5.03.2600.2180 32bit Unicode
    DxDiag Notes
    DirectX Files Tab: No problems found.
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Music Tab: No problems found.
    Input Tab: No problems found.
    Network Tab: No problems found.
    DirectX Debug Levels
    Direct3D: 0/4 (n/a)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (n/a)
    DirectMusic: 0/5 (n/a)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)
    Display Devices
    Card name: NVIDIA GeForce4 MX Integrated GPU
    Manufacturer: NVIDIA
    Chip type: GeForce4 MX Integrated GPU
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN10DE&DEV_01F0&SUBSYS_80C01043&REVA3
    Display Memory: 64.0 MB
    Current Mode: 1024 x 768 (32 bit) (60Hz)
    Monitor: hp mx703 Color Monitor
    Monitor Max Res: 1280,1024
    Driver Name: nv4_disp.dll
    Driver Version: 6.14.0001.4303 (English)
    DDI Version: 9 (or higher)
    Driver Attributes: Final Retail
    Driver Date/Size: 3/3/2003 11:44:00, 2951306 bytes
    WHQL Logo'd: Yes
    WHQL Date Stamp: n/a
    VDD: n/a
    Mini VDD: nv4_mini.sys
    Mini VDD Date: 3/3/2003 11:44:00, 1248794 bytes
    Device Identifier: {D7B71E3E-42B0-11CF-3C63-C1A002C2CB35}
    Vendor ID: 0x10DE
    Device ID: 0x01F0
    SubSys ID: 0x80C01043
    Revision ID: 0x00A3
    Revision ID: 0x00A3
    Video Accel: ModeMPEG2_A ModeMPEG2_B ModeMPEG2_C ModeMPEG2_D
    Deinterlace Caps: {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    Registry: OK
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled
    DDraw Test Result: Not run
    D3D7 Test Result: Not run
    D3D8 Test Result: Not run
    D3D9 Test Result: Not run
    Sound Devices
    Description: Realtek AC97 Audio
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: PCI\VEN10DE&DEV_006A&SUBSYS_80951043&REVA1
    Manufacturer ID: 65535
    Product ID: 65535
    Type: WDM
    Driver Name: ALCXWDM.SYS
    Driver Version: 5.10.0000.5730 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 10/1/2004 10:24:02, 2279424 bytes
    Other Files:
    Driver Provider: Realtek Semiconductor Corp.
    HW Accel Level: Full
    Cap Flags: 0xF5F
    Min/Max Sample Rate: 100, 192000
    Static/Strm HW Mix Bufs: 33, 32
    Static/Strm HW 3D Bufs: 33, 32
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: Yes, Yes
    I3DL2(tm) Listen/Src: Yes, Yes
    Sensaura(tm) ZoomFX(tm): No
    Registry: OK
    Sound Test Result: Not run
    Sound Capture Devices
    Description: Realtek AC97 Audio
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: ALCXWDM.SYS
    Driver Version: 5.10.0000.5730 (English)
    Driver Attributes: Final Retail
    Date and Size: 10/1/2004 10:24:02, 2279424 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
    Realtek AC97 Audio, Software (Kernel Mode), Output, DLS, Internal
    Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
    Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
    Registry: OK
    Test Result: Not run
    DirectInput Devices
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Device Name: Keyboard
    Attached: 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
    | Vendor/Product ID: 0x10DE, 0x0067
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 8/3/2004 23:08:44, 57600 bytes
    | Driver: usbd.sys, 8/29/2002 05:00:00, 4736 bytes
    Gameport Devices
    PS/2 Devices
    + HP PS2 Keyboard (2K - 3)
    | Matching Device ID: acpi\pnp0303
    | Upper Filters: PS2
    | Service: i8042prt
    | Driver: i8042prt.sys, 8/3/2004 23:14:38, 52736 bytes
    | Driver: kbdclass.sys, 8/3/2004 22:58:34, 24576 bytes
    | Driver: PS2.sys, 6/4/2001 13:00:00, 14112 bytes
    | Driver: ps2.bat, 10/16/2002 15:57:10, 81920 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: termdd.sys, 8/4/2004 01:01:08, 40840 bytes
    | Driver: kbdclass.sys, 8/3/2004 22:58:34, 24576 bytes
    |
    + Logitech PS/2 Port Mouse
    | Matching Device ID: *pnp0f12
    | Service: i8042prt
    | Driver: i8042prt.sys, 8/3/2004 23:14:38, 52736 bytes
    | Driver: mouclass.sys, 8/3/2004 22:58:34, 23040 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 8/4/2004 01:01:08, 40840 bytes
    | Driver: mouclass.sys, 8/3/2004 22:58:34, 23040 bytes
    DirectPlay Service Providers
    DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.2180)
    DirectPlay8 Serial Service Provider - 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)
    Internet TCP/IP Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.2180)
    IPX Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.2180)
    Modem Connection 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: Not run, Mic: Not run
    DirectPlay Test Result: Not run
    Registry: OK
    DirectPlay Adapters
    DirectPlay8 Modem Service Provider: Lucent Win Modem
    DirectPlay8 Serial Service Provider: COM1
    DirectPlay8 Serial Service Provider: COM3
    DirectPlay8 TCP/IP Service Provider: Local Area Connection - IPv4 -
    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 & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 63.5 GB
    Total Space: 114.5 GB
    File System: NTFS
    Model: ST3120025A
    Drive: D:
    Model: JLMS XJ-HD166S
    Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.2180 (English), 8/3/2004 22:59:54, 49536 bytes
    Drive: E:
    Model: CyberDrv CW088D CD-R/RW
    Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.2180 (English), 8/3/2004 22:59:54, 49536 bytes
    System Devices
    Name: Lucent Win Modem
    Device ID: PCI\VEN11C1&DEV_044C&SUBSYS_044C11C1&REV02\4&2C03473B&0&4040
    Driver: C:\WINDOWS\system32\DRIVERS\ltmdmnt.sys, 8.27.0000.0000 (English), 3/7/2003 22:13:22, 624369 bytes
    Name: NVIDIA GeForce4 MX Integrated GPU
    Device ID: PCI\VEN10DE&DEV_01F0&SUBSYS_80C01043&REVA3\4&2A33C5ED&1&00F0
    Driver: C:\WINDOWS\system32\DRIVERS\nv4_mini.sys, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 1248794 bytes
    Driver: C:\WINDOWS\system32\nvinstnt.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 126976 bytes
    Driver: C:\WINDOWS\system32\nvsvc32.exe, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 65536 bytes
    Driver: C:\WINDOWS\system32\nv4_disp.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 2951306 bytes
    Driver: C:\WINDOWS\system32\nvoglnt.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 3653632 bytes
    Driver: C:\WINDOWS\system32\nvcpl.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 4595712 bytes
    Driver: C:\WINDOWS\system32\nvmctray.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 49152 bytes
    Driver: C:\WINDOWS\system32\nview.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 831557 bytes
    Driver: C:\WINDOWS\system32\dmcpl.exe, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 1323008 bytes
    Driver: C:\WINDOWS\system32\nvshell.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 462919 bytes
    Driver: C:\WINDOWS\system32\nvtuicpl.cpl, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 139264 bytes
    Driver: C:\WINDOWS\system32\nwiz.exe, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 323584 bytes
    Driver: C:\WINDOWS\system32\nviewimg.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 512000 bytes
    Driver: C:\WINDOWS\help\nvcpl.hlp, 3/3/2003 11:44:00, 44431 bytes
    Driver: C:\WINDOWS\help\nvwcplen.hlp, 3/3/2003 11:44:00, 22977 bytes
    Driver: C:\WINDOWS\nview\generic.tvp, 3/3/2003 11:44:00, 30902 bytes
    Driver: C:\WINDOWS\system32\nvrsda.dll, 6.14.0001.4303 (Danish), 3/3/2003 11:44:00, 253952 bytes
    Driver: C:\WINDOWS\system32\nvwrsda.dll, 6.14.0001.4303 (Danish), 3/3/2003 11:44:00, 159744 bytes
    Driver: C:\WINDOWS\system32\nvrsde.dll, 6.14.0001.4303 (German), 3/3/2003 11:44:00, 262144 bytes
    Driver: C:\WINDOWS\system32\nvwrsde.dll, 6.14.0001.4303 (German), 3/3/2003 11:44:00, 176128 bytes
    Driver: C:\WINDOWS\system32\nvrseng.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 253952 bytes
    Driver: C:\WINDOWS\system32\nvwrseng.dll, 6.14.0001.4303 (English), 3/3/2003 11:44:00, 147456 bytes
    Driver: C:\WINDOWS\system32\nvrses.dll, 6.14.0001.4303 (Spanish), 3/3/2003 11:44:00, 249856 bytes
    Driver: C:\WINDOWS\system32\nvwrses.dll, 6.14.0001.4303 (Spanish), 3/3/2003 11:44:00, 176128 bytes
    Driver: C:\WINDOWS\system32\nvrsfi.dll, 6.14.0001.4303 (Finnish), 3/3/2003 11:44:00, 245760 bytes
    Driver: C:\WINDOWS\system32\nvwrsfi.dll, 6.14.0001.4303 (Finnish), 3/3/2003 11:44:00, 163840 bytes
    Driver: C:\WINDOWS\system32\nvrsfr.dll, 6.14.0001.4303 (French), 3/3/2003 11:44:00, 262144 bytes
    Driver: C:\WINDOWS\system32\nvwrsfr.dll, 6.14.0001.4303 (French), 3/3/2003 11:44:00, 172032 bytes
    Driver: C:\WINDOWS\system32\nvrsit.dll, 6.14.0001.4303 (Italian), 3/3/2003 11:44:00, 262144 bytes
    Driver: C:\WINDOWS\system32\nvwrsit.dll, 6.14.0001.4303 (Italian), 3/3/2003 11:44:00, 172032 bytes
    Driver: C:\WINDOWS\system32\nvrsja.dll, 6.14.0001.4303 (Japanese), 3/3/2003 11:44:00, 3383296 bytes
    Driver: C:\WINDOWS\system32\nvwrsja.dll, 6.14.0001.4303 (Japanese), 3/3/2003 11:44:00, 106496 bytes
    Driver: C:\WINDOWS\system32\nvrsko.dll, 6.14.0001.4303 (Korean), 3/3/2003 11:44:00, 3379200 bytes
    Driver: C:\WINDOWS\system32\nvwrsko.dll, 6.14.0001.4303 (Korean), 3/3/2003 11:44:00, 102400 bytes
    Driver: C:\WINDOWS\system32\nvrsnl.dll, 6.14.0001.4303 (Dutch), 3/3/2003 11:44:00, 258048 bytes
    Driver: C:\WINDOWS\system32\nvwrsnl.dll, 6.14.0001.4303 (Dutch), 3/3/2003 11:44:00, 167936 bytes
    Driver: C:\WINDOWS\system32\nvrsno.dll, 6.14.0001.4303 (Norwegian (Bokmål)), 3/3/2003 11:44:00, 249856 bytes
    Driver: C:\WINDOWS\system32\nvwrsno.dll, 6.14.0001.4303 (Norwegian (Bokmål)), 3/3/2003 11:44:00, 159744 bytes
    Driver: C:\WINDOWS\system32\nvrspt.dll, 6.14.0001.4303 (Portuguese), 3/3/2003 11:44:00, 241664 bytes
    Driver: C:\WINDOWS\system32\nvwrspt.dll, 6.14.0001.4303 (Portuguese), 3/3/2003 11:44:00, 176128 bytes
    Driver: C:\WINDOWS\system32\nvrsptb.dll, 6.14.0001.4303 (Portuguese), 3/3/2003 11:44:00, 258048 bytes
    Driver: C:\WINDOWS\system32\nvwrsptb.dll, 6.14.0001.4303 (Portuguese), 3/3/2003 11:44:00, 172032 bytes
    Driver: C:\WINDOWS\system32\nvrssv.dll, 6.14.0001.4303 (Swedish), 3/3/2003 11:44:00, 253952 bytes
    Driver: C:\WINDOWS\system32\nvwrssv.dll, 6.14.0001.4303 (Swedish), 3/3/2003 11:44:00, 159744 bytes
    Driver: C:\WINDOWS\system32\nvrszhc.dll, 6.14.0001.4303 (Chinese), 3/3/2003 11:44:00, 212992 bytes
    Driver: C:\WINDOWS\system32\nvwrszhc.dll, 6.14.0001.4303 (Chinese), 3/3/2003 11:44:00, 86016 bytes
    Driver: C:\WINDOWS\system32\nvrszht.dll, 6.14.0001.4303 (Chinese), 3/3/2003 11:44:00, 212992 bytes
    Driver: C:\WINDOWS\system32\nvwrszht.dll, 6.14.0001.4303 (Chinese), 3/3/2003 11:44:00, 86016 bytes
    Driver: C:\WINDOWS\help\nvcpda.hlp, 3/3/2003 11:44:00, 40777 bytes
    Driver: C:\WINDOWS\help\nvwcpda.hlp, 3/3/2003 11:44:00, 23275 bytes
    Driver: C:\WINDOWS\help\nvcpde.hlp, 3/3/2003 11:44:00, 42435 bytes
    Driver: C:\WINDOWS\help\nvwcpde.hlp, 3/3/2003 11:44:00, 24155 bytes
    Driver: C:\WINDOWS\help\nvcpeng.hlp, 3/3/2003 11:44:00, 43138 bytes
    Driver: C:\WINDOWS\help\nvwcpeng.hlp, 3/3/2003 11:44:00, 20453 bytes
    Driver: C:\WINDOWS\help\nvcpes.hlp, 3/3/2003 11:44:00, 40563 bytes
    Driver: C:\WINDOWS\help\nvwcpes.hlp, 3/3/2003 11:44:00, 21880 bytes
    Driver: C:\WINDOWS\help\nvcpfi.hlp, 3/3/2003 11:44:00, 42376 bytes
    Driver: C:\WINDOWS\help\nvwcpfi.hlp, 3/3/2003 11:44:00, 23322 bytes
    Driver: C:\WINDOWS\help\nvcpfr.hlp, 3/3/2003 11:44:00, 41567 bytes
    Driver: C:\WINDOWS\help\nvwcpfr.hlp, 3/3/2003 11:44:00, 23262 bytes
    Driver: C:\WINDOWS\help\nvcpit.hlp, 3/3/2003 11:44:00, 40390 bytes
    Driver: C:\WINDOWS\help\nvwcpit.hlp, 3/3/2003 11:44:00, 23297 bytes
    Driver: C:\WINDOWS\help\nvcpja.hlp, 3/3/2003 11:44:00, 45625 bytes
    Driver: C:\WINDOWS\help\nvwcpja.hlp, 3/3/2003 11:44:00, 32944 bytes
    Driver: C:\WINDOWS\help\nvcpko.hlp, 3/3/2003 11:44:00, 118846 bytes
    Driver: C:\WINDOWS\help\nvwcpko.hlp, 3/3/2003 11:44:00, 33084 bytes
    Driver: C:\WINDOWS\help\nvcpnl.hlp, 3/3/2003 11:44:00, 40594 bytes
    Driver: C:\WINDOWS\help\nvwcpnl.hlp, 3/3/2003 11:44:00, 23097 bytes
    Driver: C:\WINDOWS\help\nvcpno.hlp, 3/3/2003 11:44:00, 40354 bytes
    Driver: C:\WINDOWS\help\nvwcpno.hlp, 3/3/2003 11:44:00, 22919 bytes
    Driver: C:\WINDOWS\help\nvcppt.hlp, 3/3/2003 11:44:00, 40293 bytes
    Driver: C:\WINDOWS\help\nvwcppt.hlp, 3/3/2003 11:44:00, 23662 bytes
    Driver: C:\WINDOWS\help\nvcpptb.hlp, 3/3/2003 11:44:00, 40991 bytes
    Driver: C:\WINDOWS\help\nvwcpptb.hlp, 3/3/2003 11:44:00, 23494 bytes
    Driver: C:\WINDOWS\help\nvcpsv.hlp, 3/3/2003 11:44:00, 42015 bytes
    Driver: C:\WINDOWS\help\nvwcpsv.hlp, 3/3/2003 11:44:00, 23253 bytes
    Driver: C:\WINDOWS\help\nvcpzhc.hlp, 3/3/2003 11:44:00, 51887 bytes
    Driver: C:\WINDOWS\help\nvwcpzhc.hlp, 3/3/2003 11:44:00, 26129 bytes
    Driver: C:\WINDOWS\help\nvcpzht.hlp, 3/3/2003 11:44:00, 55131 bytes
    Driver: C:\WINDOWS\help\nvwcpzht.hlp, 3/3/2003 11:44:00, 26920 bytes
    Name: NVIDIA nForce2 Memory Controller
    Device ID: PCI\VEN10DE&DEV_01EF&SUBSYS_80C01043&REVA2\3&267A616A&0&05
    Driver: n/a
    Name: NVIDIA nForce2 Memory Controller
    Device ID: PCI\VEN10DE&DEV_01EE&SUBSYS_80C01043&REVA2\3&267A616A&0&02
    Driver: n/a
    Name: NVIDIA nForce2 Memory Controller
    Device ID: PCI\VEN10DE&DEV_01ED&SUBSYS_80C01043&REVA2\3&267A616A&0&03
    Driver: n/a
    Name: NVIDIA nForce2 Memory Controller
    Device ID: PCI\VEN10DE&DEV_01EC&SUBSYS_80C01043&REVA2\3&267A616A&0&04
    Driver: n/a
    Name: NVIDIA nForce2 Memory Controller
    Device ID: PCI\VEN10DE&DEV_01EB&SUBSYS_80C01043&REVA2\3&267A616A&0&01
    Driver: n/a
    Name: NVIDIA nForce2 AGP Host to PCI Bridge
    Device ID: PCI\VEN10DE&DEV_01E8&SUBSYS_00000000&REVA2\3&267A616A&0&F0
    Driver: C:\WINDOWS\system32\DRIVERS\nv_agp.SYS, 4.12.0001.0278 (English), 9/6/2002 18:24:00, 13568 bytes
    Name: PCI standard host CPU bridge
    Device ID: PCI\VEN10DE&DEV_01E0&SUBSYS_00000000&REVA2\3&267A616A&0&00
    Driver: n/a
    Name: OHCI Compliant IEEE 1394 Host Controller
    Device ID: PCI\VEN10DE&DEV_006E&SUBSYS_80AF1043&REVA3\3&267A616A&0&68
    Driver: C:\WINDOWS\system32\DRIVERS\ohci1394.sys, 5.01.2600.2180 (English), 8/3/2004 23:10:10, 61056 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\1394bus.sys, 5.01.2600.2180 (English), 8/3/2004 23:10:08, 53248 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\nic1394.sys, 5.01.2600.2180 (English), 8/3/2004 22:58:30, 61824 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\arp1394.sys, 5.01.2600.2180 (English), 8/3/2004 22:58:30, 60800 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\enum1394.sys, 5.01.2600.0000 (English), 8/17/2001 13:46:40, 6400 bytes
    Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN10DE&DEV_006C&SUBSYS_00000000&REVA3\3&267A616A&0&40
    Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.2180 (English), 8/3/2004 23:07:48, 68224 bytes
    Name: Realtek AC'97 Audio
    Device ID: PCI\VEN10DE&DEV_006A&SUBSYS_80951043&REVA1\3&267A616A&0&30
    Driver: C:\WINDOWS\system32\ksuser.dll, 5.03.2600.2180 (English), 8/4/2004 00:56:44, 4096 bytes
    Driver: C:\WINDOWS\system32\ksproxy.ax, 5.03.2600.2180 (English), 8/4/2004 00:56:58, 130048 bytes
    Driver: C:\WINDOWS\system32\drivers\ks.sys, 5.03.2600.2180 (English), 8/3/2004 23:15:22, 140928 bytes
    Driver: C:\WINDOWS\system32\drivers\drmk.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:00, 60288 bytes
    Driver: C:\WINDOWS\system32\drivers\portcls.sys, 5.01.2600.2180 (English), 8/3/2004 23:15:50, 145792 bytes
    Driver: C:\WINDOWS\system32\drivers\stream.sys, 5.03.2600.2180 (English), 8/3/2004 23:08:04, 48640 bytes
    Driver: C:\WINDOWS\system32\wdmaud.drv, 5.01.2600.2180 (English), 8/4/2004 00:56:58, 23552 bytes
    Driver: C:\WINDOWS\system32\drivers\ALCXWDM.SYS, 5.10.0000.5730 (English), 10/1/2004 10:24:02, 2279424 bytes
    Driver: C:\WINDOWS\system32\ALSNDMGR.CPL, 2.02.0000.0034 (English), 9/20/2004 15:20:44, 16121856 bytes
    Driver: C:\WINDOWS\ALCXMNTR.EXE, 1.05.0000.0000 (English), 9/7/2004 13:47:52, 57344 bytes
    Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN10DE&DEV_0068&SUBSYS_80AD1043&REVA4\3&267A616A&0&12
    Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:38, 26624 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/4/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:44, 57600 bytes
    Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.2180 (English), 8/4/2004 00:56:44, 7168 bytes
    Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN10DE&DEV_0067&SUBSYS_80AD1043&REVA4\3&267A616A&0&11
    Driver: C:\WINDOWS\system32\drivers\usbohci.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:38, 17024 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/4/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:44, 57600 bytes
    Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN10DE&DEV_0067&SUBSYS_80AD1043&REVA4\3&267A616A&0&10
    Driver: C:\WINDOWS\system32\drivers\usbohci.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:38, 17024 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:44, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/4/2004 00:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:44, 57600 bytes
    Name: NVIDIA nForce MCP Networking Adapter
    Device ID: PCI\VEN10DE&DEV_0066&SUBSYS_80A71043&REVA1\3&267A616A&0&20
    Driver: C:\WINDOWS\system32\DRIVERS\NVENET.sys, 4.14.0001.0281 (English), 9/23/2002 17:37:00, 80896 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\jedih2rx.bin, 9/23/2002 17:37:00, 1024 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\ramsed.bin, 9/23/2002 17:37:00, 122 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\jedireg.pat, 9/23/2002 17:37:00, 42 bytes
    Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN10DE&DEV_0065&SUBSYS_80AD1043&REVA2\3&267A616A&0&48
    Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.2180 (English), 8/3/2004 22:59:42, 25088 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.2180 (English), 8/3/2004 22:59:44, 95360 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\pciide.sys, 5.01.2600.0000 (English), 8/29/2002 05:00:00, 3328 bytes
    Name: NVIDIA nForce PCI System Management
    Device ID: PCI\VEN10DE&DEV_0064&SUBSYS_80AD1043&REVA2\3&267A616A&0&09
    Driver: n/a
    Name: PCI standard ISA bridge
    Device ID: PCI\VEN10DE&DEV_0060&SUBSYS_00000000&REVA4\3&267A616A&0&08
    Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.0000 (English), 8/29/2002 05:00:00, 35840 bytes
    DirectX Components
    ddraw.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 266240 bytes
    ddrawex.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 27136 bytes
    dxapi.sys: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 10496 bytes
    d3d8.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:42 1179648 bytes
    d3d8thk.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:42 8192 bytes
    d3d9.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:42 1689088 bytes
    d3dim.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 436224 bytes
    d3dim700.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:42 825344 bytes
    d3dramp.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 590336 bytes
    d3drm.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 350208 bytes
    d3dxof.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 47616 bytes
    d3dpmesh.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 34816 bytes
    dplay.dll: 5.00.2134.0001 English Final Retail 8/29/2002 05:00:00 33040 bytes
    dplayx.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 229888 bytes
    dpmodemx.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 23552 bytes
    dpwsock.dll: 5.00.2134.0001 English Final Retail 8/29/2002 05:00:00 42768 bytes
    dpwsockx.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 57344 bytes
    dplaysvr.exe: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:50 30208 bytes
    dpnsvr.exe: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:50 18432 bytes
    dpnet.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 375296 bytes
    dpnlobby.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:04 3584 bytes
    dpnaddr.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:04 3584 bytes
    dpvoice.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 212480 bytes
    dpvsetup.exe: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:50 83456 bytes
    dpvvox.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 116736 bytes
    dpvacm.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 21504 bytes
    dpnhpast.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 35328 bytes
    dpnhupnp.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 60928 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 8/29/2002 05:00:00 53520 bytes
    dinput.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 159232 bytes
    dinput8.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 181760 bytes
    dimap.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 44032 bytes
    diactfrm.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 394240 bytes
    joy.cpl: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 68608 bytes
    gcdef.dll: 5.01.2600.0000 English Final Retail 8/29/2002 05:00:00 76800 bytes
    pid.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:46 35328 bytes
    dsound.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 367616 bytes
    dsound3d.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 1294336 bytes
    dswave.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 19456 bytes
    dsdmo.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 181760 bytes
    dsdmoprp.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 71680 bytes
    dmusic.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 104448 bytes
    dmband.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 28672 bytes
    dmcompos.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 61440 bytes
    dmime.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 181248 bytes
    dmloader.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 35840 bytes
    dmstyle.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 105984 bytes
    dmsynth.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 103424 bytes
    dmscript.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 82432 bytes
    system.dll: 1.00.3705.0000 English Final Retail 4/10/2003 00:48:41 1163264 bytes
    dx7vb.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 619008 bytes
    dx8vb.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 1227264 bytes
    dxdiagn.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 2113536 bytes
    mfc40.dll: 4.01.0000.6140 English Final Retail 8/29/2002 05:00:00 924432 bytes
    mfc42.dll: 6.02.4131.0000 English Final Retail 8/4/2004 00:56:44 1028096 bytes
    wsock32.dll: 5.01.2600.2180 English Final Retail 8/4/2004 00:56:48 22528 bytes
    amstream.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:42 70656 bytes
    devenum.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:44 59904 bytes
    dxmasf.dll: 6.04.0009.1125 English Final Retail 8/4/2004 00:56:44 498205 bytes
    mciqtz32.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:44 35328 bytes
    mpg2splt.ax: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:58 148992 bytes
    msdmo.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:44 14336 bytes
    encapi.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 20480 bytes
    qasf.dll: 9.00.0000.3250 English Final Retail 8/4/2004 00:56:46 237568 bytes
    qcap.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 192512 bytes
    qdv.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 279040 bytes
    qdvd.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 385024 bytes
    qedit.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 562176 bytes
    qedwipes.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:26 733696 bytes
    quartz.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 1287680 bytes
    strmdll.dll: 4.01.0000.3928 English Final Retail 8/4/2004 00:56:46 246302 bytes
    iac25_32.ax: 2.00.0005.0053 English Final Retail 8/4/2004 00:56:58 199680 bytes
    ir41_32.ax: 4.51.0016.0003 English Final Retail 8/4/2004 00:56:58 848384 bytes
    ir41_qc.dll: 4.30.0062.0002 English Final Retail 8/4/2004 00:56:44 120320 bytes
    ir41_qcx.dll: 4.30.0064.0001 English Final Retail 8/4/2004 00:56:44 338432 bytes
    ir50_32.dll: 5.2562.0015.0055 English Final Retail 8/4/2004 00:56:44 755200 bytes
    ir50_qc.dll: 5.00.0063.0048 English Final Retail 8/4/2004 00:56:44 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English Final Retail 8/4/2004 00:56:44 183808 bytes
    ivfsrc.ax: 5.10.0002.0051 English Final Retail 8/4/2004 00:56:58 154624 bytes
    mswebdvd.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 204288 bytes
    ks.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:15:22 140928 bytes
    ksproxy.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 130048 bytes
    ksuser.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:44 4096 bytes
    stream.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:08:04 48640 bytes
    mspclock.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:40 5376 bytes
    mspqm.sys: 5.01.2600.2180 English Final Retail 8/3/2004 22:58:42 4992 bytes
    mskssrv.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:42 7552 bytes
    swenum.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:42 4352 bytes
    mstee.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:40 5504 bytes
    bdaplgin.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 18432 bytes
    bdasup.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:14 11776 bytes
    msdvbnp.ax: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:58 56832 bytes
    psisdecd.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:46 363520 bytes
    psisrndr.ax: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:58 33280 bytes
    ipsink.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 16384 bytes
    mpeg2data.ax: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:58 118272 bytes
    ndisip.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:14 10880 bytes
    mpe.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:14 15360 bytes
    streamip.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:14 15360 bytes
    msvidctl.dll: 6.05.2600.2180 English Final Retail 8/4/2004 00:56:44 1428480 bytes
    slip.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:18 11136 bytes
    nabtsfec.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:30 85376 bytes
    ccdecode.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:18 17024 bytes
    vbisurf.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 30720 bytes
    msyuv.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:46 17408 bytes
    kstvtune.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 61952 bytes
    ksxbar.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 43008 bytes
    kswdmcap.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 90624 bytes
    vfwwdm32.dll: 5.01.2600.2180 English Final Retail 8/4/2004 00:56:48 53760 bytes
    wstcodec.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:22 19328 bytes
    wstdecod.dll: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:48 50688 bytes
    msdv.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:00 51328 bytes
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,,
    WMSpeech Decoder DMO,0x00600800,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00800001,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    Mpeg43 Decoder DMO,0x00800001,1,1,,
    Mpeg4 Decoder DMO,0x00800001,1,1,,
    WMT MuxDeMux Filter,0x00200000,0,0,wmm2filt.dll,2.01.4026.0000
    InterVideo Video Decoder,0x00700000,2,4,ivivideo.ax,4.00.0011.0389
    Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.2600.2180
    InterVideo Audio Processor,0x00200000,1,1,IviAudioProcess.ax,
    DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.2180
    Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.2180
    WM ASF Reader,0x00400000,0,0,qasf.dll,9.00.0000.3250
    AVI Splitter,0x00600000,1,1,quartz.dll,6.05.2600.2180
    WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.2180
    Indeo® video 5.10 Compression Filter,0x00200000,1,1,,5.2562.0015.0055
    Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,8.00.0000.4487
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.2600.2180
    WMT Format Conversion,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Xing® VideoCD Navigator,0x00600000,0,2,rpds3260.dll,6.00.0008.0642
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.05.2600.2180
    WMT Black Frame Generator,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.2180
    Indeo® video 5.10 Decompression Filter,0x00640000,1,1,,5.2562.0015.0055
    WMT Screen Capture filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    Microsoft Screen Video Decompressor,0x00800000,1,1,msscds32.ax,8.00.0000.4487
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.2600.2180
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.2180
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.09.0000.0311
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.2600.2180
    ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
    Render Dib New,0x00200000,1,1,ezrgb24.ax,1.00.0000.0000
    Ligos MPEG Audio Decoder,0x03680001,1,1,lmpgad.ax,4.00.0000.0090
    Ligos DV Intercept (Version 2.0),0x00200000,1,1,DvIntcpt.ax,2.00.0012.0033
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.2600.2180
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.2600.2180
    File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,9.00.0000.3250
    WMT Import Filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    DV Splitter,0x00600000,1,2,qdv.dll,6.05.2600.2180
    Bitmap Generate,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,8.00.0000.4487
    P3Sourcer,0x00600000,0,1,p3aodf1.dll,1.23.0000.51223
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,
    Windows Media Video Decoder,0x00800000,1,1,wmv8ds32.ax,8.00.0000.4000
    Arcsoft LPCM Decoder,0x00600000,1,1,lpcmdec.ax,1.00.0000.0000
    WMT VIH2 Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Record Queue,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASX file Parser,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,9.00.0000.3250
    NSC file Parser,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ArcSoft Mpeg Writer,0x00200000,2,0,MPEGWriter.ax,2.00.0000.0004
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.2600.2180
    Windows Media source filter,0x00600000,0,2,wmpasf.dll,9.00.0000.3250
    Video Renderer,0x00800001,1,0,quartz.dll,6.05.2600.2180
    Frame Eater,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    File Dump,0x00200000,1,0,filedump.ax,1.00.0000.0000
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.05.2600.2180
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.2600.2180
    Video Port Manager,0x00600000,2,1,quartz.dll,6.05.2600.2180
    WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.2600.2180
    Video Renderer,0x00400000,1,0,quartz.dll,6.05.2600.2180
    DivX Decoder Filter,0xff800000,1,1,divxdec.ax,6.02.0005.0034
    P3MPGSplitter,0x00200000,0,1,bugsmpgs.ax,1.00.0000.60512
    LEAD MCMP/MJPEG Codec,0x00100000,1,1,LCODCCMP.DLL,
    LEAD MCMP/MJPEG Decoder,0x00800000,1,1,LCODCCMP.DLL,
    Bugs Audio Decoder,0x00200000,1,1,bugsad.ax,1.00.0000.60512
    WM ASF Writer,0x00400000,0,0,qasf.dll,9.00.0000.3250
    Ligos GoMotion DV to MPEG Filter (Version 2.0),0x00200000,2,0,GoMotionDVtoMPEG.ax,2.00.0012.0030
    InterVideo Audio Decoder,0x00700000,1,1,iviaudio.ax,4.00.0011.0389
    WMT Sample Information Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.03.2600.2180
    Microsoft MPEG-4 Video Decompressor,0x00800000,1,1,mpg4ds32.ax,8.00.0000.4487
    DivX Demux,0x00600000,1,0,DivXMedia.ax,0.00.0000.0028
    File writer,0x00200000,1,0,qcap.dll,6.05.2600.2180
    WMT Log Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Virtual Renderer,0x00200000,1,0,wmm2filt.dll,2.01.4026.0000
    DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.2600.2180
    Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.2600.2180
    AVI Draw,0x00600064,9,1,quartz.dll,6.05.2600.2180
    .RAM file Parser,0x00600000,1,0,wmpasf.dll,9.00.0000.3250
    BugsEffect,0x00200000,1,1,BugsEf.ax,1.00.0000.51212
    InterVideo Navigator,0x00190000,0,3,ivinav.ax,4.00.0011.0389
    WMT DirectX Transform Wrapper,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    G.711 Codec,0x00200000,1,1,g711codc.ax,5.01.2600.0000
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.2600.2180
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.2600.2180
    Indeo® audio software,0x00500000,1,1,,2.00.0005.0053
    Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,9.00.0000.3250
    ASF DIB Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASF ACM Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASF ICM Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASF URL Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.3250
    DivX Subtitle Decoder,0x00600000,1,1,DivXMedia.ax,0.00.0000.0028
    9x8Resize,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WIA Stream Snapshot Filter,0x00200000,1,1,wiasf.ax,1.00.0000.0000
    Allocator Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.05.2600.2180
    Null Renderer,0x00200000,1,0,qedit.dll,6.05.2600.2180
    WMT Virtual Source,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    MPEG-2 Sections and Tables,0x005fffff,1,0,mpeg2data.ax,
    IVF source filter,0x00600000,0,1,,5.10.0002.0051
    WMT Interlacer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.05.2600.2180
    Ligos MPEG Splitter,0x00800000,1,2,lmpgspl.ax,4.00.0000.0090
    Ligos MPEG Video Decoder,0x00800000,1,1,lmpgvd.ax,4.00.0000.0090
    Smart Tee,0x00200000,1,2,qcap.dll,6.05.2600.2180
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.2600.2180
    RealPlayer Audio Filter,0x00200000,1,1,rpds3260.dll,6.00.0008.0642
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.2180
    Uncompressed Domain Shot Detection Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.2600.2180
    QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.2600.2180
    Wave Parser,0x00400000,1,1,quartz.dll,6.05.2600.2180
    MIDI Parser,0x00400000,1,1,quartz.dll,6.05.2600.2180
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.2600.2180
    Lyric Parser,0x00400000,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
    Ligos GoMotion Capture Encoder Filter (ArcSoft),0x00200000,2,1,GoMotionCaptureEncoder.ax,6.02.0000.0018
    AVI Mux,0x00200000,1,0,qcap.dll,6.05.2600.2180
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.2600.2180
    File Source (Async.),0x00400000,0,1,quartz.dll,6.05.2600.2180
    File Source (URL),0x00400000,0,1,quartz.dll,6.05.2600.2180
    WMT DV Extract,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Ligos Virtual Source (Version 2.0),0x00200000,0,1,VirtSrc.ax,2.00.0012.0016
    WMT Switch Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Volume,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Stretch Video,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Windows Media Pad VU Data Grabber,0x00600000,1,0,wmmfilt.dll,1.01.2427.0001
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.2600.2180
    P3OggSplitter,0x00200000,1,1,p3mfov.ax,1.07.0000.60425
    BDA MPEG2 Transport Information Filter,0x00200000,1,0,psisrndr.ax,6.05.2600.2180
    QT Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.2180
    ShotBoundaryDet,0x00200000,1,1,wmmfilt.dll,1.01.2427.0001
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.2600.2180
    Indeo® video 4.4 Decompression Filter,0x0009c400,1,1,,4.51.0016.0003
    Indeo® video 4.4 Compression Filter,0x00030d40,1,1,,4.51.0016.0003
    WDM Streaming Data Transforms:
    Microsoft Kernel Acoustic Echo Canceller,0x00000000,0,0,,
    Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.2600.2180
    Microsoft Kernel DLS Synthesizer,0x00200000,1,1,,5.03.2600.2180
    Microsoft Kernel DRM Audio Descrambler,0x00200000,1,1,,5.03.2600.2180
    Video Compressors:
    WMVideo Encoder DMO,0x00600800,1,1,,
    MSScreen encoder DMO,0x00600800,1,1,,
    WMVideo9 Encoder DMO,0x00600800,1,1,,
    MSScreen 9 encoder DMO,0x00600800,1,1,,
    ArcSoft Mpeg Writer,0x00200000,0,0,MPEGWriter.ax,2.00.0000.0004
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.2600.2180
    Indeo® video 5.10 Compression Filter,0x00100000,1,1,,5.2562.0015.0055
    LEAD MCMP/MJPEG Codec,0x00100000,1,1,LCODCCMP.DLL,
    Ligos GoMotion Capture Encoder Filter (ArcSoft),0x00200000,0,0,GoMotionCaptureEncoder.ax,6.02.0000.0018
    Ligos GoMotion DV to MPEG Filter (Version 2.0),0x00200000,0,0,GoMotionDVtoMPEG.ax,2.00.0012.0030
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.2600.2180
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.2600.2180
    DivX® 6.2.5 Codec (1 Logical CPU),0x00200000,1,1,qcap.dll,6.05.2600.2180
    Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Intel Indeo® Video 4.5,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    LEAD MCMP/MJPEG Codec (VFW),0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.2600.2180
    DivX® 6.2.5 YV12 Decoder,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,,
    WMAudio Encoder DMO,0x00600800,1,1,,
    IAC2,0x00200000,1,1,quartz.dll,6.05.2600.2180
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.2180
    PCM,0x00200000,1,1,quartz.dll,6.05.2600.2180
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.2180
    ACELP.net,0x00200000,1,1,quartz.dll,6.05.2600.2180
    DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.2600.2180
    Windows Media Audio V1,0x00200000,1,1,quartz.dll,6.05.2600.2180
    Windows Media Audio V2,0x00200000,1,1,quartz.dll,6.05.2600.2180
    GSM 6.10,0x00200000,1,1,quartz.dll,6.05.2600.2180
    MSN Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.05.2600.2180
    Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.2600.2180
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.2600.2180
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.2600.2180
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.2600.2180
    Audio Capture Sources:
    Realtek AC97 Audio,0x00200000,0,0,qcap.dll,6.05.2600.2180
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.2600.2180
    Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.2600.2180
    WDM Streaming Capture Devices:
    Realtek AC97 Audio,0x00200000,2,2,,5.03.2600.2180
    WDM Streaming Rendering Devices:
    Realtek AC97 Audio,0x00200000,2,2,,5.03.2600.2180
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.2600.2180
    Microsoft DVBC Network Provider,0x00200000,0,1,msdvbnp.ax,
    Microsoft DVBS Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.2600.2180
    Microsoft DVBT Network Provider,0x00200000,0,1,msdvbnp.ax,
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,1,0,psisrndr.ax,6.05.2600.2180
    MPEG-2 Sections and Tables,0x00600000,1,0,mpeg2data.ax,
    WDM Streaming Mixer Devices:
    Microsoft Kernel Wave Audio Mixer,0x00000000,0,0,,
    BDA CP/CA 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,0x00200000,0,0,encdec.dll,6.05.2600.2180
    Audio Renderers:
    Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.2600.2180
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.2600.2180
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.2600.2180
    DirectSound: Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.2600.2180
    WDM Streaming System Devices:
    Realtek AC97 Audio,0x00200000,16,2,,5.03.2600.2180
    Windows XP

    Hi Matt,
    You are not alone. Are you trying to load itunes 7.0.1? I updated to that last weekend and now my ipod has disappeared from my computer and Quicktime won't play. Tech support chat had me uninstall and reinstall about 4 times, no luck. I truly believe Apple has a problem with this version, I see many, many other on these discussion groups with same problem as yours and mine. I called Apple store last night and they told me yes, some are having problems. They told me to bring in my computer! What a joke, but I may just do it so they can see. Good luck, wish I could give you some advise other than it's not your fault!

  • Desktop freezes and hard drives failure

    Hey i faced a recent problem with my Computer, when i log in it freezes/crash i got told its due to my sound drive failuring, i tryed to download HP assistant to upgrade my sound drive but it cames up saying " Error 1719. windows installer service could not be accessed" I went to the HP software website to see if theres any sound drive but there arnt. I cant do a system restore because an error pops up. I tryed everything, nothing seems not to work .
    Heres my computer specs
    Im in safe mod if u want to know ^ ^
    System Information
    Time of this report: 4/29/2011, 14:11:56
           Machine name: ASHDOWN-PC
       Operating System: Windows 7 Home Premium 32-bit (6.1, Build 7601) (7601.win7sp1_rtm.101119-1850)
               Language: English (Regional Setting: English)
    System Manufacturer: Compaq-Presario
           System Model: KQ318AA-ABU SR5414UK
                   BIOS: v5.03
              Processor: Intel(R) Core(TM)2 Duo CPU     E4600  @ 2.40GHz (2 CPUs), ~2.4GHz
                 Memory: 2048MB RAM
    Available OS Memory: 2046MB RAM
              Page File: 556MB used, 3536MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
     System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7600.16385 32bit Unicode
      DxDiag Previously: Crashed in system information (stage 4). Re-running DxDiag with "dontskip" command line parameter or choosing not to bypass information gathering when prompted might result in DxDiag successfully obtaining this information
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: This computer cannot play audio because the Windows Audio service is not enabled.  Use the Sounds and Devices Properties control panel to enable audio. No sound card was found.  If one is expected, you should install a sound driver provided by the hardware manufacturer.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name:
           Manufacturer:
              Chip type:
               DAC type:
             Device Key: Enum\
         Display Memory: n/a
       Dedicated Memory: n/a
          Shared Memory: n/a
           Current Mode: 1600 x 1200 (32 bit) (1Hz)
            Driver Name:
    Driver File Version:  ()
         Driver Version:
            DDI Version: unknown
           Driver Model: unknown
      Driver Attributes: Final Retail
       Driver Date/Size: , 0 bytes
            WHQL Logo'd: n/a
        WHQL Date Stamp: n/a
      Device Identifier: {D7B70EE0-4340-11CF-B123-B03DAEC2CB35}
              Vendor ID: 0x0000
              Device ID: 0x0000
              SubSys ID: 0x00000000
            Revision ID: 0x0000
     Driver Strong Name: Unknown
         Rank Of Driver: Unknown
            Video Accel:
          Deinterlace Caps: n/a
           D3D9 Overlay: n/a
                DXVA-HD: n/a
           DDraw Status: Not Available
             D3D Status: Not Available
             AGP Status: Not Available
    Sound Devices
                Description:
     Default Sound Playback: No
     Default Voice Playback: No
                Hardware ID:
            Manufacturer ID:
                 Product ID:
                       Type:
                Driver Name:
             Driver Version:
          Driver Attributes:
                WHQL Logo'd:
              Date and Size:
                Other Files:
            Driver Provider:
             HW Accel Level: Emulation Only
                  Cap Flags: 0x0
        Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Razer Arctosa
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010B
            FF Driver: n/a
          Device Name: Razer Arctosa
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010B
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x27C9
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    |
    +-+ USB Input Device
    | | Vendor/Product ID: 0x1532, 0x001C
    | | Location: Port_#0002.Hub_#0002
    | | Matching Device ID: generic_hid_device
    | | Service: HidUsb
    | |
    | +-+ HID-compliant mouse
    | | | Vendor/Product ID: 0x1532, 0x001C
    | | | Matching Device ID: hid_device_system_mouse
    | | | Service: mouhid
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x010B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    System Devices
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    Device ID: PCI\VEN_8086&DEV_27CA&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EA
       Driver: n/a
         Name: Intel(R) G33/G31/P35/P31 Express Chipset PCI Express Root Port - 29C1
    Device ID: PCI\VEN_8086&DEV_29C1&SUBSYS_29C18086&REV_10\3&241​1E6FE&1&08
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    Device ID: PCI\VEN_8086&DEV_27C9&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E9
       Driver: n/a
         Name: Intel(R) G33/G31/P35/P31 Express Chipset Processor to I/O Controller - 29C0
    Device ID: PCI\VEN_8086&DEV_29C0&SUBSYS_2A78103C&REV_10\3&241​1E6FE&1&00
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    Device ID: PCI\VEN_8086&DEV_27C8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E8
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA
    Device ID: PCI\VEN_8086&DEV_27DA&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&FB
       Driver: n/a
         Name: Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
    Device ID: PCI\VEN_8086&DEV_27C0&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&FA
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_27D8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&D8
       Driver: n/a
         Name: Intel(R) 82801GB/GR (ICH7 Family) LPC Interface Controller - 27B8
    Device ID: PCI\VEN_8086&DEV_27B8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&F8
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D0
    Device ID: PCI\VEN_8086&DEV_27D0&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E0
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_2A78103C&REV_E1\3&241​1E6FE&1&F0
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    Device ID: PCI\VEN_8086&DEV_27CC&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EF
       Driver: n/a
         Name: Realtek RTL8101E Family PCI-E Fast Ethernet NIC (NDIS 6.20)
    Device ID: PCI\VEN_10EC&DEV_8136&SUBSYS_2A78103C&REV_01\4&360​1B127&0&00E0
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    Device ID: PCI\VEN_8086&DEV_27CB&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EB
       Driver: n/a
         Name: NVIDIA GeForce 9600 GT
    Device ID: PCI\VEN_10DE&DEV_0622&SUBSYS_82A11043&REV_A1\4&1EA​08276&0&0008
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16597
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.110​9
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.1​109
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.11​09
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3508.110​9
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.110​9
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.1649​0
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
    DivX AAC Decoder,0x00800000,1,1,daac.ax,7.01.0000.0010
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.1638​5
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7​600.16724
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0​000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16724
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.​16724
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.1638​5
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.1​6490
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7600.16385
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.1672​4
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.1672​4
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16​385
    DivX MKV Demux (unrestricted),0x00200000,0,1,DMFSource.ax,1.00.00​02.0006
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16​385
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16724
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7600.16385
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
    DivX H.264 Decoder,0x00800000,1,1,DivXDecH264.ax,9.00.0001.00​21
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
    File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.110​9
    DivX Decoder Filter,0x00800000,1,1,DivXDec.ax,7.01.0001.0014
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.1638​5
    File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.1638​5
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7600.16385
    DivX MKV Demux,0x00600000,0,1,DMFSource.ax,1.00.0002.0006
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7600.16490
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16​385
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600​.16724
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
    LAME Audio Encoder,0x00100000,2,1,lame.ax,1.00.0054.50801
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.1​6385
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.1638​5
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.760​0.16724
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7600.16385
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.1​6490
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7600.1​6385
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0​000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600​.16724
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7600.163​85
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.1638​5
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.164​90
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7600.16385
    DivX 6.9.2 Codec (2 Logical CPUs),0x00200000,1,1,qcap.dll,6.06.7600.16385
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.06.7600.163​85
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7600.16385
    x264vfw - H.264/MPEG-4 AVC codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    DivX 6.9.2 YV12 Decoder,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16490
    Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7600.16490
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16​724
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16​724
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16​724
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16490
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16648
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16​724
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16​724
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16724
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16724
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.1638​5
    Audio Renderers:
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    You can make them visible on the Desktop using Finder/Preferences/General. You can also set them to show up in the Finder Sidebar using Preferences/Sidebar.

  • Looking for help on importing video in Lightroom 4.4

    I am not sure when this started happening or what has changed.  I went to import some video and in the import dialog box all my video files show "Preview unavailable for this file" in the thumbnail in the grid view.  And if I try to import them i get a dialog box with a message that says Import Results > Some import operations were not performed. > There is a problem with the video file (1) > [Filename].AVI
    I am currently using windows 8 and I have imported video to this catalog before from the same camera.  The video plays fine in the video players(windows media player, quicktime, and the new video app on windows 8 that is the default player in the OS). 
    I went throught the http://helpx.adobe.com/lightroom/kb/troubleshoot-video-issues-lightroom-4.html and did all those suggestions.  I am now turning to the forums before I reach out to support. 
    Has anyone else run into this issue or a simililar one that may be able to give me a workaround or solution?
    I am a cloud subscriber and all my programs are up to date.  Windows is current, all players are current, and this specific catalog has .AVI files in it from the same camera and the firmware on the camera has never been updated since I started shooting video.
    Thanks,
    Alex
    System Information
    Time of this report: 5/17/2013, 09:54:11
           Machine name: ALEX_OFFICE_PC
       Operating System: Windows 8 64-bit (6.2, Build 9200) (9200.win8_gdr.130306-1502)
               Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
           System Model: h8-1414
                   BIOS: v8.06
              Processor: AMD FX(tm)-6120 Six-Core Processor              (6 CPUs), ~3.5GHz
                 Memory: 10240MB RAM
    Available OS Memory: 10030MB RAM
              Page File: 6255MB used, 5245MB available
            Windows Dir: C:\windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.02.9200.16384 64bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
          Display Tab 2: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: AMD Radeon HD 7450
           Manufacturer: Advanced Micro Devices, Inc.
              Chip type: AMD Radeon Graphics Processor (0x677B)
               DAC type: Internal DAC(400MHz)
            Device Type: Full Device
             Device Key: Enum\PCI\VEN_1002&DEV_677B&SUBSYS_249F1462&REV_00
         Display Memory: 5765 MB
       Dedicated Memory: 1006 MB
          Shared Memory: 4758 MB
           Current Mode: 1600 x 900 (32 bit) (60Hz)
           Monitor Name: Dell S2009W(Digital)
          Monitor Model: DELL S2009W
             Monitor Id: DELA045
            Native Mode: 1600 x 900(p) (59.978Hz)
            Output Type: DVI
            Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.17.0010.1140 (English)
         Driver Version: 8.982.10.6000
            DDI Version: 11
         Feature Levels: 11.0,10.1,10.0,9.3,9.2,9.1
           Driver Model: WDDM 1.2
    Graphics Preemption: DMA
    Compute Preemption: DMA
      Driver Attributes: Final Retail
       Driver Date/Size: 9/22/2012 00:02:14, 1112064 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71EE2-243B-11CF-A673-9504BEC2C535}
              Vendor ID: 0x1002
              Device ID: 0x677B
              SubSys ID: 0x249F1462
            Revision ID: 0x0000
    Driver Strong Name: oem27.inf:cb0ae4144888a682:ati2mtag_NI:8.982.10.6000:pci\ven_1002&dev_677b&subsys_249f146 2
         Rank Of Driver: 00E00001
            Video Accel: ModeMPEG2_A ModeMPEG2_C
            DXVA2 Modes: DXVA2_ModeMPEG2_VLD  DXVA2_ModeMPEG2_IDCT  DXVA2_ModeH264_VLD_NoFGT  DXVA2_ModeVC1_VLD 
       Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Not Supported
                DXVA-HD: Not Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
              Card name: AMD Radeon HD 7450
           Manufacturer: Advanced Micro Devices, Inc.
              Chip type: AMD Radeon Graphics Processor (0x677B)
               DAC type: Internal DAC(400MHz)
            Device Type: Full Device
             Device Key: Enum\PCI\VEN_1002&DEV_677B&SUBSYS_249F1462&REV_00
         Display Memory: 5765 MB
       Dedicated Memory: 1006 MB
          Shared Memory: 4758 MB
           Current Mode: 1440 x 900 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: L1975NW
             Monitor Id: WDE5150
            Native Mode: 1440 x 900(p) (59.887Hz)
            Output Type: DVI
            Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.17.0010.1140 (English)
         Driver Version: 8.982.10.6000
            DDI Version: 11
         Feature Levels: 11.0,10.1,10.0,9.3,9.2,9.1
           Driver Model: WDDM 1.2
    Graphics Preemption: DMA
    Compute Preemption: DMA
      Driver Attributes: Final Retail
       Driver Date/Size: 9/22/2012 00:02:14, 1112064 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71EE2-243B-11CF-A673-9504BEC2C535}
              Vendor ID: 0x1002
              Device ID: 0x677B
              SubSys ID: 0x249F1462
            Revision ID: 0x0000
    Driver Strong Name: oem27.inf:cb0ae4144888a682:ati2mtag_NI:8.982.10.6000:pci\ven_1002&dev_677b&subsys_249f146 2
         Rank Of Driver: 00E00001
            Video Accel: ModeMPEG2_A ModeMPEG2_C
            DXVA2 Modes: DXVA2_ModeMPEG2_VLD  DXVA2_ModeMPEG2_IDCT  DXVA2_ModeH264_VLD_NoFGT  DXVA2_ModeVC1_VLD 
       Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Not Supported
                DXVA-HD: Not Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers / Headphones (IDT High Definition Audio CODEC)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_76C7&SUBSYS_103C2AC8&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: stwrt64.sys
             Driver Version: 6.10.6429.0000 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 10/22/2012 04:02:10, 543744 bytes
                Other Files:
            Driver Provider: IDT
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Digital Output (S/PDIF) (IDT High Definition Audio CODEC)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_76C7&SUBSYS_103C2AC8&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: stwrt64.sys
             Driver Version: 6.10.6429.0000 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 10/22/2012 04:02:10, 543744 bytes
                Other Files:
            Driver Provider: IDT
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Line In (IDT High Definition Audio CODEC)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: stwrt64.sys
             Driver Version: 6.10.6429.0000 (English)
          Driver Attributes: Final Retail
              Date and Size: 10/22/2012 04:02:10, 543744 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x04F2, 0x1060
            FF Driver: n/a
          Device Name: USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x04F2, 0x1060
            FF Driver: n/a
          Device Name: USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x04F2, 0x1060
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x1002, 0x4397
    | Matching Device ID: USB\ROOT_HUB
    | Service: usbhub
    | Driver: usbhub.sys, 2/2/2013 07:19:44, 496872 bytes
    | Driver: usbd.sys, 9/20/2012 03:55:32, 21736 bytes
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x04F2, 0x1060
    | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD
    | Service: kbdhid
    | Driver: kbdhid.sys, 7/25/2012 22:28:49, 29184 bytes
    | Driver: kbdclass.sys, 7/26/2012 01:00:52, 48368 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x0461, 0x4D0F
    | Matching Device ID: HID_DEVICE_SYSTEM_MOUSE
    | Service: mouhid
    | Driver: mouhid.sys, 3/1/2013 22:15:53, 26112 bytes
    | Driver: mouclass.sys, 7/26/2012 01:00:55, 45808 bytes
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 598.0 GB
    Total Space: 932.1 GB
    File System: NTFS
          Model: Seagate ST1000DM003-9YN1 SCSI Disk Device
          Drive: D:
    Free Space: 2.5 GB
    Total Space: 20.0 GB
    File System: NTFS
          Model: Seagate ST1000DM003-9YN1 SCSI Disk Device
          Drive: M:
    Free Space: 1093.0 GB
    Total Space: 1907.7 GB
    File System: NTFS
          Model: WD My Book 1140 USB Device
          Drive: F:
          Model: hp DVD A  DH16ACSHR SCSI CdRom Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.02.9200.16384 (English), 7/25/2012 22:26:36, 174080 bytes
    System Devices
         Name: AMD IOMMU Device
    Device ID: PCI\VEN_1002&DEV_5A23&SUBSYS_5A231002&REV_00\3&11583659&0&02
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_5A19&SUBSYS_5A141002&REV_00\3&11583659&0&28
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_43A0&SUBSYS_00001002&REV_00\3&11583659&0&A8
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_2AC8103C&REV_00\3&11583659&0&B0
       Driver: C:\windows\system32\drivers\usbohci.sys, 6.02.9200.16461 (English), 11/20/2012 00:56:27, 27136 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_2AC8103C&REV_00\3&11583659&0&98
       Driver: C:\windows\system32\drivers\usbohci.sys, 6.02.9200.16461 (English), 11/20/2012 00:56:27, 27136 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_2AC8103C&REV_00\3&11583659&0&90
       Driver: C:\windows\system32\drivers\usbohci.sys, 6.02.9200.16461 (English), 11/20/2012 00:56:27, 27136 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002&DEV_4383&SUBSYS_2AC8103C&REV_40\3&11583659&0&A2
       Driver: C:\windows\system32\DRIVERS\hdaudbus.sys, 6.02.9200.16420 (English), 9/20/2012 02:08:44, 71168 bytes
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1601&SUBSYS_00000000&REV_00\3&11583659&0&C1
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_43A3&SUBSYS_00001002&REV_00\3&11583659&0&AB
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: ATI I/O Communications Processor SMBus Controller
    Device ID: PCI\VEN_1002&DEV_4385&SUBSYS_2AC8103C&REV_42\3&11583659&0&A0
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1604&SUBSYS_00000000&REV_00\3&11583659&0&C4
       Driver: n/a
         Name: Texas Instruments USB 3.0 eXtensible Host Controller - 0096 (Microsoft)
    Device ID: PCI\VEN_104C&DEV_8241&SUBSYS_2AC8103C&REV_02\4&5DC256B&0&0028
       Driver: C:\windows\system32\DRIVERS\UCX01000.SYS, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 212200 bytes
       Driver: C:\windows\system32\DRIVERS\USBXHCI.SYS, 6.02.9200.16548 (English), 3/2/2013 06:57:48, 337128 bytes
         Name: Ralink RT3290 802.11bgn Wi-Fi Adapter
    Device ID: PCI\VEN_1814&DEV_3290&SUBSYS_18EC103C&REV_00\4&EDB6346&0&00AA
       Driver: C:\windows\system32\DRIVERS\netr28x.sys, 5.00.0025.0000 (English), 4/15/2013 07:02:04, 2482960 bytes
       Driver: C:\windows\system32\drivers\vwifibus.sys, 6.02.9200.16384 (English), 7/25/2012 22:27:54, 24064 bytes
       Driver: C:\windows\system32\RaCoInstx.dll, 1.00.0008.0000 (English), 6/19/2012 13:31:24, 327008 bytes
       Driver: C:\windows\system32\RaCoInst.dat, 4/15/2013 07:02:04, 13973 bytes
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002&DEV_AA98&SUBSYS_AA981462&REV_00\4&2534E90F&0&0110
       Driver: C:\windows\system32\DRIVERS\hdaudbus.sys, 6.02.9200.16420 (English), 9/20/2012 02:08:44, 71168 bytes
         Name: ATI I/O Communications Processor PCI Bus Controller
    Device ID: PCI\VEN_1002&DEV_4384&SUBSYS_00000000&REV_40\3&11583659&0&A4
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_43A1&SUBSYS_00001002&REV_00\3&11583659&0&A9
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1602&SUBSYS_00000000&REV_00\3&11583659&0&C2
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1002&DEV_5A14&SUBSYS_5A141002&REV_02\3&11583659&0&00
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1605&SUBSYS_00000000&REV_00\3&11583659&0&C5
       Driver: n/a
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_2AC8103C&REV_06\4&693E52D&0&00AB
       Driver: C:\windows\system32\DRIVERS\Rt630x64.sys, 8.03.0730.2012 (English), 8/1/2012 12:42:06, 690832 bytes
       Driver: C:\windows\system32\RtNicProp64.dll, 1.02.0000.0004 (English), 8/1/2012 12:42:06, 74344 bytes
         Name: AMD AHCI Compatible RAID Controller
    Device ID: PCI\VEN_1002&DEV_4393&SUBSYS_2AC8103C&REV_40\3&11583659&0&88
       Driver: C:\windows\system32\DRIVERS\ahcix64s.sys, 3.04.1592.0003 (English), 8/17/2012 09:42:36, 291648 bytes
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_2AC8103C&REV_00\3&11583659&0&B2
       Driver: C:\windows\system32\drivers\usbehci.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:32, 79080 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_2AC8103C&REV_00\3&11583659&0&9A
       Driver: C:\windows\system32\drivers\usbehci.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:32, 79080 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_2AC8103C&REV_00\3&11583659&0&92
       Driver: C:\windows\system32\drivers\usbehci.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:32, 79080 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1600&SUBSYS_00000000&REV_00\3&11583659&0&C0
       Driver: n/a
         Name: AMD Radeon HD 7450
    Device ID: PCI\VEN_1002&DEV_677B&SUBSYS_249F1462&REV_00\4&2534E90F&0&0010
       Driver: C:\windows\system32\DRIVERS\atikmdag.sys, 8.01.0001.1253 (English), 9/22/2012 00:02:24, 10316800 bytes
       Driver: C:\windows\system32\DRIVERS\ati2erec.dll, 1.00.0000.0024 (English), 9/22/2012 00:02:22, 53248 bytes
       Driver: C:\windows\system32\DRIVERS\atikmpag.sys, 8.14.0001.6268 (English), 9/22/2012 00:02:18, 370688 bytes
       Driver: C:\windows\system32\atiumd64.dll, 9.14.0010.0924 (English), 9/22/2012 00:02:12, 6676992 bytes
       Driver: C:\windows\system32\atiumd6a.dll, 8.14.0010.0363 (English), 9/22/2012 00:02:20, 4268544 bytes
       Driver: C:\windows\system32\atitmm64.dll, 6.14.0011.0023 (English), 9/22/2012 00:02:22, 120320 bytes
       Driver: C:\windows\system32\atiicdxx.dat, 4/13/2012 07:30:10, 637743 bytes
       Driver: C:\windows\system32\amdpcom64.dll, 8.14.0010.0023 (English), 9/22/2012 00:02:22, 56320 bytes
       Driver: C:\windows\system32\atimpc64.dll, 8.14.0010.0023 (English), 9/22/2012 00:02:18, 56320 bytes
       Driver: C:\windows\system32\atiadlxx.dll, 6.14.0010.1106 (English), 9/22/2012 00:02:12, 540672 bytes
       Driver: C:\windows\system32\atiumd6a.cap, 9/22/2012 00:02:20, 3150560 bytes
       Driver: C:\windows\system32\atimuixx.dll, 6.14.0010.1002 (English), 9/22/2012 00:02:20, 21504 bytes
       Driver: C:\windows\system32\atiapfxx.exe, 6.14.0010.1001 (English), 9/22/2012 00:02:22, 163840 bytes
       Driver: C:\windows\system32\ativvsva.dat, 7/5/2012 13:34:18, 157144 bytes
       Driver: C:\windows\system32\ativvsvl.dat, 7/5/2012 13:34:18, 204952 bytes
       Driver: C:\windows\system32\atiesrxx.exe, 6.14.0011.1126 (English), 9/22/2012 00:02:18, 239616 bytes
       Driver: C:\windows\system32\atieclxx.exe, 6.14.0011.1126 (English), 9/22/2012 00:02:20, 534528 bytes
       Driver: C:\windows\system32\atidemgy.dll, 2.00.4644.2971 (English), 9/22/2012 00:02:22, 442368 bytes
       Driver: C:\windows\system32\atio6axx.dll, 6.14.0010.11774 (English), 9/22/2012 00:02:16, 24854528 bytes
       Driver: C:\windows\system32\aticaldd64.dll, 6.14.0010.1741 (English), 9/22/2012 00:02:18, 16034304 bytes
       Driver: C:\windows\system32\aticalrt64.dll, 6.14.0010.1741 (English), 9/22/2012 00:02:14, 51200 bytes
       Driver: C:\windows\system32\aticalcl64.dll, 6.14.0010.1741 (English), 9/22/2012 00:02:24, 44544 bytes
       Driver: C:\windows\system32\atipblag.dat, 9/13/2011 10:06:16, 3917 bytes
       Driver: C:\windows\system32\atiu9p64.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:24, 103936 bytes
       Driver: C:\windows\system32\atiuxp64.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:20, 129536 bytes
       Driver: C:\windows\system32\atig6pxx.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:22, 17920 bytes
       Driver: C:\windows\system32\atig6txx.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:18, 41984 bytes
       Driver: C:\windows\system32\atibtmon.exe, 2.00.0000.0000 (English), 5/12/2009 09:35:28, 118784 bytes
       Driver: C:\windows\system32\atiapfxx.blb, 9/22/2012 00:02:12, 270536 bytes
       Driver: C:\windows\system32\atidxx64.dll, 8.17.0010.0451 (English), 9/22/2012 00:02:14, 7052288 bytes
       Driver: C:\windows\SysWOW64\atiumdag.dll, 9.14.0010.0924 (English), 9/22/2012 00:02:22, 5540008 bytes
       Driver: C:\windows\SysWOW64\atiumdva.dll, 8.14.0010.0363 (English), 9/22/2012 00:02:24, 4753408 bytes
       Driver: C:\windows\SysWOW64\amdpcom32.dll, 8.14.0010.0023 (English), 9/22/2012 00:02:20, 56832 bytes
       Driver: C:\windows\SysWOW64\atimpc32.dll, 8.14.0010.0023 (English), 9/22/2012 00:02:12, 56832 bytes
       Driver: C:\windows\SysWOW64\atiadlxy.dll, 6.14.0010.1106 (English), 9/22/2012 00:02:20, 368640 bytes
       Driver: C:\windows\SysWOW64\atiumdva.cap, 9/22/2012 00:02:24, 3187136 bytes
       Driver: C:\windows\SysWOW64\ativvsva.dat, 7/5/2012 13:34:18, 157144 bytes
       Driver: C:\windows\SysWOW64\ativvsvl.dat, 7/5/2012 13:34:18, 204952 bytes
       Driver: C:\windows\SysWOW64\atioglxx.dll, 6.14.0010.11774 (English), 9/22/2012 00:02:18, 20445696 bytes
       Driver: C:\windows\SysWOW64\atidxx32.dll, 8.17.0010.0451 (English), 9/22/2012 00:02:22, 6430208 bytes
       Driver: C:\windows\SysWOW64\aticaldd.dll, 6.14.0010.1741 (English), 9/22/2012 00:02:22, 13605888 bytes
       Driver: C:\windows\SysWOW64\aticalrt.dll, 6.14.0010.1741 (English), 9/22/2012 00:02:22, 46080 bytes
       Driver: C:\windows\SysWOW64\aticalcl.dll, 6.14.0010.1741 (English), 9/22/2012 00:02:24, 44544 bytes
       Driver: C:\windows\SysWOW64\atipblag.dat, 9/13/2011 10:06:16, 3917 bytes
       Driver: C:\windows\SysWOW64\atiu9pag.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:12, 83456 bytes
       Driver: C:\windows\SysWOW64\atiuxpag.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:22, 109568 bytes
       Driver: C:\windows\SysWOW64\atigktxx.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:24, 33280 bytes
       Driver: C:\windows\SysWOW64\atiglpxx.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:18, 14848 bytes
       Driver: C:\windows\SysWOW64\atiapfxx.blb, 9/22/2012 00:02:12, 270536 bytes
       Driver: C:\windows\atiogl.xml, 9/22/2012 00:02:24, 38316 bytes
       Driver: C:\windows\system32\ATIODCLI.exe, 1.00.0000.0001 (English), 6/23/2009 03:34:36, 51200 bytes
       Driver: C:\windows\system32\ATIODE.exe, 1.00.0000.0001 (English), 8/28/2010 06:33:08, 332800 bytes
       Driver: C:\windows\system32\atiglpxx.dll, 8.14.0001.6268 (English), 9/22/2012 00:02:18, 14848 bytes
       Driver: C:\windows\system32\aticfx64.dll, 8.17.0010.1140 (English), 9/22/2012 00:02:14, 1112064 bytes
       Driver: C:\windows\SysWOW64\aticfx32.dll, 8.17.0010.1140 (English), 9/22/2012 00:02:20, 927744 bytes
       Driver: C:\Program Files\Common Files\ATI Technologies\Multimedia\AMDh264Enc32.dll, 1.00.0000.0001 (English), 9/22/2012 00:02:24, 160256 bytes
       Driver: C:\Program Files\Common Files\ATI Technologies\Multimedia\AMDh264Enc64.dll, 1.00.0000.0001 (English), 9/22/2012 00:02:18, 184832 bytes
       Driver: C:\Program Files\Common Files\ATI Technologies\Multimedia\AMDhwDecoder_32.dll, 1.00.0000.0001 (English), 9/22/2012 00:02:22, 149504 bytes
       Driver: C:\Program Files\Common Files\ATI Technologies\Multimedia\AMDhwDecoder_64.dll, 1.00.0000.0001 (English), 9/22/2012 00:02:20, 184320 bytes
       Driver: C:\windows\system32\coinst_8.982.10.6.dll, 1.00.0004.0007 (English), 9/22/2012 00:02:22, 70144 bytes
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_43A2&SUBSYS_00001002&REV_00\3&11583659&0&AA
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4399&SUBSYS_2AC8103C&REV_00\3&11583659&0&A5
       Driver: C:\windows\system32\drivers\usbohci.sys, 6.02.9200.16461 (English), 11/20/2012 00:56:27, 27136 bytes
       Driver: C:\windows\system32\drivers\usbport.sys, 6.02.9200.16420 (English), 9/20/2012 03:55:33, 488168 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.02.9200.16518 (English), 2/2/2013 07:19:44, 496872 bytes
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1603&SUBSYS_00000000&REV_00\3&11583659&0&C3
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1002&DEV_5A16&SUBSYS_5A141002&REV_00\3&11583659&0&10
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 234224 bytes
         Name: PCI standard ISA bridge
    Device ID: PCI\VEN_1002&DEV_439D&SUBSYS_2AC8103C&REV_40\3&11583659&0&A3
       Driver: C:\windows\system32\DRIVERS\msisadrv.sys, 6.02.9200.16384 (English), 7/26/2012 01:00:55, 17136 bytes
         Name: Ralink Bluetooth PCIe Adapter
    Device ID: PCI\VEN_1814&DEV_3298&SUBSYS_18EC103C&REV_00\4&EDB6346&0&01AA
       Driver: C:\windows\system32\DRIVERS\rtbth.sys, 2.09.0002.0000 (English), 7/28/2012 00:53:50, 693856 bytes
       Driver: C:\windows\system32\DRIVERS\rt3298.bin, 7/27/2012 18:02:14, 40958 bytes
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.02.9200.16384
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.02.9200.16384
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.02.9200.16384
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.02.9200.16384
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.02.9200.16496
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.02.9200.16384
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.02.9200.16384
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.02.9200.16384
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.02.9200.16384
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.9200.16384
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.9200.16384
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.9200.16384
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.9200.16384
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.9200.16384
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.9200.16384
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.16429
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.9200.16384
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.9200.16384
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.9200.16384
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.9200.16384
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.9200.16384
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.9200.16384
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.9200.16384
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.9200.16384
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.9200.16384
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,12.00.9200.16384
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.9200.16384
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.9200.16384
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.9200.16384
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.9200.16384
    Haali Media Splitter,0x00800001,0,1,splitter.x64.ax,1.11.0096.0014
    Haali Media Splitter (AR),0x00400000,1,1,splitter.x64.ax,1.11.0096.0014
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,12.00.9200.16384
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.9200.16384
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.9200.16384
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.9200.16384
    Line 21 Decoder,0x00600000,1,1,,
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.9200.16384
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.9200.16384
    Haali Video Renderer,0x00200000,1,0,dxr.x64.dll,
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.9200.16384
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.9200.16384
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.02.9200.16384
    File writer,0x00200000,1,0,qcap.dll,6.06.9200.16384
    Haali Simple Media Splitter,0x00200000,0,1,splitter.x64.ax,1.11.0096.0014
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.9200.16384
    Overlay Mixer2,0x00200000,1,1,,
    Haali Matroska Muxer,0x00200000,1,0,splitter.x64.ax,1.11.0096.0014
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,12.00.9200.16384
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.9200.16384
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.9200.16384
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.9200.16384
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.9200.16384
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.9200.16384
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.9200.16384
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.02.9200.16384
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.9200.16384
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.9200.16384
    Overlay Mixer,0x00200000,0,0,,
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.9200.16384
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.9200.16384
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.9200.16384
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.9200.16384
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.9200.16384
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.9200.16384
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,12.00.8506.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.9200.16384
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.9200.16384
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.9200.16384
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.9200.16384
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.9200.16384
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    Haali Video Sink,0x00200000,1,0,splitter.x64.ax,1.11.0096.0014
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.9200.16384
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.02.9200.16384
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.9200.16384
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.9200.16384
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.02.9200.16384
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.02.9200.16384
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.02.9200.16384
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.02.9200.16384
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.9200.16384
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.9200.16384
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.02.9200.16384
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.02.9200.16384
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.9200.16384
    PCM,0x00200000,1,1,quartz.dll,6.06.9200.16384
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.9200.16384
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.9200.16384
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.9200.16384
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.9200.16384
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.9200.16384
    Audio Capture Sources:
    Line In (IDT High Definition Audio CODEC),0x00200000,0,0,qcap.dll,6.06.9200.16384
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.9200.16384
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.9200.16384
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.9200.16384
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.9200.16384
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.9200.16384
    WDM Streaming Capture Devices:
    MuxedIn2,0x00200000,1,1,ksproxy.ax,6.02.9200.16384
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    MuxedIn1,0x00200000,1,1,ksproxy.ax,6.02.9200.16384
    WDM Streaming Rendering Devices:
    Speaker,0x00200000,1,1,ksproxy.ax,6.02.9200.16384
    SpdifOut,0x00200000,1,1,ksproxy.ax,6.02.9200.16384
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.9200.16384
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.9200.16384
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.9200.16384
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.9200.16384
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.9200.16384
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.9200.16384
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.9200.16384
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.9200.16384
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.9200.16384
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.9200.16384
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.9200.16384
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.9200.16384
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.02.9200.16384
    Audio Renderers:
    Speakers / Headphones (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.9200.16384
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.9200.16384
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.9200.16384
    DirectSound: Speakers / Headphones (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.9200.16384
    DirectSound: Digital Output (S/PDIF) (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.9200.16384
    Digital Output (S/PDIF) (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.9200.16384
    Preferred DirectShow Filters
    [HKEY_LOCAL_MACHINE\Software\Microsoft\DirectShow\Preferred]
    <media subtype GUID>, [<filter friendly name>, ]<filter CLSID>
    MEDIASUBTYPE_WMAUDIO_LOSSLESS, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
    MEDIASUBTYPE_MPG4, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
    WMMEDIASUBTYPE_WMSP2, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject
    MEDIASUBTYPE_WVC1, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    {64687664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
    MEDIASUBTYPE_h264, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
    MEDIASUBTYPE_MPEG1AudioPayload, MPEG Audio Decoder, CLSID_CMpegAudioCodec
    {78766964-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_WMAUDIO3, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
    MEDIASUBTYPE_WMV2, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_MPEG2_AUDIO, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
    {64697678-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    WMMEDIASUBTYPE_MP3, MP3 Decoder DMO, CLSID_CMP3DecMediaObject
    MEDIASUBTYPE_mp42, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
    MEDIASUBTYPE_MSS1, WMV Screen decoder DMO, CLSID_CMSSCDecMediaObject
    MEDIASUBTYPE_WVP2, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_WMV1, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_WMVP, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_WMV3, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_WMVR, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_MJPG, MJPEG Decompressor, CLSID_MjpegDec
    MEDIASUBTYPE_mp43, Mpeg43 Decoder DMO, CLSID_CMpeg43DecMediaObject
    MEDIASUBTYPE_MSS2, WMV Screen decoder DMO, CLSID_CMSSCDecMediaObject
    {64737664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
    WMMEDIASUBTYPE_WMAudioV8, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
    {44495658-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    WMMEDIASUBTYPE_WMSP1, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject
    MEDIASUBTYPE_RAW_AAC1, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
    {6C737664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
    MEDIASUBTYPE_MP43, Mpeg43 Decoder DMO, CLSID_CMpeg43DecMediaObject
    MEDIASUBTYPE_MPEG1Payload, MPEG Video Decoder, CLSID_CMpegVideoCodec
    MEDIASUBTYPE_AVC1, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
    {20637664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
    {58564944-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_MP42, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
    MEDIASUBTYPE_MPEG_ADTS_AAC, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
    MEDIASUBTYPE_mpg4, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
    MEDIASUBTYPE_M4S2, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_m4s2, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_MP4S, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_mp4s, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_MPEG1Packet, MPEG Video Decoder, CLSID_CMpegVideoCodec
    {5634504D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    {7634706D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
    MEDIASUBTYPE_H264, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
    MEDIASUBTYPE_MPEG2_VIDEO, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
    MEDIASUBTYPE_WMVA, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_MSAUDIO1, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
    MEDIASUBTYPE_DVD_LPCM_AUDIO, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
    MEDIASUBTYPE_MPEG_LOAS, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
    Media Foundation Transforms
    [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\Transforms]
    <category>:
      <transform friendly name>, <transform CLSID>, <flags>, [<merit>, ]<file name>, <file version>
    Video Decoders:
      AMD D3D11 Hardware MFT Playback Decoder, {17796AEB-0F66-4663-B8FB-99CBEE0224CE}, 0x4, 8, AMDhwDecoder_64.dll, 1.00.0000.0001
      Microsoft MPEG Video Decoder MFT, {2D709E52-123F-49B5-9CBC-9AF5CDE28FB9}, 0x1, msmpeg2vdec.dll, 12.00.9200.16429
      DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}, 0x1, mfdvdec.dll, 6.02.9200.16384
      Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT, 0x1, mp4sdecd.dll, 6.02.9200.16496
      Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT, 0x1, msmpeg2vdec.dll, 12.00.9200.16429
      WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject, 0x1, wmvsdecd.dll, 6.02.9200.16384
      WMVideo Decoder MFT, CLSID_CWMVDecMediaObject, 0x1, wmvdecod.dll, 6.02.9200.16384
      MJPEG Decoder MFT, {CB17E772-E1CC-4633-8450-5617AF577905}, 0x1, mfmjpegdec.dll, 6.02.9200.16384
      Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject, 0x1, mp43decd.dll, 6.02.9200.16384
      Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject, 0x1, mpg4decd.dll, 6.02.9200.16384
    Video Encoders:
      AMD H.264 Hardware MFT Encoder, {ADC9BC80-0F41-46C6-AB75-D693D793597D}, 0x4, 8, AMDh264Enc64.dll, 1.00.0000.0001
      H264 Encoder MFT, {6CA50344-051A-4DED-9779-A43305165E35}, 0x1, mfh264enc.dll, 6.02.9200.16420
      WMVideo8 Encoder MFT, CLSID_CWMVXEncMediaObject, 0x1, wmvxencd.dll, 6.02.9200.16384
      WMVideo9 Encoder MFT, CLSID_CWMV9EncMediaObject, 0x1, wmvencod.dll, 6.02.9200.16384
      Microsoft MPEG-2 Video Encoder MFT, {E6335F02-80B7-4DC4-ADFA-DFE7210D20D5}, 0x2, msmpeg2enc.dll, 12.00.9200.16384
    Video Effects:
      Frame Rate Converter, CLSID_CFrameRateConvertDmo, 0x1, mfvdsp.dll, 6.02.9200.16384
      Resizer MFT, CLSID_CResizerDMO, 0x1, vidreszr.dll, 6.02.9200.16384
      VideoStabilization MFT, {51571744-7FE4-4FF2-A498-2DC34FF74F1B}, 0x1, MSVideoDSP.dll, 6.02.9200.16384
      Color Control, CLSID_CColorControlDmo, 0x1, mfvdsp.dll, 6.02.9200.16384
      Color Converter MFT, CLSID_CColorConvertDMO, 0x1, colorcnv.dll, 6.02.9200.16384
    Video Processor:
      Microsoft Video Processor MFT, {88753B26-5B24-49BD-B2E7-0C445C78C982}, 0x1, msvproc.dll, 12.00.9200.16420
    Audio Decoders:
      Microsoft Dolby Digital Plus Decoder MFT, {177C0AFE-900B-48D4-9E4C-57ADD250B3D4}, 0x1, MSAudDecMFT.dll, 6.02.9200.16384
      WMAudio Decoder MFT, CLSID_CWMADecMediaObject, 0x1, WMADMOD.DLL, 6.02.9200.16384
      Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT, 0x1, MSAudDecMFT.dll, 6.02.9200.16384
      GSM ACM Wrapper MFT, {4A76B469-7B66-4DD4-BA2D-DDF244C766DC}, 0x1, mfcore.dll, 12.00.9200.16451
      WMAPro over S/PDIF MFT, CLSID_CWMAudioSpdTxDMO, 0x1, WMADMOD.DLL, 6.02.9200.16384
      Microsoft MPEG Audio Decoder MFT, {70707B39-B2CA-4015-ABEA-F8447D22D88B}, 0x1, MSAudDecMFT.dll, 6.02.9200.16384
      WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject, 0x1, WMSPDMOD.DLL, 6.02.9200.16384
      G711 Wrapper MFT, {92B66080-5E2D-449E-90C4-C41F268E5514}, 0x1, mfcore.dll, 12.00.9200.16451
      IMA ADPCM ACM Wrapper MFT, {A16E1BFF-A80D-48AD-AECD-A35C005685FE}, 0x1, mfcore.dll, 12.00.9200.16451
      MP3 Decoder MFT, CLSID_CMP3DecMediaObject, 0x1, mp3dmod.dll, 6.02.9200.16384
      ADPCM ACM Wrapper MFT, {CA34FE0A-5722-43AD-AF23-05F7650257DD}, 0x1, mfcore.dll, 12.00.9200.16451
    Audio Encoders:
      MP3 Encoder ACM Wrapper MFT, {11103421-354C-4CCA-A7A3-1AFF9A5B6701}, 0x1, mfcore.dll, 12.00.9200.16451
      WM Speech Encoder DMO, CLSID_CWMSPEncMediaObject2, 0x1, WMSPDMOE.DLL, 6.02.9200.16384
      Microsoft MPEG-2 Audio Encoder MFT, {46A4DD5C-73F8-4304-94DF-308F760974F4}, 0x1, msmpeg2enc.dll, 12.00.9200.16384
      WMAudio Encoder MFT, CLSID_CWMAEncMediaObject, 0x1, WMADMOE.DLL, 6.02.9200.16384
      Microsoft AAC Audio Encoder MFT, {93AF0C51-2275-45D2-A35B-F2BA21CAED00}, 0x1, mfAACEnc.dll, 6.02.9200.16384
      Microsoft Dolby Digital Encoder MFT, {AC3315C9-F481-45D7-826C-0B406C1F64B8}, 0x1, msac3enc.dll, 6.02.9200.16384
    Audio Effects:
      AEC, CLSID_CWMAudioAEC, 0x1, mfwmaaec.dll, 6.02.9200.16384
      Resampler MFT, CLSID_CResamplerMediaObject, 0x1, resampledmo.dll, 6.02.9200.16384
    Multiplexers:
      Microsoft MPEG2 Multiplexer MFT, {AB300F71-01AB-46D2-AB6C-64906CB03258}, 0x2, mfmpeg2srcsnk.dll, 12.00.9200.16437
    Others:
      Microsoft H264 Video Remux (MPEG2TSToMP4) MFT, {05A47EBB-8BF0-4CBF-AD2F-3B71D75866F5}, 0x1, msmpeg2vdec.dll, 12.00.9200.16429
    Media Foundation Enabled Hardware Categories
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\HardwareMFT]
    EnableDecoders = 1
    EnableEncoders = 1
    EnableVideoProcessors = 1
    Media Foundation Byte Stream Handlers
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\ByteStreamHandlers]
    [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\MediaSources\Preferred]
    <file ext. or MIME type>, <handler CLSID>, <brief description>[, Preferred]
    .3g2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .3gp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .3gp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    .ac3, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred
    .adt, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    .adts, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    .asf, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    .avi, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred
    .dvr-ms, {65964407-A5D8-4060-85B0-1CCD63F768E2}, dvr-ms Byte Stream Handler, Preferred
    .dvr-ms, {A8721937-E2FB-4D7A-A9EE-4EB08C890B6E}, MF SBE Source ByteStreamHandler
    .ec3, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred
    .m2t, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .m2ts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .m4a, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .m4v, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .mod, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .mov, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .mp2v, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .mp3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    .mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .mp4v, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    .mpa, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    .mpeg, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .mpg, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .mts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .nsc, {B084785C-DDE0-4D30-8CA8-05A373E185BE}, NSC Byte Stream Handler, Preferred
    .sami, {7A56C4CB-D678-4188-85A8-BA2EF68FA10D}, SAMI Byte Stream Handler, Preferred
    .smi, {7A56C4CB-D678-4188-85A8-BA2EF68FA10D}, SAMI Byte Stream Handler, Preferred
    .tod, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .ts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .tts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .vob, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    .wav, {42C9B9F5-16FC-47EF-AF22-DA05F7C842E3}, WAV Byte Stream Handler, Preferred
    .wm, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    .wma, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    .wmv, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    .wtv, {65964407-A5D8-4060-85B0-1CCD63F768E2}, WTV Byte Stream Handler, Preferred
    audio/3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    audio/3gpp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    audio/aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    audio/aacp, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    audio/eac3, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred
    audio/L16, {3FFB3B8C-EB99-472B-8902-E1C1B05F07CF}, LPCM Byte Stream Handler, Preferred
    audio/mp3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    audio/mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    audio/mpa, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    audio/mpeg, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    audio/mpeg3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    audio/vnd.dlna.adts, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    audio/vnd.dolby.dd-raw, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred
    audio/wav, {42C9B9F5-16FC-47EF-AF22-DA05F7C842E3}, WAV Byte Stream Handler, Preferred
    audio/x-aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred
    audio/x-m4a, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    audio/x-mp3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    audio/x-mpeg, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred
    audio/x-ms-wma, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    audio/x-wav, {42C9B9F5-16FC-47EF-AF22-DA05F7C842E3}, WAV Byte Stream Handler, Preferred
    video/3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    video/3gpp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    video/avi, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred
    video/mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    video/mpeg, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    video/msvideo, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred
    video/vnd.dlna.mpeg-tts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred
    video/x-m4v, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
    video/x-ms-asf, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    video/x-ms-wm, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    video/x-ms-wmv, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred
    video/x-msvideo, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred
    Media Foundation Scheme Handlers
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\SchemeHandlers]
    [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\MediaSources\Preferred]
    <URL type>, <handler CLSID>, <brief description>[, Preferred]
    file:, {477EC299-1421-4BDD-971F-7CCB933F21AD}, File Scheme Handler, Preferred
    http:, {44CB442B-9DA9-49DF-B3FD-023777B16E50}, Http Scheme Handler
    http:, {9EC4B4F9-3029-45AD-947B-344DE2A249E2}, Urlmon Scheme Handler
    http:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    httpd:, {44CB442B-9DA9-49DF-B3FD-023777B16E50}, Http Scheme Handler, Preferred
    httpnd:, {2EEEED04-0908-4CDB-AF8F-AC5B768A34C9}, Drm Scheme Handler, Preferred
    https:, {37A61C8B-7F8E-4D08-B12B-248D73E9AB4F}, Secure Http Scheme Handler, Preferred
    httpsd:, {37A61C8B-7F8E-4D08-B12B-248D73E9AB4F}, Secure Http Scheme Handler, Preferred
    httpt:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    httpu:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    mcast:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    mms:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    ms-appdata:, {CFC81939-3886-4ACF-9692-DA58037AE716}, MsAppData Scheme Handler, Preferred
    ms-appx-web:, {8DB0224B-3D65-4F6F-8E12-BEB4B78B8974}, MsAppxWeb Scheme Handler, Preferred
    ms-appx:, {8DB0224B-3D65-4F6F-8E12-BEB4B78B8974}, MsAppx Scheme Handler, Preferred
    ms-winsoundevent:, {F79A6BF9-7415-4CF3-AE10-4559509ABC3C}, Sound Event Scheme Handler, Preferred
    rtsp:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    rtspt:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    rtspu:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    sdp:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred
    Preferred Media Foundation Transforms
    [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\Transforms\Preferred]
    <media subtype GUID>, [<transform friendly name>, ]<transform CLSID>
    MFAudioFormat_AAC, Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT
    MFAudioFormat_WMAudio_Lossless, WMAudio Decoder MFT, CLSID_CWMADecMediaObject
    MEDIASUBTYPE_MPG4, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject
    WMMEDIASUBTYPE_WMSP2, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject
    {3F40F4F0-5622-4FF8-B6D8-A17A584BEE5E}, Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT
    MFVideoFormat_WVC1, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    KSDATAFORMAT_SUBTYPE_ADPCM, ADPCM ACM Wrapper MFT, {CA34FE0A-5722-43AD-AF23-05F7650257DD}
    MFVideoFormat_DVHD, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}
    MFAudioFormat_MPEG, Microsoft MPEG Audio Decoder MFT, {70707B39-B2CA-4015-ABEA-F8447D22D88B}
    {00002000-0000-0010-8000-00AA00389B71}, Microsoft Dolby Digital Plus Decoder MFT, {177C0AFE-900B-48D4-9E4C-57ADD250B3D4}
    MFAudioFormat_WMAudioV9, WMAudio Decoder MFT, CLSID_CWMADecMediaObject
    MFVideoFormat_WMV2, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_DOLBY_DDPLUS, Microsoft Dolby Digital Plus Decoder MFT, {177C0AFE-900B-48D4-9E4C-57ADD250B3D4}
    {53314356-0000-0010-8000-00AA00389B71}, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    MFAudioFormat_MP3, MP3 Decoder MFT, CLSID_CMP3DecMediaObject
    MEDIASUBTYPE_mp42, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject
    MFVideoFormat_MSS1, WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject
    MEDIASUBTYPE_WVP2, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    MFVideoFormat_WMV1, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_WMVP, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    MFVideoFormat_WMV3, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    MEDIASUBTYPE_WMVR, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject
    KSDATAFORMAT_SUBTYPE_MULAW, G711 Wrapper MFT, {92B66080-5E2D-449E-90C4-C41F268E5514}
    MFVideoFormat_MJPG, MJPEG Decoder MFT, {CB17E772-E1CC-4633-8450-5617AF577905}
    MEDIASUBTYPE_mp43, Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject
    {00000031-0000-0010-8000-00AA00389B71}, GSM ACM Wrapper MFT, {4A76B469-7B66-4DD4-BA2D-DDF244C766DC}
    MFVideoFormat_DVSD, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}
    MFVideoFormat_MSS2, WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject
    MFAudioFormat_WMAudioV8, WMAudio Decoder MFT, CLSID_CWMADecMediaObject
    MFAudioFormat_MSP1, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject
    MEDIASUBTYPE_RAW_AAC1, Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT
    MFVideoFormat_DVSL, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}
    MFVideoFormat_MP43, Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject
    MFVideoFormat_DVC, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}
    {00000011-0000-0010-8000-00AA00389B71}, IMA ADPCM ACM Wrapper MFT, {A16E1BFF-A80D-48AD-AECD-A35C005685FE}
    MEDIASUBTYPE_MP42, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject
    MEDIASUBTYPE_mpg4, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject
    MFVideoFormat_M4S2, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    MEDIASUBTYPE_m4s2, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    MFVideoFormat_MP4S, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    MEDIASUBTYPE_mp4s, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    {33363248-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    {E06D802C-DB46-11CF-B4D1-00805F6CBBEA}, Microsoft Dolby Digital Plus Decoder MFT, {177C0AFE-900B-48D4-9E4C-57ADD250B3D4}
    MFVideoFormat_MP4V, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    {7634706D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT
    MFVideoFormat_H264, Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT
    MFVideoFormat_MPEG2, Microsoft MPEG Video Decoder MFT, {2D709E52-123F-49B5-9CBC-9AF5CDE28FB9

    Divx isn't a standard option, so you have downloaded some third party support for Divx. Try the latest version.

  • Audio problems in Flash Player and Firefox

    Hi everyone!
    I have a problem that has been plagueing me for nearly a year now, all audio in all videos i play in Firefox goes out of synch, the video will start ok then at around the two minute mark the audio starts to lag until it's completely left the visual playback behind, the only solution is to keep clicking the video back a few seconds to re-align the audio, this is temp as the audio will slowly drop out of synch again!
    This problem has been driving me crazy!
    It doesn't happen in Chrome or IE only Firefox. I have posted thread after thread on tech forums but nobody has yet been been able to help, i'm using the latest Firefox. the latest Flash Player (uninstalled and re-installed properly) all my drivers are bang up to date, all caches cleared all....in fact you name it iv'e done it!
    This was never an issue until about a year ago, nothing has been installed hardware wise and the only software installed has been updates for ongoing programmes!
    Help me Adobey wan kenobi, your my only hope!
    Windows Vista 32 bit
    Complete DX Diag below:
    System Information
    Time of this report: 1/5/2012, 11:43:35
           Machine name: HAL
       Operating System: Windows Vista™ Home Premium (6.0, Build 6002) Service Pack 2 (6002.vistasp2_gdr.111025-0338)
               Language: English (Regional Setting: English)
    System Manufacturer: To Be Filled By O.E.M.
           System Model: To Be Filled By O.E.M.
                   BIOS: Default System BIOS
              Processor: Intel(R) Core(TM)2 Duo CPU     E8500  @ 3.16GHz (2 CPUs), ~3.8GHz
                 Memory: 3070MB RAM
              Page File: 1119MB used, 5244MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
         DxDiag Version: 7.00.6002.18107 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
            Card name: NVIDIA GeForce 9600 GSO
         Manufacturer: NVIDIA
            Chip type: GeForce 9600 GSO
             DAC type: Integrated RAMDAC
           Device Key: Enum\PCI\VEN_10DE&DEV_0610&SUBSYS_00000000&REV_A2
       Display Memory: 2031 MB
    Dedicated Memory: 751 MB
        Shared Memory: 1279 MB
         Current Mode: 1280 x 720 (32 bit) (60Hz)
              Monitor: Generic PnP Monitor
          Driver Name: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
       Driver Version: 8.17.0012.8562 (English)
          DDI Version: 10
       BGRA Supported: Yes
    Driver Attributes: Final Retail
    Driver Date/Size: 10/15/2011 08:53:00, 13205312 bytes
          WHQL Logo'd: Yes
      WHQL Date Stamp:
    Device Identifier: {D7B71E3E-4550-11CF-C242-0C201CC2C535}
            Vendor ID: 0x10DE
            Device ID: 0x0610
            SubSys ID: 0x00000000
          Revision ID: 0x00A2
          Revision ID: 0x00A2
          Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
    Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
         DDraw Status: Enabled
           D3D Status: Enabled
           AGP Status: Enabled
    Sound Devices
                Description: Speakers (High Definition Audio Device)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_18491E01&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.00.6002.18005 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 4/11/2009 04:43:02, 236544 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Digital Output Device (SPDIF) (High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_18491E01&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.00.6002.18005 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 4/11/2009 04:43:02, 236544 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Microphone (High Definition Audio Device)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: HdAudio.sys
             Driver Version: 6.00.6002.18005 (English)
          Driver Attributes: Final Retail
              Date and Size: 4/11/2009 04:43:02, 236544 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
                Description: Line In (High Definition Audio Device)
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: HdAudio.sys
             Driver Version: 6.00.6002.18005 (English)
          Driver Attributes: Final Retail
              Date and Size: 4/11/2009 04:43:02, 236544 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: HID Keyboard Hot Keys
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x0E6A, 0x6001
            FF Driver: n/a
          Device Name: HID Keyboard Hot Keys
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x0E6A, 0x6001
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3A36
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 4/11/2009 04:43:16, 196096 bytes
    | Driver: usbd.sys, 1/21/2008 02:23:03, 5888 bytes
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x0E6A, 0x6001
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 4/11/2009 04:38:40, 17408 bytes
    | Driver: kbdclass.sys, 1/21/2008 02:23:23, 35384 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 1/21/2008 02:23:20, 54784 bytes
    | Driver: kbdclass.sys, 1/21/2008 02:23:23, 35384 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x06A3, 0x0CCC
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 1/21/2008 02:23:20, 15872 bytes
    | Driver: mouclass.sys, 1/21/2008 02:23:20, 34360 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 4/11/2009 06:32:52, 53224 bytes
    | Driver: sermouse.sys, 1/21/2008 02:23:20, 19968 bytes
    | Driver: mouclass.sys, 1/21/2008 02:23:20, 34360 bytes
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 38.2 GB
    Total Space: 152.6 GB
    File System: NTFS
          Model: MAXTOR STM3160215AS ATA Device
          Drive: D:
          Model: Optiarc DVD RW AD-7200S ATA Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.00.6002.18005 (English), 4/11/2009 04:39:17, 67072 bytes
    System Devices
         Name: Intel(R) ICH10 Family PCI Express Root Port 6 - 3A4A
    Device ID: PCI\VEN_8086&DEV_3A4A&SUBSYS_3A4A1849&REV_00\3&11583659&0&E5
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 4 - 3A46
    Device ID: PCI\VEN_8086&DEV_3A46&SUBSYS_3A461849&REV_00\3&11583659&0&E3
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 3 - 3A44
    Device ID: PCI\VEN_8086&DEV_3A44&SUBSYS_3A441849&REV_00\3&11583659&0&E2
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 2 - 3A42
    Device ID: PCI\VEN_8086&DEV_3A42&SUBSYS_3A421849&REV_00\3&11583659&0&E1
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
    Device ID: PCI\VEN_8086&DEV_3A40&SUBSYS_3A401849&REV_00\3&11583659&0&E0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_3A3E&SUBSYS_08881849&REV_00\3&11583659&0&D8
       Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:42, 561152 bytes
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
    Device ID: PCI\VEN_8086&DEV_3A3C&SUBSYS_3A3C1849&REV_00\3&11583659&0&D7
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:52, 39936 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
       Driver: C:\Windows\system32\hccoin.dll, 6.00.6000.16386 (English), 11/2/2006 09:46:05, 8704 bytes
       Driver: C:\Windows\system32\hcrstco.dll, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 15872 bytes
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
    Device ID: PCI\VEN_8086&DEV_3A3A&SUBSYS_3A3A1849&REV_00\3&11583659&0&EF
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:52, 39936 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
       Driver: C:\Windows\system32\hccoin.dll, 6.00.6000.16386 (English), 11/2/2006 09:46:05, 8704 bytes
       Driver: C:\Windows\system32\hcrstco.dll, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 15872 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
    Device ID: PCI\VEN_8086&DEV_3A39&SUBSYS_3A391849&REV_00\3&11583659&0&D2
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 23552 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
    Device ID: PCI\VEN_8086&DEV_3A38&SUBSYS_3A381849&REV_00\3&11583659&0&D1
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 23552 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
    Device ID: PCI\VEN_8086&DEV_3A37&SUBSYS_3A371849&REV_00\3&11583659&0&D0
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 23552 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
    Device ID: PCI\VEN_8086&DEV_3A36&SUBSYS_3A361849&REV_00\3&11583659&0&EA
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 23552 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
    Device ID: PCI\VEN_8086&DEV_3A35&SUBSYS_3A351849&REV_00\3&11583659&0&E9
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 23552 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
    Device ID: PCI\VEN_8086&DEV_3A34&SUBSYS_3A341849&REV_00\3&11583659&0&E8
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:03, 23552 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.00.6002.18005 (English), 4/11/2009 04:42:57, 226304 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.00.6002.18005 (English), 4/11/2009 04:43:16, 196096 bytes
         Name: Intel(R) ICH10 Family SMBus Controller - 3A30
    Device ID: PCI\VEN_8086&DEV_3A30&SUBSYS_3A301849&REV_00\3&11583659&0&FB
       Driver: n/a
         Name: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
    Device ID: PCI\VEN_8086&DEV_3A26&SUBSYS_3A261849&REV_00\3&11583659&0&FD
       Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:49, 14312 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:52, 43496 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:26, 19944 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:42, 109032 bytes
         Name: Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A20
    Device ID: PCI\VEN_8086&DEV_3A20&SUBSYS_3A201849&REV_00\3&11583659&0&FA
       Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:49, 14312 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:52, 43496 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:26, 19944 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:42, 109032 bytes
         Name: Intel(R) ICH10 LPC Interface Controller - 3A18
    Device ID: PCI\VEN_8086&DEV_3A18&SUBSYS_3A181849&REV_00\3&11583659&0&F8
       Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.00.6001.18000 (English), 1/21/2008 02:23:01, 16440 bytes
         Name: Intel(R) 4 Series Chipset PCI Express Root Port - 2E21
    Device ID: PCI\VEN_8086&DEV_2E21&SUBSYS_2E211849&REV_03\3&11583659&0&08
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: Intel(R) 4 Series Chipset Processor to I/O Controller - 2E20
    Device ID: PCI\VEN_8086&DEV_2E20&SUBSYS_2E201849&REV_03\3&11583659&0&00
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_244E1849&REV_90\3&11583659&0&F0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:55, 149480 bytes
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_197B&DEV_2368&SUBSYS_23681849&REV_00\4&2F320AFA&0&00E3
       Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:49, 14312 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:52, 43496 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:26, 19944 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.00.6002.18005 (English), 4/11/2009 06:32:42, 109032 bytes
         Name: Realtek RTL8168C(P)/8111C(P) Family PCI-E Gigabit Ethernet NIC (NDIS 6.0)
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_81681849&REV_02\4&7F30B43&0&00E5
       Driver: C:\Windows\system32\DRIVERS\Rtlh86.sys, 6.213.1110.2008 (English), 11/10/2008 12:26:00, 135680 bytes
       Driver: C:\Windows\system32\RtNicProp32.dll, 1.01.0716.2008 (English), 7/21/2008 05:08:40, 9728 bytes
         Name: NVIDIA GeForce 9600 GSO
    Device ID: PCI\VEN_10DE&DEV_0610&SUBSYS_00000000&REV_A2\4&26D0AE83&0&0008
       Driver: C:\Program Files\NVIDIA Corporation\Drs\dbInstaller.exe, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 192320 bytes
       Driver: C:\Program Files\NVIDIA Corporation\Drs\nvdrsdb.bin, 10/15/2011 08:53:00, 316496 bytes
       Driver: C:\Program Files\NVIDIA Corporation\license.txt, 10/22/2010 06:23:02, 15511 bytes
       Driver: C:\Windows\system32\DRIVERS\nvlddmkm.sys, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 10327360 bytes
       Driver: C:\Windows\system32\OpenCL.dll, 1.00.0000.0000 (English), 10/15/2011 08:53:00, 61248 bytes
       Driver: C:\Windows\system32\nvapi.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 2458432 bytes
       Driver: C:\Windows\system32\nvcompiler.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 17248576 bytes
       Driver: C:\Windows\system32\nvcuda.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 5578560 bytes
       Driver: C:\Windows\system32\nvcuvenc.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 2099520 bytes
       Driver: C:\Windows\system32\nvcuvid.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 2401088 bytes
       Driver: C:\Windows\system32\nvd3dum.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 13205312 bytes
       Driver: C:\Windows\system32\nvinfo.pb, 10/15/2011 08:53:00, 4359 bytes
       Driver: C:\Windows\system32\nvoglv32.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 18871616 bytes
       Driver: C:\Windows\system32\nvwgf2um.dll, 8.17.0012.8562 (English), 10/15/2011 08:53:00, 7041856 bytes
       Driver: C:\Windows\system32\nvdispco32.dll, 2.00.0018.0000 (English), 10/15/2011 08:53:00, 919872 bytes
       Driver: C:\Windows\system32\nvgenco32.dll, 2.00.0013.0000 (English), 10/15/2011 08:53:00, 877376 bytes
    DirectShow Filters
    DirectShow Filters:
    QuickTime Audio Decoder Filter,0x00600800,1,1,,
    WMAudio Decoder DMO,0x00800800,1,1,,
    WMAPro over S/PDIF DMO,0x00600800,1,1,,
    WMSpeech Decoder DMO,0x00600800,1,1,,
    MP3 Decoder DMO,0x00600800,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00600800,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    QuickTime Video Decoder Filter,0x00600800,1,1,,
    Mpeg43 Decoder DMO,0x00800001,1,1,,
    Mpeg4 Decoder DMO,0x00800001,1,1,,
    Full Screen Renderer,0x00200000,1,0,,6.06.6002.18158
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3538.0513
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3538.0513
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3538.0513
    RealPlayer Video Filter,0x00200000,1,1,rdsf3260.dll,12.00.0001.0647
    Multiple File Output,0x00200000,2,2,WMM2FILT.dll,
    WMT Black Frame Generator,0x00200000,1,1,WMM2FILT.dll,
    WMT Import Filter,0x00200000,0,1,WMM2FILT.dll,
    DV Muxer,0x00400000,0,0,,6.06.6001.18000
    Color Space Converter,0x00400001,1,1,,6.06.6002.18158
    WMT Interlacer,0x00200000,1,1,WMM2FILT.dll,
    WM ASF Reader,0x00400000,0,0,,11.00.6001.7000
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,11.00.6001.7000
    AVI Splitter,0x00600000,1,1,,6.06.6002.18158
    VGA 16 Color Ditherer,0x00400000,1,1,,6.06.6002.18158
    Microsoft MPEG-2 Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,11.00.6001.7110
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.6002.18363
    MACSReaderMP3 Filter,0x00200000,0,1,MACSReaderAVI.ax,1.00.2006.0804
    WMT Format Conversion,0x00200000,1,1,WMM2FILT.dll,
    9x8Resize,0x00200000,1,1,WMM2FILT.dll,
    DivX AAC Decoder,0x00800000,1,1,,
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.6002.18363
    WMT Virtual Source,0x00200000,0,1,WMM2FILT.dll,
    Microsoft TV Caption Decoder,0x00200001,1,0,MSTVCapn.dll,6.00.6001.18000
    MJPEG Decompressor,0x00600000,1,1,,6.06.6002.18158
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.00.6002.18242
    MPEG-I Stream Splitter,0x00600000,1,2,,6.06.6002.18158
    SAMI (CC) Parser,0x00400000,1,1,,6.06.6002.18158
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.6001.18000
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.6002.18363
    WMT AudioAnalyzer,0x00200000,1,1,WMM2FILT.dll,
    Microsoft MPEG-2 Video Encoder,0x00200000,2,0,msmpeg2enc.dll,11.00.6001.7000
    Stretch Video,0x00200000,1,1,WMM2FILT.dll,
    SelfMusicVideo Dump Filter,0x00200000,1,0,TG_Dump0708.DLL,8.01.2008.5200
    Internal Script Command Renderer,0x00800001,1,0,,6.06.6002.18158
    MPEG Audio Decoder,0x03680001,1,1,,6.06.6002.18158
    DV Splitter,0x00600000,1,2,,6.06.6001.18000
    Video Mixing Renderer 9,0x00200000,1,0,,6.06.6002.18158
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,11.00.6001.7000
    Frame Eater,0x00200000,1,1,WMM2FILT.dll,
    Allocator Fix,0x00200000,1,1,WMM2FILT.dll,
    ACM Wrapper,0x00600000,1,1,,6.06.6002.18158
    Video Renderer,0x00800001,1,0,,6.06.6002.18158
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.6002.18363
    Capture ASF Writer,0x00200000,0,0,WMM2FILT.dll,
    Line 21 Decoder,0x00600000,1,1,,6.06.6002.18005
    Video Port Manager,0x00600000,2,1,,6.06.6002.18158
    DivX H.264 Decoder,0x00800000,1,1,,
    Video Renderer,0x00400000,1,0,,6.06.6002.18158
    DivX Demux Filter,0x00600000,0,1,,
    Bitmap Generate,0x00200000,1,1,WMM2FILT.dll,
    Proxy Sink,0x00200000,1,0,WMM2FILT.dll,
    File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3538.0513
    DivX Decoder Filter,0x00800000,1,1,,
    Proxy Source,0x00200000,0,1,WMM2FILT.dll,
    WM ASF Writer,0x00400000,0,0,,11.00.6001.7000
    DivX Demux Filter (Unrestricted Edition),0x00600000,0,1,,
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.00.6001.18000
    WMT Sample Information Filter,0x00200000,1,1,WMM2FILT.dll,
    File writer,0x00200000,1,0,,6.06.6001.18000
    Bandisoft MPEG-1 Video Decoder,0xff800001,1,1,bdfilters.dll,1.00.0003.0012
    SpatialStereo Filter,0x00200000,1,1,3DAudio.ax,
    WAV Dest,0x00000000,0,0,,
    DVD Navigator,0x00200000,0,3,,6.06.6002.18005
    WMT DV Extract,0x00200000,1,1,WMM2FILT.dll,
    Overlay Mixer2,0x00200000,1,1,,6.06.6002.18005
    NEDFilter4Samsung Filter,0x00200000,0,1,NEDFilter4Samsung.ax,8.01.0000.0000
    AVI Draw,0x00600064,9,1,,6.06.6002.18158
    Microsoft MPEG-2 Audio Encoder,0x00200000,2,0,msmpeg2enc.dll,11.00.6001.7000
    WST Pager,0x00800000,1,1,WSTPager.ax,6.06.6001.18000
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.6002.18363
    Record Queue,0x00200000,1,1,WMM2FILT.dll,
    DV Video Decoder,0x00800000,1,1,,6.06.6001.18000
    RealPlayer Transcode Filter,0x00600000,0,0,rdsf3260.dll,12.00.0001.0647
    P3Sourcer,0x00600000,0,1,muzaf1.dll,1.00.0000.60410
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.6002.18005
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.6002.18005
    WMT Log Filter,0x00200000,1,1,WMM2FILT.dll,
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.6002.18496
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,11.00.6001.7000
    WMT Virtual Renderer,0x00200000,1,0,WMM2FILT.dll,
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.6002.18363
    Smart Tee,0x00200000,1,2,,6.06.6001.18000
    Overlay Mixer,0x00200000,0,0,,6.06.6002.18005
    RealPlayer Audio Filter,0x00200000,1,1,rdsf3260.dll,12.00.0001.0647
    AVI Decompressor,0x00600000,1,1,,6.06.6002.18158
    WMT MuxDeMux Filter,0x00200000,0,0,WMM2FILT.dll,
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.6001.18000
    AVI/WAV File Source,0x00400000,0,2,,6.06.6002.18158
    WMT Volume,0x00200000,1,1,WMM2FILT.dll,
    Wave Parser,0x00400000,1,1,,6.06.6002.18158
    MIDI Parser,0x00400000,1,1,,6.06.6002.18158
    Multi-file Parser,0x00400000,1,1,,6.06.6002.18158
    File stream renderer,0x00400000,1,1,,6.06.6002.18158
    WMT VIH2 Fix,0x00200000,1,1,WMM2FILT.dll,
    Microsoft MPEG-1/DD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,11.00.6001.7000
    AVI Mux,0x00200000,1,0,,6.06.6001.18000
    Bandisoft MPEG-1 Audio Decoder,0xff800001,1,1,bdfilters.dll,1.00.0003.0012
    Line 21 Decoder 2,0x00600002,1,1,,6.06.6002.18158
    File Source (Async.),0x00400000,0,1,,6.06.6002.18158
    File Source (URL),0x00400000,0,1,,6.06.6002.18158
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.6002.18005
    AudioRecorder WAV Dest,0x00200000,0,0,,6.00.6001.18000
    AudioRecorder Wave Form,0x00200000,0,0,,6.00.6001.18000
    SoundRecorder Null Renderer,0x00200000,0,0,,6.00.6001.18000
    MusicCity Audio Decoder,0x00200000,1,1,muzdecode.ax,1.00.0000.60207
    MusicCity MPEG4 Splitter Filter,0x00200000,1,1,muzmp4sp.ax,1.00.0000.60210
    MusicCity Windows Media Splitter,0x00200000,1,1,muzwmts.dll,1.00.0000.60208
    Infinite Pin Tee Filter,0x00200000,1,1,,6.06.6001.18000
    WMT Switch Filter,0x00200000,1,1,WMM2FILT.dll,
    BlueCode Audio Effect,0x00200000,1,1,muzeffect.ax,1.00.0000.60210
    MusicCity MPEG Splitter,0x00200000,0,1,muzmpgsp.ax,1.01.0007.0911
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.00.6002.18005
    Uncompressed Domain Shot Detection Filter,0x00200000,1,1,WMM2FILT.dll,
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.6002.18496
    MPEG Video Decoder,0x40000001,1,1,,6.06.6002.18158
    MusicCity OGG Splitter,0x00200000,1,1,muzoggsp.ax,1.00.0000.60207
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,6.00.6001.18000
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,,
    WMVideo9 Encoder DMO,0x00600800,1,1,,
    MSScreen 9 encoder DMO,0x00600800,1,1,,
    DV Video Encoder,0x00200000,0,0,,6.06.6001.18000
    MJPEG Compressor,0x00200000,0,0,,6.06.6002.18158
    Cinepak Codec by Radius,0x00200000,1,1,,6.06.6001.18000
    Intel IYUV codec,0x00200000,1,1,,6.06.6001.18000
    Intel IYUV codec,0x00200000,1,1,,6.06.6001.18000
    Bandi MJPEG Video Decoder,0x00200000,1,1,,6.06.6001.18000
    Bandi MPEG-1 Video Decoder,0x00200000,1,1,,6.06.6001.18000
    Microsoft RLE,0x00200000,1,1,,6.06.6001.18000
    Microsoft Video 1,0x00200000,1,1,,6.06.6001.18000
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,,
    WMAudio Encoder DMO,0x00600800,1,1,,
    IMA ADPCM,0x00200000,1,1,,6.06.6002.18158
    PCM,0x00200000,1,1,,6.06.6002.18158
    Microsoft ADPCM,0x00200000,1,1,,6.06.6002.18158
    GSM 6.10,0x00200000,1,1,,6.06.6002.18158
    Messenger Audio Codec,0x00200000,1,1,,6.06.6002.18158
    CCITT A-Law,0x00200000,1,1,,6.06.6002.18158
    CCITT u-Law,0x00200000,1,1,,6.06.6002.18158
    MP2,0x00200000,1,1,,6.06.6002.18158
    MPEG Layer-3,0x00200000,1,1,,6.06.6002.18158
    Audio Capture Sources:
    Microphone (High Definition Aud,0x00200000,0,0,,6.06.6001.18000
    Line In (High Definition Audio ,0x00200000,0,0,,6.06.6001.18000
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,,6.06.6002.18158
    Microsoft GS Wavetable Synth,0x00200000,1,0,,6.06.6002.18158
    WDM Streaming Capture Devices:
    HD Audio Mixed capture,0x00200000,1,1,,6.00.6001.18000
    WDM Streaming Rendering Devices:
    HD Audio Speaker,0x00200000,1,1,,6.00.6001.18000
    HD Audio SPDIF out,0x00200000,1,1,,6.00.6001.18000
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.6002.18496
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.6002.18496
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.6002.18496
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.6002.18496
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.6002.18005
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.6001.18000
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.6002.18496
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.6002.18496
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,0,EncDec.dll,6.06.6002.18528
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.6002.18528
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.6002.18528
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,6.00.6001.18000
    Audio Renderers:
    Speakers (High Definition Audio,0x00200000,1,0,,6.06.6002.18158
    Default DirectSound Device,0x00800000,1,0,,6.06.6002.18158
    Default WaveOut Device,0x00200000,1,0,,6.06.6002.18158
    Digital Output Device (SPDIF) (,0x00200000,1,0,,6.06.6002.18158
    DirectSound: Digital Output Device (SPDIF) (High Definition Audio Device),0x00200000,1,0,,6.06.6002.18158
    DirectSound: Speakers (High Definition Audio Device),0x00200000,1,0,,6.06.6002.18158

    Hi Chris,
    Hardware acceleration on or off makes absolutely no difference, i recently tried watching videos in a 100% fresh install and new profile in firefox (no addons) and the problem still occurs albiet a little slower in the new install, ie it takes a little longer to drop out of synch.
    There is a noticeable difference in framerate just before the problem occurs, like a very tiny hiccup, from that point on the audio gets left further and further behind, it's remedied by clicking back a few seconds on the video play bar but this is only temporary, lately i've even noticed it happening with live streams from the BBC, once again i must stress, this doesn't happen in Chrome or Opera or IE.

  • Serious performance issues and no sound???

    I just purchased a PM8M-V VIA P4M800 + VT8237 Chipset Basedd motherboard, for the primary reason that my EVGA GeForce 6600 GT 128MB video card was having random artifacts popping up all over the screen. My problem is my performance is very laggy (2 FPS in Battlefield 2...version 1.1.2554-356.0, lowest video quality settings, tried it at both 1024x768 and 800x600 and I've messed around with the desktop resolution); I opened up the task manager during battlefield 2 and it showed 100% PC usage, which never went down during the game. I set the video card AGP apeture size to 256 MB which helped the performance a tad. Also, the video swap memory I set to the lowest possible in the BIOS. Drivers for both the new mother board and the EVGA card are installed up to date. I ran Norton and Adaware, my comp is clean, and I also ran disk defrag. I haven't done disk cleanup, ETC but I figured something that small couldn't effect performance that bad. I saw something in the BIOS about changing the AGP Voltage, not sure if I should screw with this setting
    My second problem is I have no sound. My sound is a built in card and it reads, verbatum (from the Motherboard manual)
    AC97 link controller integrated in VT8237R
    Realtel ALC655 6-Channel Software audio codec
       - Compliant with AC97 v2.2 spec
    Again, the drivers are all up-to-date on the sound, as well
    Here again are my PC stats
    MSI PM8M-V motherboard
    VIA P4M800 + VT8237 Chipset Based
    Intel 2.0 GHZ Processor
    1 gig RAM
    EVGA GeForce 6600GT 128MB video
    40 GB hardrive which isn't full
    Upgraded power supply to handle all of the hardware
    The EVGA card isn't the problem; I'm positive of that because I already returned it to newegg.com and they sent me a new one that had the same problem. Any other suggestions? Again, performance is horrible and I have no sound, even with updated drivers
    please, reply to this post, or email me a solution at [email protected].  I'm desperate to use my $400 in computer stuff I bought
    If you want, I can email you the dxdiag.txt file, I've heard that can help greatly to see that info...

    dxdiag.txt part 2
    DirectX Components
       ddraw.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 292864 bytes
     ddrawex.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 24336 bytes
       dxapi.sys: 5.00.2180.0001 English Final Retail 5/8/2001 08:00:00 10064 bytes
        d3d8.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 1201152 bytes
     d3d8thk.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 7168 bytes
        d3d9.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 1703936 bytes
       d3dim.dll: 5.00.2180.0001 English Final Retail 12/12/2002 01:14:32 446224 bytes
    d3dim700.dll: 5.03.0001.0902 English Final Retail 5/30/2003 10:00:02 797184 bytes
      d3dref.dll: 5.00.2180.0001 English Final Retail 5/8/2001 08:00:00 93456 bytes
     d3dramp.dll: 5.00.2180.0001 English Final Retail 12/12/2002 01:14:32 591120 bytes
       d3drm.dll: 5.00.2134.0001 English Final Retail 12/12/2002 01:14:32 364816 bytes
      d3dxof.dll: 5.00.2135.0001 English Final Retail 12/12/2002 01:14:32 49424 bytes
    d3dpmesh.dll: 5.00.2134.0001 English Final Retail 12/12/2002 01:14:32 37648 bytes
       dplay.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 33040 bytes
      dplayx.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 230400 bytes
    dpmodemx.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 77824 bytes
     dpwsock.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 42768 bytes
    dpwsockx.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 79360 bytes
    dplaysvr.exe: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 28160 bytes
      dpnsvr.exe: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 16896 bytes
       dpnet.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 723968 bytes
    dpnlobby.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 3072 bytes
     dpnaddr.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 3072 bytes
     dpvoice.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 381952 bytes
    dpvsetup.exe: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 80896 bytes
      dpvvox.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 112128 bytes
      dpvacm.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 19968 bytes
    dpnhpast.dll: 5.03.0000.0901 English Final Retail 3/24/2003 10:00:02 32768 bytes
    dpnhupnp.dll: 5.03.0000.0901 English Final Retail 3/24/2003 10:00:02 68096 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 53520 bytes
      dinput.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 645120 bytes
     dinput8.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 664576 bytes
       dimap.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 44032 bytes
    diactfrm.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 459264 bytes
         joy.cpl: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 326144 bytes
       gcdef.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 206336 bytes
         pid.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 31744 bytes
    gameenum.sys: 5.00.2195.6655 English Final Retail 6/19/2003 12:05:04 9808 bytes
      dsound.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 381952 bytes
    dsound3d.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 1294336 bytes
      dswave.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 18432 bytes
       dsdmo.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 186880 bytes
    dsdmoprp.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 491520 bytes
      dmusic.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 122880 bytes
      dmband.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 27136 bytes
    dmcompos.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 58368 bytes
       dmime.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 181248 bytes
    dmloader.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 33280 bytes
     dmstyle.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 98816 bytes
     dmsynth.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 100864 bytes
    dmscript.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 76800 bytes
       dx7vb.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 602624 bytes
       dx8vb.dll: 5.03.0001.0902 English Final Retail 5/30/2003 10:00:02 1189888 bytes
     dxdiagn.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 1769472 bytes
       mfc40.dll: 4.01.0000.6140 English Final Retail 5/8/2001 08:00:00 924432 bytes
       mfc42.dll: 6.00.9586.0000 English Beta Retail 6/19/2003 12:05:04 1015859 bytes
     wsock32.dll: 5.00.2195.6603 English Final Retail 6/19/2003 12:05:04 21776 bytes
    amstream.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 64512 bytes
     devenum.dll: 6.05.0001.0902 English Final Retail 5/30/2003 10:00:02 132608 bytes
      dxmasf.dll: 6.04.0009.1131 English Final Retail 3/2/2005 07:38:52 498717 bytes
    mciqtz32.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 34304 bytes
     mpg2splt.ax: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 136192 bytes
       msdmo.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 13312 bytes
      encapi.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 18944 bytes
        qasf.dll: 9.00.0000.2980 English Final Retail 12/11/2002 18:34:40 241664 bytes
        qcap.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 257024 bytes
         qdv.dll: 6.05.0001.0904 English Final Retail 7/9/2004 05:27:28 316928 bytes
        qdvd.dll: 6.05.0001.0904 English Final Retail 7/9/2004 05:27:28 470528 bytes
       qedit.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 1798144 bytes
    qedwipes.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 733184 bytes
      quartz.dll: 6.05.0001.0907 English Final Retail 8/30/2005 09:14:00 1227776 bytes
     strmdll.dll: 4.01.0000.3928 English Final Retail 6/19/2003 12:05:04 246544 bytes
     iac25_32.ax: 2.00.0005.0053 English Final Retail 5/8/2001 08:00:00 199680 bytes
      ir41_32.ax: 4.51.0016.0003 English Final Retail 5/8/2001 08:00:00 848384 bytes
     ir41_qc.dll: 4.30.0062.0002 English Final Retail 5/8/2001 08:00:00 120320 bytes
    ir41_qcx.dll: 0.00.0000.0000 English Final Retail 5/8/2001 08:00:00 338432 bytes
     ir50_32.dll: 5.2562.0015.0055 English Final Retail 5/8/2001 08:00:00 755200 bytes
     ir50_qc.dll: 5.00.0063.0048 English Final Retail 5/8/2001 08:00:00 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English Final Retail 5/8/2001 08:00:00 183808 bytes
       ivfsrc.ax: 5.10.0002.0051 English Final Retail 5/8/2001 08:00:00 154624 bytes
    mswebdvd.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 324096 bytes
          ks.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 130304 bytes
      ksproxy.ax: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 117248 bytes
      ksuser.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 4096 bytes
      stream.sys: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 48512 bytes
    mspclock.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 5248 bytes
       mspqm.sys: 5.00.2134.0001 English Final Retail 9/25/1999 11:36:32 4816 bytes
     mskssrv.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 7424 bytes
      swenum.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 4096 bytes
       mstee.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 5504 bytes
     bdaplgin.ax: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:04 16896 bytes
      bdasup.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:04 11392 bytes
      msdvbnp.ax: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:18 52224 bytes
    psisdecd.dll: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:34 354816 bytes
     psisrndr.ax: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:36 30208 bytes
       ipsink.ax: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:06 14848 bytes
    mpeg2data.ax: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:12 57856 bytes
      ndisip.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:30 10112 bytes
         mpe.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:10 15104 bytes
    streamip.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:40 14976 bytes
    msvidctl.dll: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:08 480256 bytes
        slip.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:38 10880 bytes
    nabtsfec.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:28 83968 bytes
    ccdecode.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:06 16384 bytes
      vbisurf.ax: 5.00.2157.0001 English Final Retail 5/8/2001 08:00:00 29968 bytes
       msyuv.dll: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:26 16896 bytes
     kstvtune.ax: 5.03.0001.0904 English Final Retail 7/19/2004 17:19:30 285696 bytes
       ksxbar.ax: 5.03.0001.0902 English Final Retail 7/9/2004 03:58:10 39424 bytes
     kswdmcap.ax: 5.03.0000.0900 English Final Retail 7/9/2004 03:59:26 226304 bytes
    wstcodec.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:44 18688 bytes
    wstdecod.dll: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:48 47104 bytes
        msdv.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:14 56832 bytes
    DirectShow Filters
    WDM Streaming VBI Codecs:
    NABTS/FEC VBI Codec,0x00200000,2,1,,5.03.0000.0900
    CC Decoder,0x00200000,2,1,,5.03.0000.0900
    WST Codec,0x00200000,1,1,,5.03.0000.0900
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,,
    WMSpeech Decoder DMO,0x00600800,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00800001,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    Mpeg43 Decoder DMO,0x00800001,1,1,,
    Mpeg4 Decoder DMO,0x00800001,1,1,,
    DivX Decoder Filter,0x00800000,1,1,divxdec.ax,5.02.0001.1335
    RTP Source Filter,0x00200000,0,1,dxmrtp.dll,5.00.2195.6611
    RTP Render Filter,0x00200000,1,0,dxmrtp.dll,5.00.2195.6611
    VP6 Decompressor,0x00800000,1,1,vp6dec.ax,6.04.0002.0000
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    Vorbis Decoder,0x00600000,1,1,OggDS.dll,0.09.0009.0005
    ffdshow MPEG-4 Video Decoder,0xff800001,2,1,ffdshow.ax,1.00.0002.0024
    Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.0001.0907
    CoreVorbis Audio Decoder,0x00800000,1,1,CoreVorbis.ax,1.01.0000.0079
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.00.0002.0024
    3ivx D4 Video Decoder,0x00800000,1,1,3ivxDSDecoder.ax,4.05.0001.0030
    Nero Scene Detector 2,0x00200000,2,0,NeSceneDetector.ax,1.00.0000.0007
    ffdshow Audio Decoder,0x3fffffff,1,1,ffdshow.ax,1.00.0002.0024
    DV Muxer,0x00400000,0,0,qdv.dll,6.05.0001.0904
    3ivx D4 Media Muxer,0x00200000,1,1,3ivxDSMediaMux.ax,4.05.0001.0030
    Nero Digital Audio Decoder,0x00600000,1,1,NeAudio.ax,1.00.0004.0037
    DV Scenes,0x00200000,1,1,NVDV.dll,
    Color Space Converter,0x00400001,1,1,quartz.dll,6.05.0001.0907
    WM ASF Reader,0x00400000,0,0,qasf.dll,9.00.0000.2980
    Intel RTP SPH for G.711/G.723.1,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    Nero Digital Null Renderer,0x00200000,1,0,NeNDMux.ax,2.00.0000.0008
    AVI Splitter,0x00600000,1,1,quartz.dll,6.05.0001.0907
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.0001.0907
    Indeo® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
    Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,4.01.0000.3917
    PCM Silence Suppressor,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.0001.0900
    Nero Digital File Writer,0x00200000,1,0,NeNDMux.ax,2.00.0000.0008
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.0001.0907
    Indeo® video 5.10 Decompression Filter,0x00640000,1,1,ir50_32.dll,5.2562.0015.0055
    H261 Decode Filter,0x00200000,1,1,h261_32.ax,5.00.2195.6611
    Nero Mpeg Audio Encoder,0x00200000,1,1,NeAudioEnc.ax,1.00.0000.0004
    CoreCodec DynEQ,0x00200000,1,1,dyneq.cll,1.00.0002.0000
    H263 Decode Filter,0x00200000,1,1,h263_32.ax,5.00.2195.6611
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.0001.0907
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.09.0000.0311
    Nero Audio Stream Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    Intel RTP Demux Filter,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.0001.0900
    Nero Digital Muxer,0x00200000,2,1,NeNDMux.ax,2.00.0000.0008
    CoreCodec Audio Source,0x00600000,0,1,ccaudiosource.cll,0.05.0000.1150
    Intel RTP SPH for Generic Audio,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
    Nero QuickTime(tm) Video Decoder,0x00400000,1,1,NeQTDec.ax,1.00.0000.0004
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.0001.0907
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.0001.0907
    WavPack Audio Decoder,0x00600000,1,1,WavPackDSDecoder.ax,1.00.0003.0431
    File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,9.00.0000.2980
    Nero Format Converter,0x00200000,1,1,NeroFormatConv.ax,1.00.0000.0050
    DV Splitter,0x00600000,1,2,qdv.dll,6.05.0001.0904
    Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,3.00.0000.3433
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.05.0001.0907
    CoreFLAC Audio Source,0x00600000,0,0,CoreFLACDecoder.ax,0.04.0000.0046
    3ivx D4 Media Splitter,0x00800000,1,1,3ivxDSMediaSplitter.ax,4.05.0001.0030
    Haali Media Splitter,0x00600001,0,1,splitter.ax,
    Nero ES Video Reader,0x00600000,0,1,NDParser.ax,2.00.0002.0034
    CoreFLAC Audio Decoder,0x00600000,1,1,CoreFLACDecoder.ax,0.04.0000.0046
    DV Source Filter,0x00400000,0,1,NVDV.dll,
    Nero Audio CD Filter,0x00200000,0,1,NeAudCD.ax,1.00.0000.0001
    Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASX file Parser,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,9.00.0000.2980
    NSC file Parser,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    XviD MPEG-4 Video Decoder,0xff800000,1,1,xvid.ax,
    File Source (Monkey Audio),0x00400000,0,1,MonkeySource.ax,
    3ivx D4 Audio Decoder,0x00600000,1,1,3ivxDSAudioDecoder.ax,4.05.0001.0030
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.0001.0907
    Windows Media source filter,0x00600000,0,2,wmpasf.dll,9.00.0000.2980
    Video Renderer,0x00800001,1,0,quartz.dll,6.05.0001.0907
    Nero DVD Navigator,0x00600000,0,4,NeDVD.ax,2.01.0001.0039
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.0001.0904
    Video Port Manager,0x00600000,2,1,quartz.dll,6.05.0001.0907
    WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.0000.0900
    Video Renderer,0x00400000,1,0,quartz.dll,6.05.0001.0907
    Nero Audio Sample Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    Nero Vcd Navigator,0x00600000,0,2,NeVcd.ax,1.02.0000.0020
    DivX Decoder Filter,0xff800000,1,1,divxdec.ax,5.02.0001.1335
    Nero Audio Processor,0x00200000,1,1,NeAudioConv.ax,1.01.0000.0008
    WM ASF Writer,0x00400000,0,0,qasf.dll,9.00.0000.2980
    CoreCodec WPW,0x00200000,1,1,wawrap.cll,8.00.0000.0000
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.00.2157.0001
    Nero Video Stream Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    File writer,0x00200000,1,0,qcap.dll,6.05.0001.0900
    RadLight MPC DirectShow Filter,0x00600000,0,1,MPCDec.ax,1.00.0000.0003
    Vorbis Encoder,0x00200000,1,1,OggDS.dll,0.09.0009.0005
    Ogg Multiplexer,0x00400000,1,1,OggDS.dll,0.09.0009.0005
    DirectVobSub,0x00200000,2,1,vsfilter.dll,1.00.0001.0002
    RIFF/CDXA Source,0x00400000,0,1,xcdsrc.ax,8.01.0000.0000
    DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,1.00.0001.0002
    ffdshow VFW decoder helper,0x00200000,2,1,ffdshow.ax,1.00.0002.0024
    DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.0001.0904
    Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.0001.0904
    Haali Matroska Muxer,0x00200000,1,0,splitter.ax,
    Cutlist File Source,0x00200000,0,1,qcut.dll,6.01.0009.0726
    AC3Filter,0x40000000,1,1,ac3filter.ax,1.00.0001.0000
    AVI Draw,0x00600064,9,1,quartz.dll,6.05.0001.0907
    .RAM file Parser,0x00600000,1,0,wmpasf.dll,9.00.0000.2980
    Nero File Source / Splitter,0x00600000,0,3,NeFSource.ax,1.00.0004.0004
    Nero Digital Audio Encoder,0x00200000,1,2,NeNDAud.ax,2.00.0000.0008
    G.711 Codec,0x00200000,1,1,g711codc.ax,5.00.2143.0001
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.0001.0900
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.0001.0904
    Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
    Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,9.00.0000.2980
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.00.0002.0024
    CoreCodec CDDA Source,0x00600000,0,1,cddasource.cll,0.08.0000.0104
    ASF DIB Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF ACM Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF ICM Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF URL Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    Nero Video Processor,0x00200000,1,1,NeroVideoProc.ax,1.00.0000.0071
    Nero Video Decoder,0x00600000,2,2,NeVideo.ax,2.00.0002.0026
    SampleGrabber,0x00200000,1,1,qedit.dll,6.05.0001.0900
    Null Renderer,0x00200000,1,0,qedit.dll,6.05.0001.0900
    VP7 Decompressor,0x00800000,1,1,vp7dec.ax,7.00.0008.0000
    MPEG-2 Sections and Tables,0x005fffff,1,0,mpeg2data.ax,6.05.0001.0900
    IVF source filter,0x00600000,0,1,ivfsrc.ax,5.10.0002.0051
    H263 Encode Filter,0x00200000,1,1,h263_32.ax,5.00.2195.6611
    Smart Tee,0x00200000,1,2,qcap.dll,6.05.0001.0900
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.0001.0904
    Nero Scene Detector,0x00200000,1,0,NeSceneDetector.ax,1.00.0000.0007
    Microsoft PCM Audio Mixer,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    RealPlayer Audio Filter,0x00200000,1,1,rdsf3260.dll,6.00.0012.1208
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.0001.0907
    CoreCodec Subtitles Dispatcher,0x00200000,1,0,subdispatch.cll,1.00.0000.0003
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.0001.0907
    Intel RTP RPH for G.711/G.723.1,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.0001.0907
    Wave Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    MIDI Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    Lyric Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    File stream renderer,0x00400000,1,1,quartz.dll,6.05.0001.0907
    XML Playlist,0x00400000,1,0,wmpasf.dll,9.00.0000.2980
    Nero File Source,0x00200000,0,1,NeFileSrc.ax,1.00.0000.0006
    Nero QuickTime(tm) Audio Decoder,0x00400000,1,1,NeQTDec.ax,1.00.0000.0004
    WavPack Audio Splitter,0x00600000,1,1,WavPackDSSplitter.ax,1.00.0003.0277
    Nero DVD Decoder,0x00600000,2,2,NeVideo.ax,2.00.0002.0026
    Nero Digital Parser,0x00600000,0,3,NDParser.ax,2.00.0002.0034
    AVI Mux,0x00200000,1,0,qcap.dll,6.05.0001.0900
    CyberLink QuickTime Source Filter,0x00200000,0,2,QuickTime.ax,1.00.0000.1016
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.0001.0907
    File Source (Async.),0x00400000,0,1,quartz.dll,6.05.0001.0907
    File Source (URL),0x00400000,0,1,quartz.dll,6.05.0001.0907
    Nero Frame Capture,0x00200000,1,1,NeCapture.ax,1.04.0000.0009
    Intel RTP SPH for H.263/H.261,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    Intel RTP RPH for H.263/H.261,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    Intel RTP RPH for Generic Audio,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    H261 Encode Filter,0x00200000,1,1,h261_32.ax,5.00.2195.6611
    Ogg Splitter,0x00600000,1,1,OggDS.dll,0.09.0009.0005
    Nero Video Sample Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    Nero Digital Video Encoder,0x00200000,1,2,NeNDVid.ax,2.00.0000.0008
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.0001.0900
    BDA MPEG2 Transport Information Filter,0x00200000,1,0,psisrndr.ax,6.05.0001.0900
    QT Decompressor,0x00600000,1,1,quartz.dll,6.05.0001.0907
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.0001.0907
    Indeo® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003
    Indeo® video 4.4 Compression Filter,0x00200000,1,1,ir41_32.ax,4.51.0016.0003
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.0000.0900
    WDM Streaming Data Transforms:
    Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.0000.0900
    Microsoft DirectMusic SW Synth (WDM),0x00200000,1,1,,5.03.0000.0900
    Video Compressors:
    WMVideo9 Encoder DMO,0x00600800,1,1,,
    MSScreen 9 encoder DMO,0x00600800,1,1,,
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.0001.0904
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.00.0002.0024
    Indeo® video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.0001.0907
    Nero Digital Video Encoder,0x00200000,1,2,NeNDVid.ax,2.00.0000.0008
    3ivx D4 4.5.1 Pro Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.0001.0900
    DivX® 5.2.1 Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    ffdshow Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Intel Indeo® Video 4.5,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft MPEG-4 Video Codec V2,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft MPEG-4 Video Codec V3,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft MPEG-4 Video Codec V1,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP310x00200000,1,1,qcap.dll,6.05.0001.0900
    VP60® Simple Profile ,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP61® Advanced Profile,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP62® Heightened Sharpness Profile,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP70® General Profile,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft Windows Media Video 9,0x00200000,1,1,qcap.dll,6.05.0001.0900
    XviD MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,,
    WMAudio Encoder DMO,0x00600800,1,1,,
    Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
    Vorbis Encoder,0x00200000,1,1,OggDS.dll,0.09.0009.0005
    Nero Audio Encoder,0x00200000,1,1,NeAudioEnc.ax,1.00.0000.0004
    IAC2,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie CELP 4.8kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie SBC 8kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie SBC 12kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie SBC 16kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    ffdshow Audio Decoder,0x00200000,1,1,quartz.dll,6.05.0001.0907
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.0001.0907
    PCM,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.0001.0907
    DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.0001.0907
    GSM 6.10,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.0001.0907
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.0001.0907
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.0001.0907
    AC-3 ACM Decompressor,0x00200000,1,1,quartz.dll,6.05.0001.0907
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Audio Capture Sources:
    Realtek AC97 Audio,0x00200000,0,0,qcap.dll,6.05.0001.0900
    3ivx Filters:
    3ivx D4 Audio Decoder,0x00600000,1,1,3ivxDSAudioDecoder.ax,4.05.0001.0030
    3ivx D4 Media Muxer,0x00200000,1,1,3ivxDSMediaMux.ax,4.05.0001.0030
    3ivx D4 Media Splitter,0x00800000,1,1,3ivxDSMediaSplitter.ax,4.05.0001.0030
    3ivx D4 Video Decoder,0x00800000,1,1,3ivxDSDecoder.ax,4.05.0001.0030
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.0001.0907
    Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.0001.0907
    WDM Streaming Capture Devices:
    Realtek AC97 Audio,0x00200000,3,3,,5.03.0000.0900
    Raw Channel Access Capture/Render,0x00200000,1,1,,5.03.0000.0900
    WDM Streaming Rendering Devices:
    Realtek AC97 Audio,0x00200000,3,3,,5.03.0000.0900
    Raw Channel Access Capture/Render,0x00200000,1,1,,5.03.0000.0900
    BDA Rendering Filters:
    BDA IP Sink,0x00200000,1,1,,5.03.0000.0900
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    Microsoft DVBC Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    Microsoft DVBS Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    Microsoft DVBT Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,1,0,psisrndr.ax,6.05.0001.0900
    MPEG-2 Sections and Tables,0x00600000,1,0,mpeg2data.ax,6.05.0001.0900
    WDM Streaming Mixer Devices:
    Microsoft Kernel Audio Mixer,0x00200000,2,2,,5.03.0000.0900
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.0000.0900
    Audio Renderers:
    Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.0001.0907
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.0001.0907
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.0001.0907
    DirectSound: Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.0001.0907
    WDM Streaming System Devices:
    Realtek AC97 Audio,0x00200000,14,2,,5.03.0000.0900
    BDA Receiver Components:
    BDA Slip De-Framer,0x00600000,1,1,,5.03.0000.0900
    BDA MPE Filter,0x00600000,1,1,,5.03.0000.0900

  • Video Driver for Hp 15-r250tu laptop

    Hi,
    I just purchased this new laptop and installed Windows 7..unfortunately I am not getting the video driver for this product. Not even in Hp's Drivers section..Feeling so helpless.. What I have is the standard vga driver now.. With this driver the picture quality is very poor...
    Product Model: Hp 15-r250tu
    Product Number: L2Z89PA
    Given Below the information of DxDiag:
    System Information
    Time of this report: 4/13/2015, 22:41:11
           Machine name: SWEETY-PC
       Operating System: Windows 7 Ultimate 32-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.150202-1526)
               Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
           System Model: HP 15 Notebook PC
                   BIOS: Default System BIOS
              Processor: Intel(R) Pentium(R) CPU  N3540  @ 2.16GHz (4 CPUs), ~2.2GHz
                 Memory: 4096MB RAM
    Available OS Memory: 1940MB RAM
              Page File: 1307MB used, 2571MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
     System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: Standard VGA Graphics Adapter
           Manufacturer: (Standard display types)
              Chip type: Intel(R) VLV Mobile/Desktop Graphics Chipset Accelerated VGA BIOS
               DAC type: 8 bit
             Device Key: Enum\PCI\VEN_8086&DEV_0F31&SUBSYS_2213103C&REV_0E
         Display Memory: n/a
       Dedicated Memory: n/a
          Shared Memory: n/a
           Current Mode: 1366 x 768 (32 bit) (1Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model:
             Monitor Id:
            Native Mode:
            Output Type:
            Driver Name: vga
    Driver File Version: 6.01.7600.16385 (English)
         Driver Version: 6.1.7600.16385
            DDI Version: unknown
           Driver Model: unknown
      Driver Attributes: Final Retail
       Driver Date/Size: 7/14/2009 04:55:51, 10752 bytes
            WHQL Logo'd: n/a
        WHQL Date Stamp: n/a
      Device Identifier: {D7B78E66-4C71-11CF-8D33-A31FA0C2CB35}
              Vendor ID: 0x8086
              Device ID: 0x0F31
              SubSys ID: 0x2213103C
            Revision ID: 0x000E
     Driver Strong Name: Unknown
         Rank Of Driver: Unknown
            Video Accel:
          Deinterlace Caps: n/a
           D3D9 Overlay: n/a
                DXVA-HD: n/a
           DDraw Status: Not Available
             D3D Status: Not Available
             AGP Status: Not Available
    Sound Devices
                Description: Speaker/HP (Realtek High Definition Audio)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0282&SUBSYS_103C2213&​REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHDA.sys
             Driver Version: 6.00.0001.7246 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: n/a
              Date and Size: 5/14/2014 18:37:38, 3086040 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0x0
        Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Microphone (Realtek High Definition Audio)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: RTKVHDA.sys
             Driver Version: 6.00.0001.7246 (English)
          Driver Attributes: Final Retail
              Date and Size: 5/14/2014 18:37:38, 3086040 bytes
                  Cap Flags: 0x0
               Format Flags: 0x0
                Description: Stereo Mix (Realtek High Definition Audio)
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: RTKVHDA.sys
             Driver Version: 6.00.0001.7246 (English)
          Driver Attributes: Final Retail
              Date and Size: 5/14/2014 18:37:38, 3086040 bytes
                  Cap Flags: 0x0
               Format Flags: 0x0
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    Gameport Devices
    PS/2 Devices
    Disk & DVD/CD-ROM Drives
          Drive: C:
     Free Space: 92.7 GB
    Total Space: 118.9 GB
    File System: NTFS
          Model: HGST HTS545050A7E680 ATA Device
          Drive: D:
     Free Space: 111.2 GB
    Total Space: 119.2 GB
    File System: NTFS
          Model: HGST HTS545050A7E680 ATA Device
          Drive: E:
     Free Space: 236.7 GB
    Total Space: 238.5 GB
    File System: NTFS
          Model: HGST HTS545050A7E680 ATA Device
          Drive: F:
          Model: hp DVDRW  GUB0N ATA Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), 11/20/2010 14:08:10, 108544 bytes
    System Devices
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series PCI Express - Root Port 4 - 0F4E
    Device ID: PCI\VEN_8086&DEV_0F4E&SUBSYS_2213103C&REV_0E\3&115​83659&0&E3
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 18:00:06, 153984 bytes
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series Platform Control Unit - LPC: Bridge to Intel Legacy Block - 0F1C
    Device ID: PCI\VEN_8086&DEV_0F1C&SUBSYS_2213103C&REV_0E\3&115​83659&0&F8
       Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 06:50:43, 13888 bytes
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series PCI Express - Root Port 3 - 0F4C
    Device ID: PCI\VEN_8086&DEV_0F4C&SUBSYS_2213103C&REV_0E\3&115​83659&0&E2
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 18:00:06, 153984 bytes
         Name: Intel(R) Trusted Execution Engine Interface
    Device ID: PCI\VEN_8086&DEV_0F18&SUBSYS_2213103C&REV_0E\3&115​83659&0&D0
       Driver: n/a
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series PCI Express - Root Port 2 - 0F4A
    Device ID: PCI\VEN_8086&DEV_0F4A&SUBSYS_2213103C&REV_0E\3&115​83659&0&E1
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 18:00:06, 153984 bytes
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series Platform Control Unit - SMBus Port - 0F12
    Device ID: PCI\VEN_8086&DEV_0F12&SUBSYS_2213103C&REV_0E\3&115​83659&0&FB
       Driver: n/a
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series PCI Express - Root Port 1 - 0F48
    Device ID: PCI\VEN_8086&DEV_0F48&SUBSYS_2213103C&REV_0E\3&115​83659&0&E0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 18:00:06, 153984 bytes
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_0F04&SUBSYS_2213103C&REV_0E\3&115​83659&0&D8
       Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/20/2010 15:29:29, 108544 bytes
         Name: Intel(R) USB 3.0 eXtensible Host Controller
    Device ID: PCI\VEN_8086&DEV_0F35&SUBSYS_2213103C&REV_0E\3&115​83659&0&A0
       Driver: C:\Windows\system32\DRIVERS\iusb3xhc.sys, 3.00.0004.0065 (English), 1/27/2015 08:32:42, 808720 bytes
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series SoC Transaction Router - 0F00
    Device ID: PCI\VEN_8086&DEV_0F00&SUBSYS_2213103C&REV_0E\3&115​83659&0&00
       Driver: n/a
         Name: Realtek RTL8723BE 802.11 b/g/n Wi-Fi Adapter
    Device ID: PCI\VEN_10EC&DEV_B723&SUBSYS_2231103C&REV_00\4&1B8​7141A&0&00E1
       Driver: C:\Windows\system32\DRIVERS\rtwlane.sys, 2013.08.0915.2014 (English), 10/8/2014 04:10:50, 3045080 bytes
       Driver: C:\Windows\system32\drivers\vwifibus.sys, 6.01.7600.16385 (English), 7/14/2009 05:22:02, 19968 bytes
         Name: Standard VGA Graphics Adapter
    Device ID: PCI\VEN_8086&DEV_0F31&SUBSYS_2213103C&REV_0E\3&115​83659&0&10
       Driver: C:\Windows\system32\DRIVERS\vgapnp.sys, 6.01.7600.16385 (English), 7/14/2009 04:55:49, 26112 bytes
         Name: Realtek PCIe FE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8136&SUBSYS_2213103C&REV_07\4&3A7​ACA6&0&00E3
       Driver: n/a
         Name: Intel(R) Pentium(R) processor N- and J-series / Intel(R) Celeron(R) processor N- and J-series AHCI - 0F23
    Device ID: PCI\VEN_8086&DEV_0F23&SUBSYS_2213103C&REV_0E\3&115​83659&0&98
       Driver: C:\Windows\system32\DRIVERS\msahci.sys, 6.01.7601.17514 (English), 11/20/2010 18:00:01, 28032 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (English), 7/14/2009 06:49:03, 42560 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 06:56:15, 21584 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7601.17514 (English), 11/20/2010 17:59:12, 132992 bytes
         Name: Realtek PCIE CardReader
    Device ID: PCI\VEN_10EC&DEV_5229&SUBSYS_2213103C&REV_01\4&2FA​B164D&0&00E2
       Driver: C:\Windows\system32\DRIVERS\RtsP2Stor.sys, 6.03.9600.29084 (English), 11/6/2014 17:07:10, 222424 bytes
       Driver: C:\Windows\system32\RsCRIcon.dll, 1.10.0000.0000 (English), 1/27/2014 13:39:40, 9889496 bytes
       Driver: C:\Windows\system32\RtCRX.dll, 1.11.9600.0000 (Chinese (Simplified)), 10/20/2014 17:50:46, 73432 bytes
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    G2M Session Decoder,0x00600000,1,1,G2M.dll,5.09.0000.1216
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    ULH0 Decoder DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    ULY0 Decoder DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    ULH2 Decoder DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    ULY2 Decoder DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    ULRA Decoder DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    ULRG Decoder DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    Nero Audible Decoder,0x00200000,1,1,NeAudible.ax,4.11.0003.0007
    VP6 Decompressor,0x00800000,1,1,vp6dec.ax,6.04.0002.00​00
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.03.4523.0000
    MPEG-4 Video Decompressor          ,0x00800000,1,1,cool1c32.ax,4.01.0000.3917
    Nero Subpicture Decoder,0x00400000,1,1,NeSubpicture.ax,4.11.0003.0​007
    ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.03.4523.0000
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.03.4523.0000
    Nero Scene Detector 2,0x00200000,2,0,NeSceneDetector.ax,4.11.0003.0007
    ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.03.4523.0000
    CineForm Muxer,0x00200000,2,1,CFMuxer.ax,1.01.0000.0009
    Nero Stream Buffer Sink,0x00200000,0,0,NeSBE.ax,4.11.0003.0007
    Nero Subtitle,0x00200000,1,1,NeSubtitle.ax,4.11.0003.00​07
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    MPC MPEG Source,0x00400000,0,0,MpegSplitter.ax,1.02.0001.00​00
    DV Scenes,0x00200000,1,1,NVDV.dll,3.00.0004.0000
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.1874​1
    LAV Splitter,0x00800004,1,1,LAVSplitter.ax,0.58.0002.0​000
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.1751​4
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.18741
    CineForm HD Encoder-2,0x00200000,1,1,CFEncoder2.ax,3.02.0002.0​185
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.18741
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7​601.17514
    Nero FTC,0x00200000,1,1,NeFTC.ax,1.00.0000.0000
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.​16426
    CineForm AVI File Writer,0x00200000,1,0,CFAviWriter.ax,1.00.0000.000​1
    MPC RealVideo Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.02.0​001.0000
    MONOGRAM AMR Splitter,0x00600000,1,1,mmamr.ax,1.00.0001.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17514
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.​17514
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.1751​4
    Nero Resize,0x00400000,1,1,NeResize.ax,4.11.0003.0007
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.1​8741
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7601.17514
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.18741
    MPEG-2 PSI Reader Filter,0x00200000,0,0,Mpeg2PsiReader.ax,1.00.0000.​0006
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.18741
    Nero AV Synchronizer,0x00200000,1,1,NeAVSync.ax,4.11.0003.​0007
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    Nero Audio Stream Renderer,0x00200000,1,0,NeRender.ax,4.11.0003.0007
    MPC MPEG-2 Video Decoder,0x00600001,1,1,Mpeg2DecFilter.ax,1.02.0001​.0000
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.1751​4
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.1751​4
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17​514
    Nero Digital AVC Audio Encoder,0x00200000,1,2,NeNDAud.ax,4.11.0003.0007
    Nero Digital AVC File Writer,0x00200000,1,0,NeNDMux.ax,4.11.0003.0007
    Nero Digital AVC Video Enc,0x00200000,1,2,NeNDVid.ax,4.11.0003.0007
    Nero Digital AVC Null Renderer,0x00200000,1,0,NeNDMux.ax,4.11.0003.0007
    Nero Digital AVC Muxer,0x00200000,2,1,NeNDMux.ax,4.11.0003.0007
    Nero QuickTime(tm) Video Decoder,0x00400000,1,1,NeQTDec.ax,4.11.0003.0007
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.18741
    RadGt Splitter,0x00600001,1,1,RadGtSplitter.ax,1.00.0000​.0001
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.18741
    Nero Digital AVC Subpicture Enc,0x00200000,1,0,NeNDMux.ax,4.11.0003.0007
    Nero Format Converter,0x00200000,1,1,NeroFormatConv.ax,4.11.00​03.0007
    Nero Overlay Mixer,0x00200000,1,1,NeOverlayMixer.ax,4.11.0003.0​007
    Nero MP4 Splitter,0x00600000,1,1,NeMP4Splitter.ax,4.11.0003​.0007
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    HighMAT and MPV Navigator Filter,0x00200000,0,3,HMNavigator.ax,4.11.0003.000​7
    MONOGRAM AMR Decoder,0x00600000,1,1,mmamr.ax,1.00.0001.0000
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.18741
    Nero Photo Source,0x00200000,0,1,NePhotoSource.ax,4.11.0003.0​007
    Nero Video Analyzer,0x00200000,2,0,NeVideoAnalyzer.ax,4.11.00​03.0007
    Nero ES Video Reader,0x00600000,0,1,NDParser.ax,4.11.0003.0007
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17​514
    DV Source Filter,0x00400000,0,1,NVDV.dll,3.00.0004.0000
    MPEG-2 Stream Reader Filter,0x00200000,0,0,Mpeg2StreamReader.ax,1.04.00​00.0000
    Nero Audio CD Filter,0x00200000,0,1,NeAudCD.ax,4.11.0003.0007
    Xvid MPEG-4 Video Decoder,0x00800002,1,1,xvid.ax,
    Nero Video Renderer,0x00200000,1,0,NeVideoRenderer.ax,4.11.00​03.0007
    Nero PresentationGraphics Decoder,0x00600000,2,1,NeBDGraphic.ax,4.11.0003.00​07
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.18741
    RadGt Source,0x00600001,0,0,RadGtSplitter.ax,1.00.0000.0​001
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.18741
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17514
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.18741
    Nero InteractiveGraphics Decoder,0x00600000,1,1,NeBDGraphic.ax,4.11.0003.00​07
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.18741
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.18741
    Nero Sound Processor,0x00200000,1,1,NeSoundProc.ax,4.11.0003.​0007
    MPC RealMedia Source,0x00600000,0,0,RealMediaSplitter.ax,1.02.00​01.0000
    Nero Audio Sample Renderer,0x00200000,1,0,NeRender.ax,4.11.0003.0007
    Nero Vcd Navigator,0x00600000,0,2,NeVCD.ax,4.11.0003.0007
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Nero Mpeg2 Encoder,0x00200000,2,1,NeVCR.ax,4.11.0003.0007
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.1751​4
    Nero Video Stream Renderer,0x00200000,1,0,NeRender.ax,4.11.0003.0007
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    Nero FLV Splitter,0x00600000,1,1,NeFLVSplitter.ax,4.11.0003​.0007
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    Nero Stream Buffer Source,0x00200000,0,0,NeSBE.ax,4.11.0003.0007
    Nero PS Muxer,0x00200000,1,1,NePSMuxer.ax,4.11.0003.0007
    DirectVobSub,0x00200000,2,1,VSFilter.dll,1.02.0001​.0000
    MPC RealAudio Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.02.0​001.0000
    DirectVobSub (auto-loading version),0x00800002,2,1,VSFilter.dll,1.02.0001.000​0
    MONOGRAM AMR Encoder,0x00600000,1,1,mmamr.ax,1.00.0001.0000
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.18741
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.1751​4
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.18741
    Nero Splitter,0x00600000,1,3,NeSplitter.ax,4.11.0003.00​07
    Nero Deinterlace,0x00200000,1,1,NeDeinterlace.ax,4.11.0​003.0007
    AC3Filter,0x40000000,1,1,ac3filter.ax,2.06.0000.00​00
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.18741
    MONOGRAM AMR Mux,0x00600000,1,1,mmamr.ax,1.00.0001.0000
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Nero File Source / Splitter,0x00600000,0,3,NeFSource.ax,4.11.0003.000​7
    DC-Bass Source,0x00400000,0,1,DCBassSource.ax,1.03.0000.00​00
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17​514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    CineForm HD Decoder-2,0x00800002,1,1,CFDecode2.ax,3.02.0002.01​85
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601​.17514
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.03.4523.0000
    LAME Audio Encoder,0x00200000,1,1,Lame.ax,1.00.0061.24875
    LAV Splitter Source,0x00800004,0,1,LAVSplitter.ax,0.58.0002.000​0
    Nero Video Processor,0x00200000,1,1,NeroVideoProc.ax,4.11.000​3.0007
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.1​7514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    VP7 Decompressor,0x00800000,1,1,vp7dec.ax,7.00.0010.00​00
    Nero Sound Switcher,0x00200000,1,1,NeSoundSwitch.ax,4.11.0003​.0007
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.1751​4
    Nero Audio CD Navigator,0x00200000,0,1,NeAudCD.ax,4.11.0003.0007
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.760​1.17514
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Nero Thumbnail Decoder,0x00600000,1,1,NeBDThumbnail.ax,4.11.0003.​0007
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.18741
    Nero Scene Detector,0x00200000,1,0,NeSceneDetector.ax,4.11.00​03.0007
    GPL MPEG-1/2 Decoder,0x00500000,1,1,GplMpgDec.ax,0.01.0002.0000
    Nero Stream Control,0x00200000,1,1,NeStreamControl.ax,1.00.000​0.0000
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.1​8741
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7601.1​7514
    Nero Sample Queue,0x00200000,1,1,NeSampleQueue.ax,1.00.0000.00​00
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.18741
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.18741
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.18741
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.18741
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.18741
    Nero File Source,0x00200000,0,1,NeFileSrc.ax,4.11.0003.0007
    Nero QuickTime(tm) Audio Decoder,0x00400000,1,1,NeQTDec.ax,4.11.0003.0007
    Nero File Source (Async.),0x00400000,0,1,NeFileSourceAsync.ax,4.11.​0003.0007
    Nero Ogg Splitter,0x00400000,1,1,NeOggSplitter.ax,4.11.0003​.0007
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.03.4523.0000
    MPC MPEG Splitter,0x00600001,1,1,MpegSplitter.ax,1.02.0001.​0000
    CineForm HD Encoder,0x00200000,1,1,CFEncode.ax,3.02.0002.0185
    madVR,0x00200000,1,0,madVR.ax,0.86.0011.0000
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0​000
    Nero Digital Parser,0x00600000,0,3,NDParser.ax,4.11.0003.0007
    MPC RealMedia Splitter,0x00600000,1,1,RealMediaSplitter.ax,1.02.​0001.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601​.17514
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.18741
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.18741
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.18741
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7601.175​14
    Nero MP3 Encoder,0x00200000,1,1,NeMp3Encoder.ax,4.11.0003.0​007
    CineForm V210 Decoder,0x00800000,1,1,V210Decoder.ax,1.00.0001.00​03
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    LAV Audio Decoder,0x00800003,1,1,LAVAudio.ax,0.58.0002.0000
    Nero Frame Capture,0x00200000,1,1,NeCapture.ax,4.11.0003.0007
    Nero Video Sample Renderer,0x00200000,1,0,NeRender.ax,4.11.0003.0007
    AC3File,0x00600000,0,1,ac3file.ax,
    HighMAT/MPV Navigator Client Filter,0x00200000,0,0,HMNavigator.ax,4.11.0003.000​7
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Nero DV Splitter,0x00200000,1,2,NeDVSplitter.ax,4.11.0003.​0007
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.18741
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.18741
    Voxware MetaSound Audio Decoder,0x00999999,1,1,voxmsdec.ax,1.00.0000.0012
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.1751​4
    Video Compressors:
    UtVideo YUV420 BT.709 (ULH0) DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    UtVideo YUV420 BT.601 (ULY0) DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    UtVideo YUV422 BT.709 (ULH2) DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    UtVideo YUV422 BT.601 (ULY2) DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    UtVideo RGBA (ULRA) DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    UtVideo RGB (ULRG) DMO,0x00600800,1,1,utv_dmo.dll,1.00.0000.0001
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.03.4523.0000
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.187​41
    CineForm HD Encoder-2,0x00200000,1,1,CFEncoder2.ax,3.02.0002.0​185
    CineForm HD Encoder,0x00200000,1,1,CFEncode.ax,3.02.0002.0185
    CineForm HD Codec V3.2.2,0x00200000,1,1,qcap.dll,6.06.7601.17514
    CamStudio Lossless Codec v1.5,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    ffdshow Video Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    GEO-MPEG4,0x00200000,1,1,qcap.dll,6.06.7601.17514
    GEO-MPEG4,0x00200000,1,1,qcap.dll,6.06.7601.17514
    GEO-MPEG4,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel Indeo(R) Video Interactive,0x00200000,1,1,qcap.dll,6.06.7601.1751​4
    Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Lagarith Lossless Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    MLC v1.2,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    UtVideo YUV420 BT.709 (ULH0) VCM,0x00200000,1,1,qcap.dll,6.06.7601.17514
    UtVideo YUV422 BT.709 (ULH2) VCM,0x00200000,1,1,qcap.dll,6.06.7601.17514
    UtVideo RGBA (ULRA) VCM,0x00200000,1,1,qcap.dll,6.06.7601.17514
    UtVideo RGB (ULRG) VCM,0x00200000,1,1,qcap.dll,6.06.7601.17514
    UtVideo YUV420 BT.601 (ULY0) VCM,0x00200000,1,1,qcap.dll,6.06.7601.17514
    UtVideo YUV422 BT.601 (ULY2) VCM,0x00200000,1,1,qcap.dll,6.06.7601.17514
    VMnc v2,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Google VP8 Video Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    x264vfw - H.264/MPEG-4 AVC codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Xvid MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    LAME Audio Encoder,0x00200000,1,1,Lame.ax,1.00.0061.24875
    IAC2,0x00200000,1,1,quartz.dll,6.06.7601.18741
    ffdshow Audio Decoder,0x00200000,1,1,quartz.dll,6.06.7601.18741
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.18741
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.18741
    AAC ACM Codec,0x00200000,1,1,quartz.dll,6.06.7601.18741
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.18741
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.18741
    AC-3 ACM Extensible,0x00200000,1,1,quartz.dll,6.06.7601.187​41
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.18741
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.18741
    AC-3 ACM Codec,0x00200000,1,1,quartz.dll,6.06.7601.18741
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.18741
    Audio Capture Sources:
    Microphone (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Stereo Mix (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17​514
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17​514
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17​514
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.18741
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.18741
    WDM Streaming Capture Devices:
    Mic in at front panel (black),0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HP Truevision HD,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Video Capture Sources:
    HP Truevision HD,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17​514
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17​514
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17514
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17514
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.1751​4
    Audio Renderers:
    Speaker/HP (Realtek High Defini,0x00200000,1,0,quartz.dll,6.06.7601.18741
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.18741
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.18741
    DirectSound: Speaker/HP (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.18741
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0
    This question was solved.
    View Solution.

    Hi:
    See if this driver works.  If it doesn't, you will need to install a 64 bit operating system if you want to run windows 7.
    I know this driver works for the Celeron N processors, but I don't know if it will work with the Pentium N processors.
    Download, unzip and run the setup.exe file.
    https://downloadcenter.intel.com/Detail_Desc.aspx?​DwnldID=23889

  • Intel HD graphics IE9 not working with stage3d

    Firefox works in GPU mode
    Dropping back to software mode no longer works in Firefox.
    As in if I dont set wmode, it doesnt drop to software mode but throws an error “context3d not available”.
    IE9 32 bit and 64 bit dont work
    If you install the 64bit non debug player (which is supposed to also install the 32 bit)
    IE 32 bit & IE 64 only shows the Away3d stats panel shows.
    Install the 32bit debugger for IE
    IT throws an error “bad input size” on 32 bit IE.
    Uninstalled all flashplayers, rebooted and installed the fp11 in various order and the above is what I end up with.
    Things like video (iplayer) work fine on IE
    System Information
    Time of this report: 9/11/2011, 11:09:14
           Machine name: JB-PC
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506)
               Language: English (Regional Setting: English)
    System Manufacturer: Gigabyte Technology Co., Ltd.
           System Model: Z68MX-UD2H-B3
                   BIOS: Award Modular BIOS v6.00PG
              Processor: Intel(R) Core(TM) i5-2500K CPU @ 3.30GHz (4 CPUs), ~3.6GHz
                 Memory: 8192MB RAM
    Available OS Memory: 8110MB RAM
              Page File: 2090MB used, 14125MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 64bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
            Sound Tab 3: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: Intel(R)  HD Graphics Family
           Manufacturer: Intel Corporation
              Chip type: Intel(R) HD Graphics Family
               DAC type: Internal
             Device Key: Enum\PCI\VEN_8086&DEV_0112&SUBSYS_D0001458&REV_09
         Display Memory: 1696 MB
       Dedicated Memory: 64 MB
          Shared Memory: 1632 MB
           Current Mode: 1680 x 1050 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: W2252
             Monitor Id: GSM567E
            Native Mode: 1680 x 1050(p) (59.883Hz)
            Output Type: HDMI
            Driver Name: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumdx32,igd10umd32,igd10umd32
    Driver File Version: 8.15.0010.2361 (English)
         Driver Version: 8.15.10.2361
            DDI Version: 10.1
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 4/10/2011 11:51:04, 8238592 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B78E66-4252-11CF-D17E-0AF0A9C2C535}
              Vendor ID: 0x8086
              Device ID: 0x0112
              SubSys ID: 0xD0001458
            Revision ID: 0x0009
    Driver Strong Name: oem13.inf:Intel.Mfg.NTamd64:iSNBD0:8.15.10.2361:pci\ven_8086&dev_0112
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_C ModeVC1_C
       Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers (Realtek High Definition Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_1458A102&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6307 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 2/11/2011 11:18:44, 2739176 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output(Optical) (Realtek High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_1458A102&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6307 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 2/11/2011 11:18:44, 2739176 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output (Realtek High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_1458A102&REV_1000
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6307 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 2/11/2011 11:18:44, 2739176 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x1C2D
    | Matching Device ID: usb\root_hub20
    | Service: usbhub
    | Driver: usbhub.sys, 3/25/2011 04:29:26, 343040 bytes
    | Driver: usbd.sys, 3/25/2011 04:28:59, 7936 bytes
    |
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x0024
    | | Location: Port_#0001.Hub_#0001
    | | Matching Device ID: usb\class_09
    | | Service: usbhub
    | | Driver: usbhub.sys, 3/25/2011 04:29:26, 343040 bytes
    | |
    | +-+ Logitech USB Cordless Mouse
    | | | Vendor/Product ID: 0x046D, 0xC501
    | | | Location: Port_#0006.Hub_#0003
    | | | Matching Device ID: usb\vid_046d&pid_c501
    | | | Service: HidUsb
    | | | Driver: hidusb.sys, 11/20/2010 11:43:49, 30208 bytes
    | | | Driver: hidclass.sys, 11/20/2010 11:43:49, 76800 bytes
    | | | Driver: hidparse.sys, 7/14/2009 01:06:17, 32896 bytes
    | | |
    | | +-+ Logitech USB Cordless Mouse
    | | | | Vendor/Product ID: 0x046D, 0xC501
    | | | | Matching Device ID: hid\vid_046d&pid_c501
    | | | | Service: mouhid
    | | | | Driver: mouhid.sys, 7/14/2009 01:00:20, 31232 bytes
    | | | | Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes
    Gameport Devices
    PS/2 Devices
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    | Driver: i8042prt.sys, 7/14/2009 00:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/14/2009 00:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 11/20/2010 14:33:57, 63360 bytes
    | Driver: sermouse.sys, 7/14/2009 01:00:20, 26624 bytes
    | Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 343.6 GB
    Total Space: 476.8 GB
    File System: NTFS
          Model: WDC WD5000AAKX-001CA0
          Drive: E:
    Free Space: 1209.1 GB
    Total Space: 1907.7 GB
    File System: NTFS
          Model: WDC WD20EARX-00PASB0
          Drive: F:
    Free Space: 471.4 GB
    Total Space: 476.9 GB
    File System: NTFS
          Model: WDC WD5000AAKS-00YGA0
          Drive: D:
          Model: TSSTcorp CDDVDW SH-222AB
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), 11/20/2010 10:19:21, 147456 bytes
    System Devices
         Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C2D
    Device ID: PCI\VEN_8086&DEV_1C2D&SUBSYS_50061458&REV_05\3&13C0B0C5&0&D0
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7601.17586 (English), 3/25/2011 04:29:04, 52736 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 04:29:14, 325120 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 04:29:26, 343040 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 1 - 1C10
    Device ID: PCI\VEN_8086&DEV_1C10&SUBSYS_50011458&REV_B5\3&13C0B0C5&0&E0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 14:33:48, 184704 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C26
    Device ID: PCI\VEN_8086&DEV_1C26&SUBSYS_50061458&REV_05\3&13C0B0C5&0&E8
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7601.17586 (English), 3/25/2011 04:29:04, 52736 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 04:29:14, 325120 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 04:29:26, 343040 bytes
         Name: Intel(R) Desktop/Workstation/Server Express Chipset SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_1C02&SUBSYS_B0051458&REV_05\3&13C0B0C5&0&FA
       Driver: C:\Windows\system32\DRIVERS\iaStor.sys, 10.05.0000.1015 (English), 2/9/2011 13:06:44, 555032 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller - 1C22
    Device ID: PCI\VEN_8086&DEV_1C22&SUBSYS_50011458&REV_05\3&13C0B0C5&0&FB
       Driver: n/a
         Name: Intel(R)  HD Graphics Family
    Device ID: PCI\VEN_8086&DEV_0112&SUBSYS_D0001458&REV_09\3&13C0B0C5&0&10
       Driver: C:\Windows\system32\DRIVERS\igdkmd64.sys, 8.15.0010.2361 (English), 4/10/2011 11:51:08, 12223936 bytes
       Driver: C:\Windows\system32\igdumd64.dll, 8.15.0010.2361 (English), 4/10/2011 11:51:04, 8238592 bytes
       Driver: C:\Windows\system32\igd10umd64.dll, 8.15.0010.2361 (English), 4/10/2011 11:37:40, 14511104 bytes
       Driver: C:\Windows\system32\igfxcmrt64.dll, 1.00.0000.1007 (English), 4/10/2011 10:40:40, 136704 bytes
       Driver: C:\Windows\system32\IccLibDll_x64.dll, 3/6/2011 13:07:58, 94208 bytes
       Driver: C:\Windows\system32\igkrng600.bin, 3/6/2011 13:50:34, 963116 bytes
       Driver: C:\Windows\system32\igcompkrng600.bin, 3/6/2011 13:50:34, 145804 bytes
       Driver: C:\Windows\system32\igfcg600m.bin, 4/10/2011 11:49:10, 218304 bytes
       Driver: C:\Windows\SysWow64\igkrng600.bin, 3/6/2011 13:50:34, 963116 bytes
       Driver: C:\Windows\SysWow64\igcompkrng600.bin, 3/6/2011 13:50:34, 145804 bytes
       Driver: C:\Windows\SysWow64\igfcg600m.bin, 4/10/2011 11:49:10, 218304 bytes
       Driver: C:\Windows\system32\igdde64.dll, 4/10/2011 11:48:56, 75776 bytes
       Driver: C:\Windows\SysWow64\igdde32.dll, 4/10/2011 11:42:50, 56832 bytes
       Driver: C:\Windows\system32\iglhxs64.vp, 4/10/2011 12:15:56, 17272 bytes
       Driver: C:\Windows\system32\iglhxo64.vp, 4/10/2011 10:40:34, 59243 bytes
       Driver: C:\Windows\system32\iglhxc64.vp, 4/10/2011 10:40:34, 59062 bytes
       Driver: C:\Windows\system32\iglhxg64.vp, 4/10/2011 10:40:34, 59174 bytes
       Driver: C:\Windows\system32\iglhxa64.vp, 4/10/2011 10:40:34, 1074 bytes
       Driver: C:\Windows\system32\iglhxa64.cpa, 4/10/2011 10:40:34, 1981696 bytes
       Driver: C:\Windows\system32\iglhcp64.dll, 2.00.0002.0001 (English), 4/10/2011 10:40:36, 98304 bytes
       Driver: C:\Windows\system32\iglhsip64.dll, 2.00.0002.0001 (English), 4/10/2011 10:40:36, 376832 bytes
       Driver: C:\Windows\SysWow64\igdumd32.dll, 8.15.0010.2361 (English), 4/10/2011 11:44:20, 6275072 bytes
       Driver: C:\Windows\SysWow64\igdumdx32.dll, 8.15.0010.2361 (English), 4/10/2011 11:41:04, 577024 bytes
       Driver: C:\Windows\SysWow64\igfxdv32.dll, 8.15.0010.2361 (English), 4/10/2011 11:06:46, 288768 bytes
       Driver: C:\Windows\SysWow64\igd10umd32.dll, 8.15.0010.2361 (English), 4/10/2011 11:31:20, 12289536 bytes
       Driver: C:\Windows\SysWow64\iglhcp32.dll, 2.00.0002.0001 (English), 4/10/2011 10:40:34, 98304 bytes
       Driver: C:\Windows\SysWow64\iglhsip32.dll, 2.00.0002.0001 (English), 4/10/2011 10:40:34, 376832 bytes
       Driver: C:\Windows\SysWow64\igfxcmrt32.dll, 1.00.0000.1007 (English), 4/10/2011 10:40:40, 158208 bytes
       Driver: C:\Windows\system32\difx64.exe, 4/10/2011 11:59:58, 179032 bytes
       Driver: C:\Windows\system32\hccutils.dll, 8.15.0010.2361 (English), 4/10/2011 11:12:18, 109056 bytes
       Driver: C:\Windows\system32\igfxsrvc.dll, 8.15.0010.2361 (English), 4/10/2011 11:12:48, 62464 bytes
       Driver: C:\Windows\system32\igfxsrvc.exe, 8.15.0010.2361 (English), 4/10/2011 12:00:06, 509272 bytes
       Driver: C:\Windows\system32\igfxpph.dll, 8.15.0010.2361 (English), 4/10/2011 11:13:10, 335872 bytes
       Driver: C:\Windows\system32\igfxcpl.cpl, 8.15.0010.2361 (English), 4/10/2011 11:13:38, 126976 bytes
       Driver: C:\Windows\system32\igfxdev.dll, 8.15.0010.2361 (English), 4/10/2011 11:12:08, 385024 bytes
       Driver: C:\Windows\system32\igfxdo.dll, 8.15.0010.2361 (English), 4/10/2011 11:11:26, 142336 bytes
       Driver: C:\Windows\system32\igfxtray.exe, 8.15.0010.2361 (English), 4/10/2011 12:00:08, 167256 bytes
       Driver: C:\Windows\system32\hkcmd.exe, 8.15.0010.2361 (English), 4/10/2011 12:00:00, 391512 bytes
       Driver: C:\Windows\system32\igfxress.dll, 8.15.0010.2361 (English), 4/10/2011 11:11:26, 9014784 bytes
       Driver: C:\Windows\system32\igfxpers.exe, 8.15.0010.2361 (English), 4/10/2011 12:00:04, 415064 bytes
       Driver: C:\Windows\system32\igfxTMM.dll, 8.15.0010.2361 (English), 4/10/2011 11:13:20, 378368 bytes
       Driver: C:\Windows\system32\gfxSrvc.dll, 8.15.0010.2361 (English), 4/10/2011 11:12:10, 146432 bytes
       Driver: C:\Windows\system32\GfxUI.exe, 8.15.0010.2361 (English), 4/10/2011 12:00:00, 4377432 bytes
       Driver: C:\Windows\system32\GfxUI.exe.config, 3/6/2011 13:11:06, 151 bytes
       Driver: C:\Windows\system32\IGFXDEVLib.dll, 1.00.0000.0000 (Invariant Language), 4/10/2011 11:12:10, 4096 bytes
       Driver: C:\Windows\system32\igfxext.exe, 8.15.0010.2361 (English), 4/10/2011 12:00:02, 238424 bytes
       Driver: C:\Windows\system32\igfxexps.dll, 8.15.0010.2361 (English), 4/10/2011 11:13:04, 28672 bytes
       Driver: C:\Windows\SysWow64\igfxexps32.dll, 8.15.0010.2361 (English), 4/10/2011 11:07:34, 24576 bytes
       Driver: C:\Windows\system32\igfxrara.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:40, 285184 bytes
       Driver: C:\Windows\system32\igfxrchs.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:42, 282624 bytes
       Driver: C:\Windows\system32\igfxrcht.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:42, 282624 bytes
       Driver: C:\Windows\system32\igfxrdan.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:44, 285696 bytes
       Driver: C:\Windows\system32\igfxrdeu.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:46, 286720 bytes
       Driver: C:\Windows\system32\igfxrenu.lrc, 8.15.0010.2361 (English), 4/10/2011 11:11:32, 285696 bytes
       Driver: C:\Windows\system32\igfxresn.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:54, 287232 bytes
       Driver: C:\Windows\system32\igfxrfin.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:44, 286208 bytes
       Driver: C:\Windows\system32\igfxrfra.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:46, 287232 bytes
       Driver: C:\Windows\system32\igfxrheb.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:48, 285184 bytes
       Driver: C:\Windows\system32\igfxrhrv.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:58, 286720 bytes
       Driver: C:\Windows\system32\igfxrita.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:48, 286720 bytes
       Driver: C:\Windows\system32\igfxrjpn.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:50, 283648 bytes
       Driver: C:\Windows\system32\igfxrkor.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:50, 283136 bytes
       Driver: C:\Windows\system32\igfxrnld.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:44, 286720 bytes
       Driver: C:\Windows\system32\igfxrnor.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:50, 286208 bytes
       Driver: C:\Windows\system32\igfxrplk.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:52, 286720 bytes
       Driver: C:\Windows\system32\igfxrptb.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:52, 286208 bytes
       Driver: C:\Windows\system32\igfxrptg.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:52, 286720 bytes
       Driver: C:\Windows\system32\igfxrrom.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:58, 286720 bytes
       Driver: C:\Windows\system32\igfxrrus.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:54, 286720 bytes
       Driver: C:\Windows\system32\igfxrsky.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:58, 286720 bytes
       Driver: C:\Windows\system32\igfxrslv.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:58, 286208 bytes
       Driver: C:\Windows\system32\igfxrsve.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:56, 286208 bytes
       Driver: C:\Windows\system32\igfxrtha.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:56, 285696 bytes
       Driver: C:\Windows\system32\igfxrcsy.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:42, 286720 bytes
       Driver: C:\Windows\system32\igfxrell.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:46, 287232 bytes
       Driver: C:\Windows\system32\igfxrhun.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:48, 286208 bytes
       Driver: C:\Windows\system32\igfxrtrk.lrc, 8.15.0010.2361 (English), 4/10/2011 11:13:56, 286208 bytes
       Driver: C:\Windows\system32\Gfxres.ar-SA.resources, 4/10/2011 11:14:00, 156057 bytes
       Driver: C:\Windows\system32\Gfxres.cs-CZ.resources, 4/10/2011 11:14:02, 133246 bytes
       Driver: C:\Windows\system32\Gfxres.da-DK.resources, 4/10/2011 11:14:02, 128407 bytes
       Driver: C:\Windows\system32\Gfxres.de-DE.resources, 4/10/2011 11:14:04, 137705 bytes
       Driver: C:\Windows\system32\Gfxres.el-GR.resources, 4/10/2011 11:14:06, 197902 bytes
       Driver: C:\Windows\system32\Gfxres.es-ES.resources, 4/10/2011 11:14:06, 137506 bytes
       Driver: C:\Windows\system32\Gfxres.en-US.resources, 4/10/2011 11:13:40, 123921 bytes
       Driver: C:\Windows\system32\Gfxres.fi-FI.resources, 4/10/2011 11:14:08, 132752 bytes
       Driver: C:\Windows\system32\Gfxres.fr-FR.resources, 4/10/2011 11:14:10, 135519 bytes
       Driver: C:\Windows\system32\Gfxres.he-IL.resources, 4/10/2011 11:14:12, 148846 bytes
       Driver: C:\Windows\system32\Gfxres.hr-HR.resources, 4/10/2011 11:14:36, 131705 bytes
       Driver: C:\Windows\system32\Gfxres.hu-HU.resources, 4/10/2011 11:14:12, 134238 bytes
       Driver: C:\Windows\system32\Gfxres.it-IT.resources, 4/10/2011 11:14:14, 140077 bytes
       Driver: C:\Windows\system32\Gfxres.ja-JP.resources, 4/10/2011 11:14:16, 152994 bytes
       Driver: C:\Windows\system32\Gfxres.ko-KR.resources, 4/10/2011 11:14:16, 138572 bytes
       Driver: C:\Windows\system32\Gfxres.nb-NO.resources, 4/10/2011 11:14:18, 128667 bytes
       Driver: C:\Windows\system32\Gfxres.nl-NL.resources, 4/10/2011 11:14:20, 134272 bytes
       Driver: C:\Windows\system32\Gfxres.pl-PL.resources, 4/10/2011 11:14:20, 133014 bytes
       Driver: C:\Windows\system32\Gfxres.pt-BR.resources, 4/10/2011 11:14:22, 134686 bytes
       Driver: C:\Windows\system32\Gfxres.pt-PT.resources, 4/10/2011 11:14:24, 133548 bytes
       Driver: C:\Windows\system32\Gfxres.ro-RO.resources, 4/10/2011 11:14:36, 136449 bytes
       Driver: C:\Windows\system32\Gfxres.ru-RU.resources, 4/10/2011 11:14:24, 182514 bytes
       Driver: C:\Windows\system32\Gfxres.sk-SK.resources, 4/10/2011 11:14:26, 132650 bytes
       Driver: C:\Windows\system32\Gfxres.sl-SI.resources, 4/10/2011 11:14:28, 128863 bytes
       Driver: C:\Windows\system32\Gfxres.sv-SE.resources, 4/10/2011 11:14:28, 133706 bytes
       Driver: C:\Windows\system32\Gfxres.th-TH.resources, 4/10/2011 11:14:30, 211082 bytes
       Driver: C:\Windows\system32\Gfxres.tr-TR.resources, 4/10/2011 11:14:32, 135222 bytes
       Driver: C:\Windows\system32\Gfxres.zh-CN.resources, 4/10/2011 11:14:32, 116233 bytes
       Driver: C:\Windows\system32\Gfxres.zh-TW.resources, 4/10/2011 11:14:34, 117522 bytes
       Driver: C:\Windows\system32\ig4icd64.dll, 8.15.0010.2361 (English), 4/10/2011 11:24:40, 17896960 bytes
       Driver: C:\Windows\SysWow64\ig4icd32.dll, 4/10/2011 11:18:24, 13356032 bytes
       Driver: C:\Windows\system32\igfxCoIn_v2361.dll, 1.02.0030.0000 (English), 4/10/2011 11:56:24, 90112 bytes
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_1C20&SUBSYS_A1021458&REV_05\3&13C0B0C5&0&D8
       Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/20/2010 11:43:43, 122368 bytes
         Name: 2nd generation Intel(R) Core(TM) processor family DRAM Controller - 0100
    Device ID: PCI\VEN_8086&DEV_0100&SUBSYS_00000000&REV_09\3&13C0B0C5&0&00
       Driver: n/a
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 8 - 1C1E
    Device ID: PCI\VEN_8086&DEV_1C1E&SUBSYS_50011458&REV_B5\3&13C0B0C5&0&E7
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 14:33:48, 184704 bytes
         Name: Etron USB 3.0 Extensible Host Controller
    Device ID: PCI\VEN_1B6F&DEV_7023&SUBSYS_50071458&REV_01\4&4219E1E&0&00E7
       Driver: C:\Windows\SYSTEM32\DRIVERS\EtronXHCI.sys, 0.00.0000.0098 (English), 3/7/2011 10:22:00, 65280 bytes
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_50001458&REV_A5\3&13C0B0C5&0&F0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 14:33:48, 184704 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 7 - 1C1C
    Device ID: PCI\VEN_8086&DEV_1C1C&SUBSYS_50011458&REV_B5\3&13C0B0C5&0&E6
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 14:33:48, 184704 bytes
         Name: Etron USB 3.0 Extensible Host Controller
    Device ID: PCI\VEN_1B6F&DEV_7023&SUBSYS_50071458&REV_01\4&1B0D22A2&0&00E5
       Driver: C:\Windows\SYSTEM32\DRIVERS\EtronXHCI.sys, 0.00.0000.0098 (English), 3/7/2011 10:22:00, 65280 bytes
         Name: Intel(R) Z68 Express Chipset Family LPC Interface Controller - 1C44
    Device ID: PCI\VEN_8086&DEV_1C44&SUBSYS_50011458&REV_05\3&13C0B0C5&0&F8
       Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 02:48:27, 15424 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 6 - 1C1A
    Device ID: PCI\VEN_8086&DEV_1C1A&SUBSYS_50011458&REV_B5\3&13C0B0C5&0&E5
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 14:33:48, 184704 bytes
         Name: Marvell 91xx SATA 6G Controller
    Device ID: PCI\VEN_1B4B&DEV_9172&SUBSYS_B0001458&REV_11\4&18803EC9&0&00E4
       Driver: C:\Windows\system32\DRIVERS\mvs91xx.sys, 1.02.0000.1002 (English), 3/14/2011 10:29:46, 313136 bytes
       Driver: C:\Windows\system32\DRIVERS\mvxxmm.sys, 1.00.0000.1202 (English), 3/14/2011 10:29:46, 14128 bytes
       Driver: C:\Windows\system32\mv91xxm.dll, 1.00.0000.0001 (English), 3/14/2011 10:29:46, 35840 bytes
         Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_1C3A&SUBSYS_1C3A1458&REV_04\3&13C0B0C5&0&B0
       Driver: n/a
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 5 - 1C18
    Device ID: PCI\VEN_8086&DEV_1C18&SUBSYS_50011458&REV_B5\3&13C0B0C5&0&E4
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/20/2010 14:33:48, 184704 bytes
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_E0001458&REV_06\4&B75C242&0&00E6
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.01.3958.0000
    Xiph.Org Theora Decoder,0x00600000,1,1,dsfTheoraDecoder.dll,
    Xiph.Org Vorbis Decoder,0x00600000,1,1,dsfVorbisDecoder.dll,
    ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.01.3958.0000
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.01.3958.0000
    ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.01.3958.0000
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17514
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17514
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17514
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Xiph.Org Ogg Muxer,0x00200000,1,0,dsfOggMux.dll,
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    MPC - RealVideo Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.04.2499.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17514
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17514
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7601.17514
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17514
    Xiph.Org FLAC Decoder,0x00600000,1,1,dsfFLACDecoder.dll,
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    MPC - FLV Splitter (Gabest),0x00600000,1,1,FLVSplitter.ax,1.04.2499.0000
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17514
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17514
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Haali Media Splitter,0x00800001,0,1,splitter.x64.ax,1.11.0096.0014
    Haali Media Splitter (AR),0x00400000,1,1,splitter.x64.ax,1.11.0096.0014
    Xiph.Org Theora Encoder,0x00200000,1,1,dsfTheoraEncoder.dll,
    Xiph.Org Vorbis Encoder,0x00200000,1,1,dsfVorbisEncoder.dll,
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17514
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17514
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Xiph.Org Native FLAC Decoder,0x00600000,0,1,dsfNativeFLACSource.dll,
    Line 21 Decoder,0x00600000,1,1,,
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17514
    Xiph.Org Speex Encoder,0x00200000,1,1,dsfSpeexEncoder.dll,
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17514
    Xiph.Org Speex Decoder,0x00600000,1,1,dsfSpeexDecoder.dll,
    Haali Video Renderer,0x00200000,1,0,dxr.x64.dll,
    MPC - RealMedia Source,0x00600000,0,0,RealMediaSplitter.ax,1.04.2499.0000
    Xiph.Org FLAC Encoder,0x00200000,1,1,dsfFLACEncoder.dll,
    DivX Decoder Filter,0x00800000,1,1,divxdec.ax,7.00.0000.0031
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    Haali Simple Media Splitter,0x00200000,0,1,splitter.x64.ax,1.11.0096.0014
    DirectVobSub,0x00200000,2,1,VSFilter.dll,1.00.0001.0003
    MPC - RealAudio Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.04.2499.0000
    DirectVobSub (auto-loading version),0x00800002,2,1,VSFilter.dll,1.00.0001.0003
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17514
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17514
    Overlay Mixer2,0x00200000,1,1,,
    Haali Matroska Muxer,0x00200000,1,0,splitter.x64.ax,1.11.0096.0014
    AC3Filter,0x40000000,1,1,ac3filter64.ax,1.03.0001.0000
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.01.3958.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    Xiph.Org Ogg Demuxer,0x00600000,1,1,dsfOggDemux2.dll,
    MPC - FLV Source (Gabest),0x00600000,0,0,FLVSplitter.ax,1.04.2499.0000
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,,
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17514
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7601.17514
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17514
    MPC - CDXA Reader,0x00600000,0,1,cdxareader.ax,1.04.2499.0000
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17514
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17514
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.01.3958.0000
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    MPC - RealMedia Splitter,0x00600000,1,1,RealMediaSplitter.ax,1.04.2499.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17514
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17514
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17514
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7601.17514
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    WebM Muxer Filter,0x00200000,2,1,webmmux.dll,0.09.0012.0000
    WebM VP8 Decoder Filter,0x00600000,1,1,vp8decoder.dll,0.09.0012.0000
    WebM VP8 Encoder Filter,0x00200000,1,1,vp8encoder.dll,0.09.0012.0000
    WebM Splitter Filter,0x00600000,1,1,webmsplit.dll,0.09.0012.0000
    Haali Video Sink,0x00200000,1,0,splitter.x64.ax,1.11.0096.0014
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17514
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.01.3958.0000
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17514
    Xiph.Org Theora Encoder,0x00200000,1,1,dsfTheoraEncoder.dll,
    WebM VP8 Encoder Filter,0x00200000,1,1,vp8encoder.dll,0.09.0012.0000
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    Xiph.Org Vorbis Encoder,0x00200000,1,1,dsfVorbisEncoder.dll,
    Xiph.Org Speex Encoder,0x00200000,1,1,dsfSpeexEncoder.dll,
    Xiph.Org FLAC Encoder,0x00200000,1,1,dsfFLACEncoder.dll,
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17514
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17514
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17514
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17514
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17514
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17514
    WDM Streaming Capture Devices:
    Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Optical Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17514
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17528
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17528
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Speakers (Realtek High Definiti,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17514
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Realtek Digital Output(Optical) (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17514
    DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17514
    Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7601.17514
    Realtek Digital Output(Optical),0x00200000,1,0,quartz.dll,6.06.7601.17514
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    Ignore the above.
    Automagically working in IE :/

  • Windows 7, no sound, videos play fine. just no sound

    Hey guys ive been trying for days to fix the problem with flash, i get no sound on the internet. all my system sound is there, ect windows sounds game sounds. i use both IE exporer and firefox both of which can not get sound from flash videos, although the video plays fine, just with no sound. i tryed K-Lite Codec Tweak Tool , but that didnt work. im using ver 10.1 of flash. the whole probelm started when i upated to flash v10. up from 9. i will inculde my system sepcs at the bottom. any suggestions would be great.
    System Information
    Time of this report: 6/10/2010, 17:38:46
           Machine name: MEREDITH-PC
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7600) (7600.win7_gdr.100226-1909)
               Language: English (Regional Setting: English)
    System Manufacturer: HP-Pavilion
           System Model: NY549AA-ABA p6230y
                   BIOS: BIOS Date: 09/11/09 17:45:44 Ver: 5.03
              Processor: AMD Phenom(tm) II X4 810 Processor (4 CPUs), ~2.6GHz
                 Memory: 8192MB RAM
    Available OS Memory: 7928MB RAM
              Page File: 2072MB used, 13781MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7600.16385 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: RS880
           Manufacturer: ATI Technologies Inc.
              Chip type: ATI display adapter (0x9710)
               DAC type: Internal DAC(400MHz)
             Device Key: Enum\PCI\VEN_1002&DEV_9710&SUBSYS_2A92103C&REV_00
         Display Memory: 3064 MB
       Dedicated Memory: 252 MB
          Shared Memory: 2811 MB
           Current Mode: 1600 x 900 (32 bit) (60Hz)
           Monitor Name: HP 2009 Series Wide LCD Monitor
          Monitor Model: HP 2009
             Monitor Id: HWP2828
            Native Mode: 1600 x 900(p) (60.000Hz)
            Output Type: DVI
            Driver Name: atiu9p64 aticfx64 aticfx64 atiu9pag aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64
    Driver File Version:  ()
         Driver Version: 8.702.0.0
            DDI Version: 10.1
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: , 0 bytes
            WHQL Logo'd: n/a
        WHQL Date Stamp: n/a
      Device Identifier: {D7B71EE2-D450-11CF-4364-930AA1C2C535}
              Vendor ID: 0x1002
              Device ID: 0x9710
              SubSys ID: 0x2A92103C
            Revision ID: 0x0000
    Driver Strong Name: oem30.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_RS880:8.702.0.0:pci\ven_1002&dev_9710&subsys_2a921 03c
         Rank Of Driver: 00E60001
            Video Accel: ModeMPEG2_A ModeMPEG2_C
       Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Not Supported
                DXVA-HD: Not Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers (Realtek High Definition Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_103C2A92&REV_1002
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.5910 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: n/a
              Date and Size: 8/4/2009 07:50:58, 1973792 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Realtek Digital Output (Realtek High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_103C2A92&REV_1002
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.5910 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: n/a
              Date and Size: 8/4/2009 07:50:58, 1973792 bytes
                Other Files:
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: HP USB Multimedia Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x04F2, 0x0841
            FF Driver: n/a
          Device Name: HP USB Multimedia Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x04F2, 0x0841
            FF Driver: n/a
          Device Name: HP USB Multimedia Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x04F2, 0x0841
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x1002, 0x4397
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x04F2, 0x0841
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x0461, 0x4D0F
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 560.1 GB
    Total Space: 702.7 GB
    File System: NTFS
          Model: Seagate ST3750528AS SCSI Disk Device
          Drive: D:
    Free Space: 2.3 GB
    Total Space: 12.6 GB
    File System: NTFS
          Model: Seagate ST3750528AS SCSI Disk Device
          Drive: E:
          Model: hp CDDVDW TS-H653R SCSI CdRom Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.16385 (English), , 0 bytes
    System Devices
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1204&SUBSYS_00000000&REV_00\3&267A616A&0&C4
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4398&SUBSYS_2A92103C&REV_00\3&267A616A&0&99
       Driver: n/a
         Name: ATI I/O Communications Processor PCI Bus Controller
    Device ID: PCI\VEN_1002&DEV_4384&SUBSYS_00000000&REV_00\3&267A616A&0&A4
       Driver: n/a
         Name: Atheros 802.11 a/b/g/n Dualband Wireless Network Module
    Device ID: PCI\VEN_168C&DEV_002A&SUBSYS_1000168C&REV_01\4&1A388CE3&0&0038
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1203&SUBSYS_00000000&REV_00\3&267A616A&0&C3
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4398&SUBSYS_2A92103C&REV_00\3&267A616A&0&91
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002&DEV_4383&SUBSYS_2A92103C&REV_00\3&267A616A&0&A2
       Driver: n/a
         Name: VIA 1394 OHCI Compliant Host Controller
    Device ID: PCI\VEN_1106&DEV_3044&SUBSYS_2A92103C&REV_C0\4&2966AB86&0&30A4
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1202&SUBSYS_00000000&REV_00\3&267A616A&0&C2
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_2A92103C&REV_00\3&267A616A&0&98
       Driver: n/a
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_2A92103C&REV_03\4&DE08897&0&0050
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1201&SUBSYS_00000000&REV_00\3&267A616A&0&C1
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_2A92103C&REV_00\3&267A616A&0&90
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9609&SUBSYS_2A92103C&REV_00\3&267A616A&0&50
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_1200&SUBSYS_00000000&REV_00\3&267A616A&0&C0
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_2A92103C&REV_00\3&267A616A&0&9A
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9607&SUBSYS_2A92103C&REV_00\3&267A616A&0&38
       Driver: n/a
         Name: RS880
    Device ID: PCI\VEN_1002&DEV_9710&SUBSYS_2A92103C&REV_00\4&456635&0&2808
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4396&SUBSYS_2A92103C&REV_00\3&267A616A&0&92
       Driver: n/a
         Name: PCI standard PCI-to-PCI bridge
    Device ID: PCI\VEN_1022&DEV_9602&SUBSYS_96021022&REV_00\3&267A616A&0&08
       Driver: n/a
         Name: PCI standard ISA bridge
    Device ID: PCI\VEN_1002&DEV_439D&SUBSYS_2A92103C&REV_00\3&267A616A&0&A3
       Driver: n/a
         Name: AMD AHCI Compatible RAID Controller
    Device ID: PCI\VEN_1002&DEV_4392&SUBSYS_2A92103C&REV_00\3&267A616A&0&88
       Driver: n/a
         Name: PCI standard host CPU bridge
    Device ID: PCI\VEN_1022&DEV_9601&SUBSYS_2A92103C&REV_00\3&267A616A&0&00
       Driver: n/a
         Name: Standard OpenHCD USB Host Controller
    Device ID: PCI\VEN_1002&DEV_4399&SUBSYS_2A92103C&REV_00\3&267A616A&0&A5
       Driver: n/a
         Name: ATI I/O Communications Processor SMBus Controller
    Device ID: PCI\VEN_1002&DEV_4385&SUBSYS_2A92103C&REV_3C\3&267A616A&0&A0
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16385
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    WMT MuxDeMux Filter,0x00200000,0,0,WMM2FILT.dll,2.06.4037.0000
    CyberLink Audio Decoder (HP),0x00201000,1,1,CLAud.ax,6.03.0000.1322
    PCM Video/SP Decoder,0x00200000,2,3,PCMRVSD.ax,6.00.0000.3922
    MSDVD Audio Wizard (HP),0x00200001,1,1,CLAudWizard.ax,1.00.0000.3616
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,14.00.8081.0709
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,14.00.8081.0709
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,14.00.8081.0709
    CyberLink Volume Meter,0x00200000,1,0,HPVolumeMeter.ax,1.00.0000.0001
    CyberLink MPEG Video Encoder,0x00200000,1,1,P2GVidEnc.ax,6.00.0001.2226
    CyberLink DVD Navigator (HP),0x00200000,0,3,CLNavX.ax,8.00.0002.3109
    PCM Audio Decoder,0x00200000,1,1,PCMRAud.ax,6.00.0000.4104
    CyberLink MP3/WAV Wrapper,0x00200000,1,1,P2GMP3Wrap.ax,3.07.0000.1314
    CyberLink Line21 Decoder Filter (HP),0x00200000,0,2,CLLine21.ax,4.00.0000.9625
    PCM Video Regulator,0x00200000,1,1,PCMRResample.ax,4.00.0000.0126
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
    CyberLink MPEGV Analyzer,0x00200000,1,1,PCMRmpegvanalyzer.ax,2.00.0000.2620
    PCM MPEG Video Encoder,0x00200000,1,1,PCMRMpgVEnc2.ax,5.00.0000.1206
    CyberLink File Map Source,0x00200000,0,1,PCMRFMSrc.ax,1.00.0000.0810
    CyberLink AudioCD Filter,0x00200000,0,1,P2GAudioCD.ax,5.00.0000.1321
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.16490
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.16385
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
    WMT AudioAnalyzer,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    CyberLink Video Effect (HP),0x00200000,1,1,CLVidFx.ax,1.00.0000.1523
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7600.16385
    CyberLink Editing Service 3.0 (Source),0x00200000,0,2,P2GEdtKrn.dll,3.00.0000.2911
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    CL_EVRWindow,0x00200000,0,0,PCMREvr.dll,1.00.0000.2315
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16385
    Cyberlink SubTitle Importor (HP),0x00200000,1,1,CLSubTitle.ax,1.00.0000.1604
    WMT Format Conversion,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.16385
    WMT Black Frame Generator,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
    WMT Screen Capture filter,0x00200000,0,1,WMM2FILT.dll,2.06.4037.0000
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    P2G Video Decoder,0x00200000,2,3,P2GVSD.ax,6.00.0000.2310
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    CyberLink AVI Audio Time Regulator,0x00200000,1,1,PCMRAVI_AudTR.ax,1.00.0001.0213
    CyberLink Audio Noise Reduction,0x00200000,1,1,PCMRAuNRWrapper.ax,1.00.0000.1318
    CyberLink Demultiplexer,0x00200000,1,0,PCMRdemuxer.ax,1.00.0000.6327
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.16385
    CyberLink Audio Effect,0x00200000,1,1,PCMRAudFx.ax,6.00.0000.0805
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
    CyberLink Pipe Switch,0x00200000,1,1,PCMRPipSwch.ax,1.00.0000.3215
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    CyberLink Video Regulator,0x00200000,1,1,P2GRGL.ax,2.00.0000.3328
    P2G Audio Decoder,0x00200000,1,1,P2GAud.ax,6.01.0000.3601
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
    CyberLink Audio Decoder (HP),0x00200000,1,1,CLAud.ax,6.03.0000.1722
    WMT Import Filter,0x00200000,0,1,WMM2FILT.dll,2.06.4037.0000
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
    Bitmap Generate,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
    CyberLink Video Effect,0x00200000,1,1,P2GVidFx.ax,1.00.0000.2030
    Cyberlink SubTitle(HP),0x00200000,1,1,CLSubTitle.ax,1.00.0000.6016
    PCM SnapShotTIP Filter,0x00200000,1,1,PCMRSShot.ax,1.00.0000.2504
    WMT VIH2 Fix,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    CyberLink Video Effect (HP),0x00200000,1,1,CLVidFx.ax,1.00.0000.2024
    Record Queue,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    PCM Video Effect,0x00200000,1,1,PCMRVidFx.ax,1.00.0000.3512
    CyberLink Audio Noise Reduction,0x00200000,1,1,P2GAuNRWrapper.ax,2.00.0000.1017
    WMT Audio Mixer,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    CyberLink EPG Decoder,0x00200000,1,1,PCMREpgDec.ax,1.00.0000.2917
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16385
    CyberLink Load Image Filter,0x00200000,0,1,CLImage.ax,3.00.0000.2307
    CyberLink MPEG-2 Splitter,0x00200000,1,2,P2Gm2spliter.ax,2.04.0000.2301
    CyberLink Video/SP Decoder (HP),0x00200000,2,3,CLVSD.ax,8.02.0000.1818
    CyberLink Audio VolumeBooster,0x00200000,1,1,P2GVB.ax,1.00.0000.1008
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
    CyberLink Teletext Decoder Filter,0x00200000,0,2,PCMRttxdec.ax,2.05.0000.4428
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    Frame Eater,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Cyberlink Dump Dispatch Filter,0x00200000,1,0,P2GDumpDispatch.ax,1.02.0001.2412
    CyberLink AudioCD Filter (HP),0x00600000,0,1,CLAudioCD.AX,5.00.0000.0912
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7600.16385
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
    CyberLink Audio Effect (HP),0x00200000,1,1,claudfx.ax,6.00.0000.5723
    CyberLink Audio Resampler,0x00200000,1,1,P2GAuRsmpl.ax,1.00.0000.2625
    File Writer,0x00200000,1,0,WLXVAFilt.dll,14.00.8081.0709
    CyberLink TimeStretch Filter (HP),0x00200000,1,1,clauts.ax,1.00.0000.5423
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
    CyberLink MPEG-1 Splitter,0x00200000,1,2,P2Gm1spliter.ax,2.04.0000.2301
    WMT Sample Information Filter,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    CyberLink Tzan Filter (HP),0x00200000,1,1,CLTzan.ax,3.00.0001.2711
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.16385
    CyberLink File Map Sink,0x00200000,1,0,PCMRFMSnk.ax,1.00.0000.0810
    PCM MPEG-2 Splitter,0x00200000,1,2,PCMRM2Splter.ax,2.02.0000.4328
    File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
    Cyberlink File Reader (Async.),0x00200000,0,1,P2GReader.ax,3.00.0000.3016
    CyberLink SBE Source Filter,0x00200000,0,0,PCMRsbesrc.ax,2.00.0000.2620
    CyberLink M2V Writer,0x00200000,1,0,P2GM2VWriter.ax,1.03.0000.2017
    WMT Log Filter,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    WMT Virtual Renderer,0x00200000,1,0,WMM2FILT.dll,2.06.4037.0000
    PCM Audio Encoder,0x00200000,2,0,PCMRaudenc.ax,2.01.0000.2031
    Cyberlink Dump Filter,0x00200000,1,0,P2GDump.ax,3.00.0000.7122
    PCM Dump Filter,0x00200000,1,0,PCMRdump.ax,3.00.0000.8231
    CyberLink Video Stabilizer,0x00200000,1,1,P2GVideoStabilizer.ax,1.00.0000.1017
    Cyberlink TS Information,0x00200000,1,0,PCMRTSInfo.ax,1.00.0000.2718
    CyberLink DVD Navigator (HP),0x00200000,0,3,CLNavX.ax,8.00.0003.3115
    CyberLink PCM Wrapper,0x00200000,1,1,P2GPCMEnc.ax,1.01.0000.0321
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7600.16385
    PCM Audio Resampler,0x00200000,1,1,PCMRAuRsmpl.ax,1.00.0000.2304
    CyberLink DVB Subtitle Decoder,0x00200000,1,1,PCMRDvbSub.ax,1.00.0000.3927
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7600.16490
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
    WMT DirectX Transform Wrapper,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600.16385
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
    PCM MPEG Muxer,0x00200000,2,1,PCMRMpgMux.ax,5.01.0000.1217
    9x8Resize,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    Allocator Fix,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.16385
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
    WMT Virtual Source,0x00200000,0,1,WMM2FILT.dll,2.06.4037.0000
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.16385
    WMT Interlacer,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    CyberLink TimeStretch Filter (HP),0x00200000,1,1,clauts.ax,1.00.0000.5423
    Cyberlink TS Filter Filter,0x00200000,1,1,PCMRTSFF.ax,1.00.0000.2718
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7600.16385
    PCM RTP Source Filter,0x00200000,0,1,PCMRRTPSrc.ax,1.00.0000.1826
    CyberLink TimeStretch Filter (CES),0x00200000,1,1,P2Gauts.ax,1.00.0000.2212
    CyberLink MP3 Wrapper-PCM,0x00200000,1,1,PCMRmp3wrap.ax,1.00.0000.0000
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7600.16385
    CyberLink TL MPEG Splitter,0x00200000,1,2,P2GTLMSplter.ax,3.02.0000.2219
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
    CyberLink MPEG Muxer,0x00200000,2,1,P2GMpgMux.ax,5.01.0000.1723
    Uncompressed Domain Shot Detection Filter,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    CyberLink Video/SP Decoder (HP),0x00200000,2,3,CLVSD.ax,8.04.0000.0615
    CyberLink Demultiplexer (HP),0x00200000,1,0,CLDemuxer.ax,1.00.0000.5405
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    CyberLink SBE Filter,0x00200000,0,0,PCMRsbe.ax,2.00.0000.2620
    CyberLink Audio Spectrum Analyzer (HP),0x00200000,1,1,CLAudSpa.ax,1.00.0000.0924
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600.16385
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
    WMT DV Extract,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    CyberLink Line21 Decoder Filter (HP),0x00200000,0,2,CLLine21.ax,4.00.0001.7527
    P2G Video Regulator,0x00200000,1,1,P2GResample.ax,2.05.0000.1818
    P2G Audio Encoder,0x00200000,2,0,P2GAudEnc.ax,2.00.0000.4815
    CyberLink PTS Regulator,0x00200000,1,1,PCMPTSReg.ax,1.00.0000.1209
    WMT Switch Filter,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    WMT Volume,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    Stretch Video,0x00200000,1,1,WMM2FILT.dll,2.06.4037.0000
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
    CyberLink TimeStretch Filter,0x00200000,1,1,PCMRAuts.ax,1.00.0000.2108
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
    CyberLink MPEG Video Encoder,0x00200000,1,1,PCMRMpgVEnc.ax,5.00.0000.4811
    CyberLink MPEG Splitter,0x00200000,1,2,CLSplter.ax,3.03.0000.2911
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
    CyberLink WMV Dumper(HP),0x00200000,2,0,PCMWMVDump.ax,1.00.0000.1526
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490
    CyberLink MPEG Decoder,0x00200000,2,3,P2GMVD.ax,5.00.0000.0929
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.16490
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16485
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16485
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16485
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    WDM Streaming Capture Devices:
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    ,0x00000000,0,0,,
    WDM Streaming Rendering Devices:
    Realtek HD Audio front output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    Realtek HD Audio rear output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16485
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16385
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16385
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16385
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16385
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    Audio Renderers:
    Speakers (Realtek High Definiti,0x00200000,1,0,quartz.dll,6.06.7600.16490
    CyberLink Audio Renderer (HP),0x00200000,1,0,CLADR.ax,6.00.0000.5222
    CyberLink Audio Renderer (HP),0x00200000,1,0,CLADR.ax,6.00.0000.5222
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
    DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490
    DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490
    Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7600.16490
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    Hi,
    Download and install the Audio driver on the link below.
    http://ftp.hp.com/pub/softpaq/sp50501-51000/sp5072​0.exe
    When this installation has completed, right click the speaker icon in the Taskbar and select Playback Devices.  Left click 'Speakers and Headphones' once to highlight it and then click the Set Default button - check if you now have audio.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Display driver stopped responding

    Hi,
    I get the above message and followed one of the links on a prior thread but when it completes the diagnostic I can not go further;
    http://h20000.www2.hp.com/bizsupport/TechSupport/S​oftwareIndex.jsp?cc=us&prodNameId=4023815&prodSeri​...
    Can you rec'd the updates for drivers I need and where I can find them?
    System Information
    Time of this report: 5/1/2013, 10:20:43
    Machine name: MYCOMPUTER-PC
    Operating System: Windows 7 Professional 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533)
    Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
    System Model: HP Compaq 6000 Pro MT PC
    BIOS: Default System BIOS
    Processor: Intel(R) Core(TM)2 Duo CPU E7600 @ 3.06GHz (2 CPUs), ~3.1GHz
    Memory: 4096MB RAM
    Available OS Memory: 3992MB RAM
    Page File: 3939MB used, 4041MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: 120 DPI (125 percent)
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Sound Tab 2: No problems found.
    Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)
    Display Devices
    Card name: Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1)
    Manufacturer: Intel Corporation
    Chip type: Intel(R) 4 Series Express Chipset Family
    DAC type: Internal
    Device Key: Enum\PCI\VEN_8086&DEV_2E12&SUBSYS_3048103C&REV_03
    Display Memory: 1695 MB
    Dedicated Memory: 32 MB
    Shared Memory: 1663 MB
    Current Mode: 1280 x 1024 (32 bit) (60Hz)
    Monitor Name: Generic PnP Monitor
    Monitor Model: DELL E197FP
    Monitor Id: DELA024
    Native Mode: 1280 x 1024(p) (60.020Hz)
    Output Type: HD15
    Driver Name: igdumd64.dll,igd10umd64.dll
    Driver File Version: 8.15.0010.1749 (English)
    Driver Version: 8.15.10.1749
    DDI Version: 10
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 7/13/2009 19:41:07, 5437952 bytes
    WHQL Logo'd: n/a
    WHQL Date Stamp: n/a
    Device Identifier: {D7B78E66-6D52-11CF-5975-4210A3C2C535}
    Vendor ID: 0x8086
    Device ID: 0x2E12
    SubSys ID: 0x3048103C
    Revision ID: 0x0003
    Driver Strong Name: igdlh.inf:Intel.Mfg.NTamd64...1:iEGL0:8.15.10.1749ci\ven_8086&dev_2e12
    Rank Of Driver: 00EC2001
    Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_B ModeWMV9_C ModeVC1_B ModeVC1_C
    Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    D3D9 Overlay: Supported
    DXVA-HD: Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled
    Sound Devices
    Description: Speakers (High Definition Audio Device)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_103C3048&​REV_1001
    Manufacturer ID: 1
    Product ID: 65535
    Type: WDM
    Driver Name: HdAudio.sys
    Driver Version: 6.01.7601.17514 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 11/20/2010 21:23:47, 350208 bytes
    Other Files:
    Driver Provider: Microsoft
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Description: Speakers (High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_103C3048&​REV_1001
    Manufacturer ID: 1
    Product ID: 65535
    Type: WDM
    Driver Name: HdAudio.sys
    Driver Version: 6.01.7601.17514 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 11/20/2010 21:23:47, 350208 bytes
    Other Files:
    Driver Provider: Microsoft
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3A65
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x413C, 0x2005
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x413C, 0x3200
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 208.9 GB
    Total Space: 239.3 GB
    File System: NTFS
    Model: WDC WD2500YD-01NVB1 ATA Device
    Drive: D:
    Model: hp DVD A DH16AAL ATA Device
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    System Devices
    Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_3048103C&REV_A2\3&214​36425&0&F0
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A6A
    Device ID: PCI\VEN_8086&DEV_3A6A&SUBSYS_3048103C&REV_02\3&214​36425&0&EF
    Driver: n/a
    Name: Standard AHCI 1.0 Serial ATA Controller
    Device ID: PCI\VEN_8086&DEV_3A02&SUBSYS_3048103C&REV_02\3&214​36425&0&FA
    Driver: n/a
    Name: Intel(R) 82567LM-3 Gigabit Network Connection
    Device ID: PCI\VEN_8086&DEV_10DE&SUBSYS_3048103C&REV_02\3&214​36425&0&C8
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A69
    Device ID: PCI\VEN_8086&DEV_3A69&SUBSYS_3048103C&REV_02\3&214​36425&0&D2
    Driver: n/a
    Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_2E17&SUBSYS_3048103C&REV_03\3&214​36425&0&1B
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A68
    Device ID: PCI\VEN_8086&DEV_3A68&SUBSYS_3048103C&REV_02\3&214​36425&0&D1
    Driver: n/a
    Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_8086&DEV_2E16&SUBSYS_3048103C&REV_03\3&214​36425&0&1A
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A67
    Device ID: PCI\VEN_8086&DEV_3A67&SUBSYS_3048103C&REV_02\3&214​36425&0&D0
    Driver: n/a
    Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_2E14&SUBSYS_3048103C&REV_03\3&214​36425&0&18
    Driver: n/a
    Name: Intel(R) ICH10 Family PCI Express Root Port 2 - 3A72
    Device ID: PCI\VEN_8086&DEV_3A72&SUBSYS_3048103C&REV_02\3&214​36425&0&E1
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A66
    Device ID: PCI\VEN_8086&DEV_3A66&SUBSYS_3048103C&REV_02\3&214​36425&0&EA
    Driver: n/a
    Name: Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1)
    Device ID: PCI\VEN_8086&DEV_2E13&SUBSYS_3048103C&REV_03\3&214​36425&0&11
    Driver: n/a
    Name: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A70
    Device ID: PCI\VEN_8086&DEV_3A70&SUBSYS_3048103C&REV_02\3&214​36425&0&E0
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A65
    Device ID: PCI\VEN_8086&DEV_3A65&SUBSYS_3048103C&REV_02\3&214​36425&0&E9
    Driver: n/a
    Name: Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1)
    Device ID: PCI\VEN_8086&DEV_2E12&SUBSYS_3048103C&REV_03\3&214​36425&0&10
    Driver: n/a
    Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_3A6E&SUBSYS_3048103C&REV_02\3&214​36425&0&D8
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A64
    Device ID: PCI\VEN_8086&DEV_3A64&SUBSYS_3048103C&REV_02\3&214​36425&0&E8
    Driver: n/a
    Name: Intel(R) 4 Series Chipset Processor to I/O Controller - 2E10
    Device ID: PCI\VEN_8086&DEV_2E10&SUBSYS_3048103C&REV_03\3&214​36425&0&00
    Driver: n/a
    Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A6C
    Device ID: PCI\VEN_8086&DEV_3A6C&SUBSYS_3048103C&REV_02\3&214​36425&0&D7
    Driver: n/a
    Name: Intel(R) ICH10D LPC Interface Controller - 3A1A
    Device ID: PCI\VEN_8086&DEV_3A1A&SUBSYS_3048103C&REV_02\3&214​36425&0&F8
    Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.1771​3
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.1751​4
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7​601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.​16426
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.​17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.1​7713
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.1752​8
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.1752​8
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17​514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17​514
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17713
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.1751​4
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17713
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17713
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17​514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601​.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.1​7514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.1751​4
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.760​1.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17713
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.1​7713
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0​000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601​.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.1751​4
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.177​13
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.06.7601​.17713
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17​528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17​528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17​528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713
    WDM Streaming Rendering Devices:
    HD Audio Speaker,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio Speaker,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17​708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17​708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.1751​4
    Audio Renderers:
    Speakers (High Definition Audio,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers (High Definition Audio Device),0x00200000,1,0,quartz.dll,6.06.7601.17713
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
    Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
    Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
    PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0

    I understand that you need the driver for your system.
    The drivers are available under graphics in this document.
    However, if the driver on the site is not working for you, I recommend posting in the business support forums found here.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Maybe you are looking for

  • Is it possible to play music videos on the Music App of my iPad 2? or it's only possible in the Video App?

    Is it possible to play music videos on the Music App of the iPad 2? Or create a playlist for the Video App? or sort the music videos by artist, genre, album, etc.?

  • Help with a Java menu

    I am rather new to this so I appreciate any help you can provide. I was asked to add an additional choice to an existing drop down (mouse over) menu. I have added the additional choice and it appears when I preview it in a browser but for some reason

  • PROBLEMS CANCELING MOVEMENTS WITH INSPECTION LOT

    We have this situation: We need to reset the GD returns but this GD returns was posted by QM and when we try to cancel in VL09 we meet the next message Message no. QA046. So we tried to cancel in other ways with the inspection lot and the usage decis

  • Linking two video clips together

    I cannot find the way, how to link two video clips together so, that when moving one, the linked clip follows. Is there a way of doing that? The manual gives nothing with words: "linking video clips". Message was edited by: TRST

  • Preview in Bridge

    i only get miniatures in the preview window when using NEF files. works perfect white JPG. help