Setting SPRO authorization only in disply mode

Hi,
I am working on authorization objects in anew role.. What is the name of the authorization object where I can set the activity for SPRO (Customzing) only in display mode ?
Thanks.
Regards,
Rajesh.

You dont need to do all this. Just create a role and add SPRO to it. Then maintain all the objects in that role to Display (Activity 03) ONLY.
However, this will not allow you access to all the zillion Tcodes that SPRO allows access to. In order to allow this, you will have to manually add ANOTHER S_TCODE object to that role and assign a * in it. So then you have access to all the Tcodes, but Display only.
This will do it for you. It did for me.
Edited by: Kunal Belnekar on Apr 1, 2008 2:53 PM
Edited by: Kunal Belnekar on Apr 1, 2008 2:54 PM

Similar Messages

  • Custom Infotype : Only for Disply Mode Change and Create Should be disable

    Dear Experts,
                        I Created a custom infotype in PM01 for Exit process , my client requirement is this infotype  only shows the details .
    Could you please tell me how to disable the Create and change button in PA30 Screen ?
    Regards,
    Sivakumar.A

    hi siva
    In PM01 itself you have option module pool, select that option go to screen program.
    there select field->dbl clk-> screen attributes pop up will come.
    there you have to change the input/output option
    Regards
    Deva

  • I have a Samsung Intensity.  It is currently set in "Alarm Only" mode.  How do I set the phone back to normal mode so it will ring?

    I have a Samsung Intensity.  It is currently set in "Alarm Only" mode.  How do I set the phone back to normal mode so it will ring?

        Pumpkin-Hill, Let's get your ringtone working properly. Go to settings and tools, press 'ok', select sound settings, press 'ok', choose call sounds. then press 'ok' and select call ringtone and select the desired tone. Let us know if this helps.
    sheritah_vzw
    Follow us on Twitter
    @VZWSupport

  • Authorization only to a certain set of users

    Hi everyone,
    I have created a report. Now I wanna give authorization only to a list of people( I mean the endusers) to view the report. How can I do it.
    Can anyone please throw some light on this soon.
    regards,
    Bhargava Kavuri.

    Hi,
    To achieve the above first you have to create <b>Authorization object using SU21 TCODE</b>.
    There u need to give Authorization object, text, class, Authorization fields[Like ACTVT(activity)].
    Then in your program at the beggining where process begins write Authorization check syntax as below:
          AUTHORITY-CHECK OBJECT 'OBJECT NAME'
                          ID 'ACTIVITY' FIELD '  '.
    Then you can ask onsite <b>BASIS</b> guys to create <b>ROLES</b> for diffrent users.
    With that u can see that the user who is having <b>ROLE/AUTHORIZATION</b> will able to run through that report and view, The end users who are not having the same will not be able to view the report.
    Hope this helps your scenario.
    Thanks & Regards,
    Rayeez.

  • SPRO authorization

    hi sap experts
    I want to give spro authorization to power users in the production system
    but only specific department users should get their tcodes under spro
    for example if MM users need only authorization of MM related things in SPRO
    so how to restrict authorization in SPRO so that particular tcodes/objects can be executed.Even some of the objects under SPRO tree doesn't have t-codes also.
    regds
    sandeep

    hi,
    For Individual Users, you use transaction code <b>SU01</b>, give the user name, click on change mode, there under tab Roles, you have SAP standard roles defined, depending on the module and the area on which the user belongs, assign the Roles, Save the details, For Creating your own Role make use of Tcode <b>PFCG</b>, check for SAP help for help on Role Maintainance.
    Cheers...
    Santosh.
    Mark All Usefull Answers.<b></b><i></i>

  • Set Up Authorization Check for G/L Accounts  into PO creation

    Dear friends !
    How could I activate check to the access to certain accounts into PO creation ?
    I know that is possible to activate this into Purchasing customizing under path
    SPRO > Materials management > Purchasing > Purchase order > Set Up Authorization Check for G/L Accounts
    But could I use it to give access only to certain GL Accounts by user ? Is this the purpose of this customizing ?
    If yes what´s the object should I use to link with user account !?
    best regards,
    Ale

    Hi ,
    After you setup the configuration in transaction OMRP, please setup up
    the authorisation group in the account code (FS02, the field is on the
    "Control", technical name is BEGRU).
    When a account assigned purchase order is created, the system checks for
    object F_BKPF_BES with values from the BEGRU and activity 01.

  • How to set up Airport Express in Bridge mode for hotel use

    Please provide step by step instructions on how to set up Airport Express in Bridge mode for hotel use. I do not have a computer with me, only an iPhone and AEX 802.11n.

    +"Please provide step by step instructions on how to set up Airport Express in Bridge mode for hotel use. I do not have a computer with me, only an iPhone and AEX 802.11n."+
    AirPort Utility is the application that must be used to setup and make any configuration changes to the AirPort Express. I'm not aware of an "App" for this.
    If you could borrow a computer from someone there for 30 minutes or maybe use the computer in the lobby, you could download AirPort Utility and reconfigure your Express. To help with setup, use an ethernet cable from the computer to the Express to help AirPort Utility "see" the Express.
    http://support.apple.com/downloads/#airport

  • Function Module working only in debug mode

    Hi all,
    The following Function Module works only in debug mode. The purpose of this FM is to create a notification and to put it in progress status. If I put a breakpoint before "CALL FUNCTION 'BAPI_ALM_NOTIF_PUTINPROGRESS'" it works. If I execute this FM without putting a breakpoint at that place it creates the notification but doesnt put it in progress status.
    In other words, the last BAPI call doesnot work if I dont put a breakpoint before.
    Can somebody help me to find out where is the problem?
    Thanks,
    Younes
    FUNCTION ZFM_CREATE_NOTIF_IN_PROCESS.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(NOTIFTYP) TYPE  CHAR2
    *"     VALUE(NOTIFHEADER) TYPE  BAPI2080_NOTHDRI
    *"  EXPORTING
    *"     VALUE(NOTIFNUMBER) TYPE  CHAR12
    *"     VALUE(NOTIFCURSTATUS) TYPE  CHAR40
    DATA: gs_bapi2080_nothdre TYPE bapi2080_nothdre,
          gt_return TYPE TABLE OF bapiret2.
    The notification is created with a temporary number
    CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'
      EXPORTING
        notif_type         = NOTIFTYP
        notifheader        = NOTIFHEADER
      IMPORTING
        notifheader_export = gs_bapi2080_nothdre
      TABLES
        return             = gt_return.
    READ TABLE gt_return TRANSPORTING NO FIELDS WITH KEY type = 'E'.
    CHECK sy-subrc IS NOT INITIAL.
    *The notication will be saved with a number which isnt temporary
    CALL FUNCTION 'BAPI_ALM_NOTIF_SAVE'
      EXPORTING
        number      = gs_bapi2080_nothdre-notif_no
      IMPORTING
        notifheader = gs_bapi2080_nothdre
      TABLES
        return      = gt_return.
    READ TABLE gt_return TRANSPORTING NO FIELDS WITH KEY type = 'E'.
    CHECK sy-subrc IS NOT INITIAL.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    The Notif is already created, it will be put in progress status
    NOTIFNUMBER = gs_bapi2080_nothdre-notif_no.
       CALL FUNCTION 'BAPI_ALM_NOTIF_PUTINPROGRESS'
            EXPORTING
              NUMBER             = NOTIFNUMBER
              LANGU              = SY-LANGU
           IMPORTING
             SYSTEMSTATUS       = NOTIFCURSTATUS
           TABLES
             RETURN             = gt_return.

    Hi Emmanuel,
    Now I get your problem: you want to wait to have the commit finished! The call to BAPI_TRANSACTION_COMMIT has an optional parameter 'WAIT' which is space by default which causes only a commit. When you set this parameter to 'X' it will do a commit work and wait.
    This should solve your problem!
    Regards,
    John.

  • Permissions on Android AT200 removable SD card set to read only

    Recently the removale SD card on my at200 has been set to read only for all but a few applications. This mean that when editing or trying to save, copy docs on the SD card I get the "not enough permissions" message. Any editing by these applications requires shifting files to onboard SD card and back again.
    Toshiba file manager is able to rw OK, but my other file manager fails, as does ezy PDF.
    Reading the attributes of the SD card show that it is set to rw for data.p (permissions XML). But looking at info from file manager shows sdcard directories and files set to dr- or -r-.
    Is there some way of getting this changed to allow access for all my installed apps? Or even some?
    Cheers
    rabel

    MisterX,
    Found this note from zc2 on the xda forum dealing with the same issue December 2011.
    "The owners of Honeycomb-powered tablets experience a problem writing to the external SD card, because since v3.2 the permissions for the files there were changed from sdcard_rw to media_rw.
    According the file /system/etc/permissions/platform.xml, any application with declared permission "android.permission.WRITE_MEDIA_STORAGE" should be included to that media_rw group.
    But that won't happen.
    I made a test application to show the group membership (it just executes the "id" command), and according to its output, the application is not member of the media_rw group, despite the "android.permission.WRITE_MEDIA_STORAGE" permission is mentioned in its manifest.xml"
    This is somewhat confirmed by a comment returned to me from the AntTek File Explorer developers on an interum work around for this problem (a common one since 3.2)
    "While waiting, the simple solution, if your device is rooted, is as follows:
    1. Using AntTek File Explorer, active Native mode from application preference.
    2. Navigate to /system/etc/permissions.
    3. Open platform.xml and find the WRITE_EXTERNAL_STORAGE permission.
    4. Add an additional group definition for this permission: <group gid="media_rw" />. It will grant AntTek Explorer (and other applications) permission to writing to removable SD Card. After edited, it will look like:
    <permission name="android.permission.WRITE_EXTERNAL_STORAGE">
    <group gid="sdcard_rw" />
    <group gid="media_rw" />
    </permission>
    5. Save the changes to the file.
    6. Restart your tablet."
    My tablet is not rooted so this was not available to me, but it appears this is a major issue for Honeycomb, including the version on the AT200. Is there any plans to fix this bug do you think? Or is there a date for the promised update to ICS for the AT200, another prime selling point.
    Cheers

  • Set to read only

    in  sender file adapter in processing mode what is the use of set to read only  option
    regards
    raghu

    Hi,
    This set to read only mode for sender file communication channel will process the fiels have write permission and change it to Read only to not to modify it later on.
    this option is available for NFS only (Native file system)
    Thanks
    Swarup

  • Set ZATTR_PROD may only be changed in the original system

    Please,
    Iu2019ve enhancement the PRODUCT_CUSTOMER2 BADI to change product attribute type when Iu2019m replicating products from ECC to CRM.
    When I try to replicate the material from ECC to CRM thereu2019s the follow error:
    "Set ZATTR_PROD may only be changed in the original system"
    How can I solve it?
    Thanks in advance
    Edited by: Ronaldo Alvarenga on Oct 25, 2010 11:17 PM

    Hello,
    Maintain an entry for Z* settype in below path:
    SPRO>IMG>CRM>Master Data>Products>Enhancements>Allow Changes to Product Data.
    Hope this helps!
    Best Regards,
    Shanthala Kudva.

  • SICF- only in display mode

    Hi all,
    I want the tcode SICF to be in display mode alone.
    Under which authorization object it comes?
    Can I make only in display mode.
    Regards,
    R.Suganya

    Hi Alex,
    already full authorization was given.
    now i changed to only display. now it is working fine.
    thanks.

  • How to set wireless printer at ad Hoc mode in CP1025nw with auto-off is off?? ie never auto-off!!

    How to set wireless printer at ad Hoc mode in CP1025nw with auto-off is off?? ie  never auto-off!!
    Thank you very much for your help if any!!
    This question was solved.
    View Solution.

    Quite a few questions there, Sends, but I will do what I can to answer them. 
    I would first recommend buying a router, even if it is one that you won't connect to the internet and network this with your other PCs and the printer. This will give you the best functionality and results for what you are attempting to do. 
    Additionally, the Auto Off feature of the printer can be disabled, and is not affected by the connection type. You can usually go through the Setup Menu and select Tools to change the options there on the energy saving features. 
    Lastly, the auto off feature on your computer is a Windows question, but an easy one to answer. If you are on a laptop you can right-click on the battery in the service tray (bottom right hand corner) and change the energy conservation settings. 
    You might be better off installing the printer through the USB cord and alternating that based on when you are using it, but that would be optimal only if you are printing only a few documents on an irregular basis. A networked connection is the easiest to manage over several computers, honesty, but you do have some requirements for that connection and limitations as well.
    I hope this information is useful! 

  • Only wireless B mode works properly?

    Okay, so I have an iPhone 5 and the Wifi speeds are ridiculously slow, unless I set my router to wireless b mode only.
    I wouldn't even bother with that, if it weren't for the fact that wireless b only supports a max speed of 11Mbps.
    So, I really need to figure out a way to make it work with g, or (ideally) mixed networks, any ideas?

    See if there is a firmware update available for it on their support site. If not, reset the router by pulling the power to it, waiting a minute then plugging it back in.

  • Flash 11.1 runs only in Software mode in all browsers

    Hi,
    I have a problem that the Flash player runs only in Software mode in all browsers.
    I have the following notebook: Dell Vostro 3350 with dual graphics (Intel HD Graphics integrated and AMD Radeon HD 6490M dedicated), the OS is Windows 7 64-bit.
    The driver version that is in the device manager is the following: 8.840.7.3000 (I've made sure to have installed the latest driver from Dell)
    The hardware acceleration radio button in the Flash settings is on, of course.
    The funny thing is that in the Flash 11 Incubator program DirectX rendering was working properly, the problems have started since the RC version of Flash 11.
    Can you help me somehow?
    Many thanks,
    CapKosmaty

    Hey guys, I'm unburying this thread; I've waited a bit, hoping that an update would put my model from the blacklist, but there's no change;
    Here's my dxdiag log: (could it be that Flash has problems with switchable graphics? I run different retail games, like Star Wars: The Old Republic recently, and they run perfectly on the Radeon HD 6490M)
    again, I'm grateful for help!
    System Information
    Time of this report: 2/18/2012, 18:24:43
           Machine name: CAPKOSMATY-PC
       Operating System: Windows 7 Professional 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506)
               Language: German (Regional Setting: German)
    System Manufacturer: Dell Inc.
           System Model: Vostro 3350
                   BIOS: BIOS Date: 09/30/11 14:00:46 Ver: 04.06.04
              Processor: Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz (4 CPUs), ~2.7GHz
                 Memory: 6144MB RAM
    Available OS Memory: 6052MB RAM
              Page File: 3810MB used, 8290MB 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.
              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: ATI Technologies Inc.
              Chip type: Intel(R) HD Graphics Family
               DAC type: Internal
             Device Key: Enum\PCI\VEN_8086&DEV_0126&SUBSYS_04CC1028&REV_09
         Display Memory: 3329 MB
       Dedicated Memory: 559 MB
          Shared Memory: 2769 MB
           Current Mode: 1366 x 768 (32 bit) (60Hz)
           Monitor Name: PnP-Monitor (Standard)
          Monitor Model: unknown
             Monitor Id: AUO312C
            Native Mode: 1366 x 768(p) (60.003Hz)
            Output Type: Internal
            Driver Name: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumdx32,igd10umd32,igd10umd32
    Driver File Version: 8.15.0010.2361 (English)
         Driver Version: 8.840.7.3000
            DDI Version: 11
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 4/10/2011 20:51:02, 8238592 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B78E66-4266-11CF-A877-C624B7C2C535}
              Vendor ID: 0x8086
              Device ID: 0x0126
              SubSys ID: 0x04CC1028
            Revision ID: 0x0009
    Driver Strong Name: oem21.inf:ATI.Mfg.NTamd64.6.1:iSNBM1ML_PROXY:8.840.7.3000:pci\ven_8086&dev_0126&subsys_04 cc1028
         Rank Of Driver: 00E60001
            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: Not Supported
                DXVA-HD: Not Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Lautsprecher (High Definition Audio-Gerät)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_76D1&SUBSYS_102804B2&REV_1002
            Manufacturer ID: 1
                 Product ID: 65535
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.01.7601.17514 (German)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 11/21/2010 04:23:47, 350208 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: Mikrofon (High Definition Audio-Gerät)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: HdAudio.sys
             Driver Version: 6.01.7601.17514 (German)
          Driver Attributes: Final Retail
              Date and Size: 11/21/2010 04:23:47, 350208 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Maus
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Tastatur
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Wacom Virtual Hid Driver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x1001
            FF Driver: n/a
          Device Name: Wacom Virtual Hid Driver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x1001
            FF Driver: n/a
          Device Name: Wacom Virtual Hid Driver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x1001
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB-Root-Hub
    | Vendor/Product ID: 0x8086, 0x1C26
    | Matching Device ID: usb\root_hub20
    | Service: usbhub
    | Driver: usbhub.sys, 3/25/2011 04:24:56, 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_#0002
    | | Matching Device ID: usb\class_09
    | | Service: usbhub
    | | Driver: usbhub.sys, 3/25/2011 04:24:56, 343040 bytes
    Gameport Devices
    PS/2 Devices
    + Standardtastatur (PS/2)
    | 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
    |
    + Terminalserver-Tastaturtreiber
    | 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
    |
    + Dell Touchpad
    | Matching Device ID: *dll04b2
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-konforme Maus
    | Vendor/Product ID: 0x046D, 0xC05A
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 01:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes
    |
    + Wacom Mouse
    | Matching Device ID: hid\wacomvirtualhid&col03
    | Upper Filters: wacommousefilter
    | Service: mouhid
    | Driver: wacommousefilter.sys, 10/5/2010 12:26:02, 12848 bytes
    | Driver: mouhid.sys, 7/14/2009 01:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes
    |
    + Terminalserver-Maustreiber
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 11/21/2010 04:23:47, 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: 305.9 GB
    Total Space: 461.8 GB
    File System: NTFS
          Model: WDC WD5000BPKT-75PK4T0
          Drive: D:
          Model: TSSTcorp DVD+-RW TS-U633J
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 147456 bytes
          Drive: E:
          Model: DTSoftBusCd00
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 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_04B21028&REV_05\3&11583659&1&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 (German), 3/25/2011 04:29:14, 325120 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.01.7601.21692 (German), 3/25/2011 04:24:56, 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_04B21028&REV_B5\3&11583659&1&E0
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 184704 bytes
         Name: AMD Radeon HD 6490M
    Device ID: PCI\VEN_1002&DEV_6760&SUBSYS_04CC1028&REV_00\4&2D92FC7C&0&0008
       Driver: C:\windows\system32\DRIVERS\atikmdag.sys, 8.01.0001.1142 (English), 5/12/2011 11:16:38, 9319424 bytes
       Driver: C:\windows\system32\DRIVERS\ati2erec.dll, 1.00.0000.0019 (English), 5/12/2011 07:15:20, 53248 bytes
       Driver: C:\windows\system32\DRIVERS\atikmpag.sys, 8.14.0001.6203 (English), 5/12/2011 07:16:54, 304128 bytes
       Driver: C:\windows\system32\atiumd64.dll, 7.14.0010.0825 (English), 5/12/2011 07:24:04, 5395968 bytes
       Driver: C:\windows\system32\atiumd6a.dll, 8.14.0010.0303 (English), 5/12/2011 08:11:20, 3420672 bytes
       Driver: C:\windows\system32\atitmm64.dll, 6.14.0011.0023 (English), 5/12/2011 07:52:38, 120320 bytes
       Driver: C:\windows\system32\atiicdxx.dat, 3/1/2011 02:30:06, 233012 bytes
       Driver: C:\windows\system32\amdpcom64.dll, 8.14.0010.0023 (English), 5/12/2011 07:51:30, 53760 bytes
       Driver: C:\windows\system32\atimpc64.dll, 8.14.0010.0023 (English), 5/12/2011 07:51:30, 53760 bytes
       Driver: C:\windows\system32\atiadlxx.dll, 6.14.0010.1054 (English), 5/12/2011 07:17:28, 361984 bytes
       Driver: C:\windows\system32\atiumd6a.cap, 5/12/2011 08:08:58, 916704 bytes
       Driver: C:\windows\system32\atimuixx.dll, 6.14.0010.1002 (English), 5/12/2011 07:51:56, 16384 bytes
       Driver: C:\windows\system32\atiapfxx.exe, 6.14.0010.1001 (English), 5/12/2011 07:58:04, 147456 bytes
       Driver: C:\windows\system32\atiapfxx.blb, 5/12/2011 07:58:38, 150136 bytes
       Driver: C:\windows\system32\atiumd6v.dll, 7.14.0010.0184 (English), 5/12/2011 08:11:54, 1208320 bytes
       Driver: C:\windows\system32\atiesrxx.exe, 6.14.0011.1090 (English), 5/12/2011 07:53:46, 203264 bytes
       Driver: C:\windows\system32\atieclxx.exe, 6.14.0011.1090 (English), 5/12/2011 07:54:20, 480256 bytes
       Driver: C:\windows\system32\atipdl64.dll, 6.14.0010.2563 (English), 5/12/2011 07:52:18, 423424 bytes
       Driver: C:\windows\system32\atiedu64.dll, 6.14.0010.2514 (English), 5/12/2011 07:51:50, 59392 bytes
       Driver: C:\windows\system32\ATIDEMGX.dll, 2.00.4148.39432 (German), 5/12/2011 07:54:24, 462848 bytes
       Driver: C:\windows\system32\atio6axx.dll, 6.14.0010.10664 (English), 5/12/2011 08:14:20, 22623232 bytes
       Driver: C:\windows\system32\aticaldd64.dll, 6.14.0010.1353 (English), 5/12/2011 08:00:06, 7467520 bytes
       Driver: C:\windows\system32\aticalrt64.dll, 6.14.0010.1353 (English), 5/12/2011 08:00:28, 51200 bytes
       Driver: C:\windows\system32\aticalcl64.dll, 6.14.0010.1353 (English), 5/12/2011 08:00:18, 44544 bytes
       Driver: C:\windows\system32\atipblag.dat, 3/18/2011 07:05:12, 3914 bytes
       Driver: C:\windows\system32\atiu9p64.dll, 8.14.0001.6203 (English), 5/12/2011 07:16:00, 38912 bytes
       Driver: C:\windows\system32\atiuxp64.dll, 8.14.0001.6203 (English), 5/12/2011 07:16:12, 40448 bytes
       Driver: C:\windows\system32\atig6pxx.dll, 8.14.0001.6203 (English), 5/12/2011 07:17:14, 14848 bytes
       Driver: C:\windows\system32\atig6txx.dll, 8.14.0001.6203 (English), 5/12/2011 07:17:08, 39936 bytes
       Driver: C:\windows\system32\atibtmon.exe, 2.00.0000.0000 (English), 5/12/2009 02:35:30, 118784 bytes
       Driver: C:\windows\system32\atidxx64.dll, 8.17.0010.0348 (English), 5/12/2011 07:39:46, 5080576 bytes
       Driver: C:\windows\SysWOW64\atiumdag.dll, 7.14.0010.0825 (English), 5/12/2011 07:30:04, 4246016 bytes
       Driver: C:\windows\SysWOW64\atiumdva.dll, 8.14.0010.0303 (English), 5/12/2011 08:04:02, 3631104 bytes
       Driver: C:\windows\SysWOW64\amdpcom32.dll, 8.14.0010.0023 (English), 5/12/2011 07:51:22, 52736 bytes
       Driver: C:\windows\SysWOW64\atimpc32.dll, 8.14.0010.0023 (English), 5/12/2011 07:51:22, 52736 bytes
       Driver: C:\windows\SysWOW64\atiadlxy.dll, 6.14.0010.1054 (English), 5/12/2011 07:17:22, 258048 bytes
       Driver: C:\windows\SysWOW64\atiumdva.cap, 5/12/2011 08:03:36, 916704 bytes
       Driver: C:\windows\SysWOW64\atiumdmv.dll, 7.14.0010.0184 (English), 5/12/2011 08:11:30, 1912832 bytes
       Driver: C:\windows\SysWOW64\atipdlxx.dll, 6.14.0010.2563 (English), 5/12/2011 07:52:12, 356352 bytes
       Driver: C:\windows\SysWOW64\Oemdspif.dll, 6.15.0006.0006 (English), 5/12/2011 07:52:00, 278528 bytes
       Driver: C:\windows\SysWOW64\ati2edxx.dll, 6.14.0010.2514 (English), 5/12/2011 07:51:46, 43520 bytes
       Driver: C:\windows\SysWOW64\atioglxx.dll, 6.14.0010.10664 (English), 5/12/2011 07:53:08, 17469952 bytes
       Driver: C:\windows\SysWOW64\atidxx32.dll, 8.17.0010.0348 (English), 5/12/2011 07:48:36, 4304896 bytes
       Driver: C:\windows\SysWOW64\aticaldd.dll, 6.14.0010.1353 (English), 5/12/2011 07:57:04, 6098432 bytes
       Driver: C:\windows\SysWOW64\aticalrt.dll, 6.14.0010.1353 (English), 5/12/2011 08:00:26, 46080 bytes
       Driver: C:\windows\SysWOW64\aticalcl.dll, 6.14.0010.1353 (English), 5/12/2011 08:00:16, 44032 bytes
       Driver: C:\windows\SysWOW64\atipblag.dat, 3/18/2011 07:05:12, 3914 bytes
       Driver: C:\windows\SysWOW64\atiu9pag.dll, 8.14.0001.6203 (English), 5/12/2011 07:15:54, 29184 bytes
       Driver: C:\windows\SysWOW64\atiuxpag.dll, 8.14.0001.6203 (English), 5/12/2011 07:16:06, 31232 bytes
       Driver: C:\windows\SysWOW64\atigktxx.dll, 8.14.0001.6203 (English), 5/12/2011 07:17:00, 32768 bytes
       Driver: C:\windows\SysWOW64\atiglpxx.dll, 8.14.0001.6203 (English), 5/12/2011 07:17:12, 12800 bytes
       Driver: C:\windows\atiogl.xml, 1/14/2011 21:00:54, 30831 bytes
       Driver: C:\windows\system32\aticfx64.dll, 8.17.0010.1072 (English), 5/12/2011 07:56:46, 788480 bytes
       Driver: C:\windows\SysWOW64\aticfx32.dll, 8.17.0010.1072 (English), 5/12/2011 07:57:56, 672256 bytes
       Driver: C:\windows\system32\coinst.dll, 1.00.0003.0005 (English), 5/12/2011 08:05:12, 58880 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C26
    Device ID: PCI\VEN_8086&DEV_1C26&SUBSYS_04B21028&REV_05\3&11583659&1&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 (German), 3/25/2011 04:29:14, 325120 bytes
       Driver: C:\windows\system32\drivers\usbhub.sys, 6.01.7601.21692 (German), 3/25/2011 04:24:56, 343040 bytes
         Name: Intel(R) Mobile Express Chipset SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_1C03&SUBSYS_04B21028&REV_05\3&11583659&1&FA
       Driver: C:\windows\system32\DRIVERS\iaStor.sys, 10.01.0000.1008 (English), 11/7/2010 00:45:48, 438808 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller - 1C22
    Device ID: PCI\VEN_8086&DEV_1C22&SUBSYS_04B21028&REV_05\3&11583659&1&FB
       Driver: n/a
         Name: Intel(R) HD Graphics Family
    Device ID: PCI\VEN_8086&DEV_0126&SUBSYS_04CC1028&REV_09\3&11583659&1&10
       Driver: C:\windows\system32\DRIVERS\igdkmd64.sys, 8.15.0010.2361 (English), 4/10/2011 20:51:06, 12223936 bytes
       Driver: C:\windows\system32\igdumd64.dll, 8.15.0010.2361 (English), 4/10/2011 20:51:02, 8238592 bytes
       Driver: C:\windows\system32\igd10umd64.dll, 8.15.0010.2361 (English), 4/10/2011 20:37:38, 14511104 bytes
       Driver: C:\windows\system32\igfxcmrt64.dll, 1.00.0000.1007 (English), 4/10/2011 19:40:40, 136704 bytes
       Driver: C:\windows\system32\IccLibDll_x64.dll, 4/10/2011 19:40:40, 94208 bytes
       Driver: C:\windows\system32\igkrng600.bin, 4/10/2011 20:49:08, 963116 bytes
       Driver: C:\windows\system32\igcompkrng600.bin, 4/10/2011 20:49:08, 145804 bytes
       Driver: C:\windows\system32\igfcg600m.bin, 4/10/2011 20:49:08, 218304 bytes
       Driver: C:\windows\SysWow64\igkrng600.bin, 4/10/2011 20:49:08, 963116 bytes
       Driver: C:\windows\SysWow64\igcompkrng600.bin, 4/10/2011 20:49:08, 145804 bytes
       Driver: C:\windows\SysWow64\igfcg600m.bin, 4/10/2011 20:49:08, 218304 bytes
       Driver: C:\windows\system32\igdde64.dll, 4/10/2011 20:48:54, 75776 bytes
       Driver: C:\windows\SysWow64\igdde32.dll, 4/10/2011 20:42:48, 56832 bytes
       Driver: C:\windows\system32\iglhxs64.vp, 4/10/2011 21:15:54, 17272 bytes
       Driver: C:\windows\system32\iglhxo64.vp, 4/10/2011 19:40:32, 59243 bytes
       Driver: C:\windows\system32\iglhxc64.vp, 4/10/2011 19:40:32, 59062 bytes
       Driver: C:\windows\system32\iglhxg64.vp, 4/10/2011 19:40:34, 59174 bytes
       Driver: C:\windows\system32\iglhxa64.vp, 4/10/2011 19:40:34, 1074 bytes
       Driver: C:\windows\system32\iglhxa64.cpa, 4/10/2011 19:40:34, 1981696 bytes
       Driver: C:\windows\system32\iglhcp64.dll, 2.00.0002.0001 (English), 4/10/2011 19:40:36, 98304 bytes
       Driver: C:\windows\system32\iglhsip64.dll, 2.00.0002.0001 (English), 4/10/2011 19:40:36, 376832 bytes
       Driver: C:\windows\SysWow64\igdumd32.dll, 8.15.0010.2361 (English), 4/10/2011 20:44:18, 6275072 bytes
       Driver: C:\windows\SysWow64\igdumdx32.dll, 8.15.0010.2361 (English), 4/10/2011 20:41:02, 577024 bytes
       Driver: C:\windows\SysWow64\igfxdv32.dll, 8.15.0010.2361 (English), 4/10/2011 20:06:44, 288768 bytes
       Driver: C:\windows\SysWow64\igd10umd32.dll, 8.15.0010.2361 (English), 4/10/2011 20:31:18, 12289536 bytes
       Driver: C:\windows\SysWow64\iglhcp32.dll, 2.00.0002.0001 (English), 4/10/2011 19:40:32, 98304 bytes
       Driver: C:\windows\SysWow64\iglhsip32.dll, 2.00.0002.0001 (English), 4/10/2011 19:40:32, 376832 bytes
       Driver: C:\windows\SysWow64\igfxcmrt32.dll, 1.00.0000.1007 (English), 4/10/2011 19:40:40, 158208 bytes
       Driver: C:\windows\system32\difx64.exe, 4/10/2011 20:59:56, 179032 bytes
       Driver: C:\windows\system32\hccutils.dll, 8.15.0010.2361 (English), 4/10/2011 20:12:16, 109056 bytes
       Driver: C:\windows\system32\igfxsrvc.dll, 8.15.0010.2361 (English), 4/10/2011 20:12:46, 62464 bytes
       Driver: C:\windows\system32\igfxsrvc.exe, 8.15.0010.2361 (English), 4/10/2011 21:00:04, 509272 bytes
       Driver: C:\windows\system32\igfxpph.dll, 8.15.0010.2361 (English), 4/10/2011 20:13:08, 335872 bytes
       Driver: C:\windows\system32\igfxcpl.cpl, 8.15.0010.2361 (English), 4/10/2011 20:13:36, 126976 bytes
       Driver: C:\windows\system32\igfxdev.dll, 8.15.0010.2361 (English), 4/10/2011 20:12:06, 385024 bytes
       Driver: C:\windows\system32\igfxdo.dll, 8.15.0010.2361 (English), 4/10/2011 20:11:24, 142336 bytes
       Driver: C:\windows\system32\igfxtray.exe, 8.15.0010.2361 (English), 4/10/2011 21:00:06, 167256 bytes
       Driver: C:\windows\system32\hkcmd.exe, 8.15.0010.2361 (English), 4/10/2011 20:59:58, 391512 bytes
       Driver: C:\windows\system32\igfxress.dll, 8.15.0010.2361 (English), 4/10/2011 20:11:24, 9014784 bytes
       Driver: C:\windows\system32\igfxpers.exe, 8.15.0010.2361 (English), 4/10/2011 21:00:02, 415064 bytes
       Driver: C:\windows\system32\igfxTMM.dll, 8.15.0010.2361 (English), 4/10/2011 20:13:18, 378368 bytes
       Driver: C:\windows\system32\gfxSrvc.dll, 8.15.0010.2361 (German), 4/10/2011 20:12:08, 146432 bytes
       Driver: C:\windows\system32\GfxUI.exe, 8.15.0010.2361 (German), 4/10/2011 20:59:58, 4377432 bytes
       Driver: C:\windows\system32\GfxUI.exe.config, 4/10/2011 20:04:00, 151 bytes
       Driver: C:\windows\system32\IGFXDEVLib.dll, 1.00.0000.0000 (Invariant Language), 4/10/2011 20:12:08, 4096 bytes
       Driver: C:\windows\system32\igfxext.exe, 8.15.0010.2361 (English), 4/10/2011 21:00:00, 238424 bytes
       Driver: C:\windows\system32\igfxexps.dll, 8.15.0010.2361 (English), 4/10/2011 20:13:02, 28672 bytes
       Driver: C:\windows\SysWow64\igfxexps32.dll, 8.15.0010.2361 (English), 4/10/2011 20:07:32, 24576 bytes
       Driver: C:\windows\system32\igfxrara.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:38, 285184 bytes
       Driver: C:\windows\system32\igfxrchs.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:40, 282624 bytes
       Driver: C:\windows\system32\igfxrcht.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:40, 282624 bytes
       Driver: C:\windows\system32\igfxrdan.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:42, 285696 bytes
       Driver: C:\windows\system32\igfxrdeu.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:44, 286720 bytes
       Driver: C:\windows\system32\igfxrenu.lrc, 8.15.0010.2361 (English), 4/10/2011 20:11:30, 285696 bytes
       Driver: C:\windows\system32\igfxresn.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:52, 287232 bytes
       Driver: C:\windows\system32\igfxrfin.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:42, 286208 bytes
       Driver: C:\windows\system32\igfxrfra.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:44, 287232 bytes
       Driver: C:\windows\system32\igfxrheb.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:46, 285184 bytes
       Driver: C:\windows\system32\igfxrhrv.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:56, 286720 bytes
       Driver: C:\windows\system32\igfxrita.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:46, 286720 bytes
       Driver: C:\windows\system32\igfxrjpn.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:48, 283648 bytes
       Driver: C:\windows\system32\igfxrkor.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:48, 283136 bytes
       Driver: C:\windows\system32\igfxrnld.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:42, 286720 bytes
       Driver: C:\windows\system32\igfxrnor.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:48, 286208 bytes
       Driver: C:\windows\system32\igfxrplk.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:50, 286720 bytes
       Driver: C:\windows\system32\igfxrptb.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:50, 286208 bytes
       Driver: C:\windows\system32\igfxrptg.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:50, 286720 bytes
       Driver: C:\windows\system32\igfxrrom.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:56, 286720 bytes
       Driver: C:\windows\system32\igfxrrus.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:52, 286720 bytes
       Driver: C:\windows\system32\igfxrsky.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:56, 286720 bytes
       Driver: C:\windows\system32\igfxrslv.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:56, 286208 bytes
       Driver: C:\windows\system32\igfxrsve.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:54, 286208 bytes
       Driver: C:\windows\system32\igfxrtha.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:54, 285696 bytes
       Driver: C:\windows\system32\igfxrcsy.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:40, 286720 bytes
       Driver: C:\windows\system32\igfxrell.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:44, 287232 bytes
       Driver: C:\windows\system32\igfxrhun.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:46, 286208 bytes
       Driver: C:\windows\system32\igfxrtrk.lrc, 8.15.0010.2361 (English), 4/10/2011 20:13:54, 286208 bytes
       Driver: C:\windows\system32\Gfxres.ar-SA.resources, 4/10/2011 20:13:58, 156057 bytes
       Driver: C:\windows\system32\Gfxres.cs-CZ.resources, 4/10/2011 20:14:00, 133246 bytes
       Driver: C:\windows\system32\Gfxres.da-DK.resources, 4/10/2011 20:14:00, 128407 bytes
       Driver: C:\windows\system32\Gfxres.de-DE.resources, 4/10/2011 20:14:02, 137705 bytes
       Driver: C:\windows\system32\Gfxres.el-GR.resources, 4/10/2011 20:14:04, 197902 bytes
       Driver: C:\windows\system32\Gfxres.es-ES.resources, 4/10/2011 20:14:04, 137506 bytes
       Driver: C:\windows\system32\Gfxres.en-US.resources, 4/10/2011 20:13:38, 123921 bytes
       Driver: C:\windows\system32\Gfxres.fi-FI.resources, 4/10/2011 20:14:06, 132752 bytes
       Driver: C:\windows\system32\Gfxres.fr-FR.resources, 4/10/2011 20:14:08, 135519 bytes
       Driver: C:\windows\system32\Gfxres.he-IL.resources, 4/10/2011 20:14:10, 148846 bytes
       Driver: C:\windows\system32\Gfxres.hr-HR.resources, 4/10/2011 20:14:34, 131705 bytes
       Driver: C:\windows\system32\Gfxres.hu-HU.resources, 4/10/2011 20:14:10, 134238 bytes
       Driver: C:\windows\system32\Gfxres.it-IT.resources, 4/10/2011 20:14:12, 140077 bytes
       Driver: C:\windows\system32\Gfxres.ja-JP.resources, 4/10/2011 20:14:14, 152994 bytes
       Driver: C:\windows\system32\Gfxres.ko-KR.resources, 4/10/2011 20:14:14, 138572 bytes
       Driver: C:\windows\system32\Gfxres.nb-NO.resources, 4/10/2011 20:14:16, 128667 bytes
       Driver: C:\windows\system32\Gfxres.nl-NL.resources, 4/10/2011 20:14:18, 134272 bytes
       Driver: C:\windows\system32\Gfxres.pl-PL.resources, 4/10/2011 20:14:18, 133014 bytes
       Driver: C:\windows\system32\Gfxres.pt-BR.resources, 4/10/2011 20:14:20, 134686 bytes
       Driver: C:\windows\system32\Gfxres.pt-PT.resources, 4/10/2011 20:14:22, 133548 bytes
       Driver: C:\windows\system32\Gfxres.ro-RO.resources, 4/10/2011 20:14:34, 136449 bytes
       Driver: C:\windows\system32\Gfxres.ru-RU.resources, 4/10/2011 20:14:22, 182514 bytes
       Driver: C:\windows\system32\Gfxres.sk-SK.resources, 4/10/2011 20:14:24, 132650 bytes
       Driver: C:\windows\system32\Gfxres.sl-SI.resources, 4/10/2011 20:14:26, 128863 bytes
       Driver: C:\windows\system32\Gfxres.sv-SE.resources, 4/10/2011 20:14:26, 133706 bytes
       Driver: C:\windows\system32\Gfxres.th-TH.resources, 4/10/2011 20:14:28, 211082 bytes
       Driver: C:\windows\system32\Gfxres.tr-TR.resources, 4/10/2011 20:14:30, 135222 bytes
       Driver: C:\windows\system32\Gfxres.zh-CN.resources, 4/10/2011 20:14:30, 116233 bytes
       Driver: C:\windows\system32\Gfxres.zh-TW.resources, 4/10/2011 20:14:32, 117522 bytes
       Driver: C:\windows\system32\ig4icd64.dll, 8.15.0010.2361 (English), 4/10/2011 20:24:38, 17896960 bytes
       Driver: C:\windows\SysWow64\ig4icd32.dll, 4/10/2011 20:18:22, 13356032 bytes
       Driver: C:\windows\system32\DRIVERS\igdpmd64.sys, 8.15.0010.2361 (English), 4/10/2011 20:51:06, 12223936 bytes
         Name: High Definition Audio-Controller
    Device ID: PCI\VEN_8086&DEV_1C20&SUBSYS_04B21028&REV_05\3&11583659&1&D8
       Driver: C:\windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 122368 bytes
         Name: 2nd generation Intel(R) Core(TM) processor family DRAM Controller - 0104
    Device ID: PCI\VEN_8086&DEV_0104&SUBSYS_04B21028&REV_09\3&11583659&1&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_04B21028&REV_B5\3&11583659&1&E7
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 184704 bytes
         Name: 2nd generation Intel(R) Core(TM) processor family PCI Express Controller - 0101
    Device ID: PCI\VEN_8086&DEV_0101&SUBSYS_04B21028&REV_09\3&11583659&1&08
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 184704 bytes
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 5 - 1C18
    Device ID: PCI\VEN_8086&DEV_1C18&SUBSYS_04B21028&REV_B5\3&11583659&1&E4
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 184704 bytes
         Name: Intel(R) Centrino(R) Wireless-N 1030
    Device ID: PCI\VEN_8086&DEV_008A&SUBSYS_53258086&REV_34\4&36386499&0&00E3
       Driver: n/a
         Name: Intel(R) HM67 Express Chipset Family LPC Interface Controller - 1C4B
    Device ID: PCI\VEN_8086&DEV_1C4B&SUBSYS_04B21028&REV_05\3&11583659&1&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 4 - 1C16
    Device ID: PCI\VEN_8086&DEV_1C16&SUBSYS_04B21028&REV_B5\3&11583659&1&E3
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 184704 bytes
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_04B21028&REV_06\4&33634699&0&00E1
       Driver: n/a
         Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_1C3A&SUBSYS_04B21028&REV_04\3&11583659&1&B0
       Driver: n/a
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 2 - 1C12
    Device ID: PCI\VEN_8086&DEV_1C12&SUBSYS_04B21028&REV_B5\3&11583659&1&E1
       Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (German), 11/21/2010 04:23:47, 184704 bytes
         Name: Renesas Electronics USB 3.0 Host Controller
    Device ID: PCI\VEN_1033&DEV_0194&SUBSYS_04B21028&REV_04\4&14F9C5CE&0&00E4
       Driver: C:\windows\system32\DRIVERS\nusb3xhc.sys, 2.00.0032.0000 (English), 12/10/2010 22:50:36, 181248 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
    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.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
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17715
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    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.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    ATI MPEG File Writer,0x00200000,1,0,atimpenc64.dll,11.06.0000.10511
    ATI MPEG Video Decoder,0x005fffff,1,2,atimpenc64.dll,11.06.0000.10511
    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
    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
    ATI MPEG Audio Encoder,0x00200000,1,1,atimpenc64.dll,11.06.0000.10511
    Xvid MPEG-4 Video Decoder,0x00800002,1,1,xvid.ax,
    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,,
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    ATI MPEG Video Encoder,0x00200000,1,1,atimpenc64.dll,11.06.0000.10511
    ATI MPEG Multiplexer,0x00200000,2,1,atimpenc64.dll,11.06.0000.10511
    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
    ATI Video Scaler Filter,0x00200000,1,1,atimpenc64.dll,11.06.0000.10511
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17713
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17715
    Overlay Mixer2,0x00200000,1,1,,
    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,,
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7601.17514
    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
    ATI Video Rotation Filter,0x00200000,1,1,atimpenc64.dll,11.06.0000.10511
    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
    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,
    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-Konvertierung,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
    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
    ATI MPEG Audio Encoder,0x00200000,1,1,atimpenc64.dll,11.06.0000.10511
    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:
    Mikrofon (High Definition Audio,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:
    HD Audio-Mikrofon 2,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Integrated Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    HD Audio-Kopfhörer/Lautsprecher,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:
    Integrated Webcam,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.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-Konvertierung,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Lautsprecher (High Definition 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: Lautsprecher (High Definition Audio-Gerät),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

Maybe you are looking for

  • Recovery mode loop please help(wont let me restore)

    I need help. About two hours ago i tried updating my iphone 4, ios 7 to the latest firmware. I tried doing this straight from my device. after several minutes my device seemed to be frozen.  I read online to put it in recovery mode. after i did this

  • InDesign CC 2014 and Printable PDF?

    I'm trying to create a printable PDF with InDesign CC 2014. In the PDF I'm specifying a 1/8" bleed. However, on several of the PDF pages the items that are supposed to bleed are not. I think this may have something to do with images I placed over the

  • Adding text to a track or slideshow

    Is it possible to add text to a track or slideshow in DVDSP2.....I forgot to add a name super in FCP.

  • IOS 8 only issue 3G toggle missin

    Respected sir, I had to downgrade to 7.1.2 just because of one reason that 3G toggle switch is not there in IOS 8 ,please sir release an update with 3G toggle, because in india LTE doesnt work, and with 3G there is network issues and battery drainage

  • How do I clear off all my files?

    I need to take my iPod Touch Gen 5 into the Apple Store where they probably will wipe it. I am trying to clear all my stuff off starting with my photos. I imported them all into Aperture and checked for them to be deleted which they seemed to do. My