Avstreams minidriver

Hello, I am a new for driver development. I'm developing an Avstreams minidriver for audio device USB (win7 system).

Now, I can install my device (please see the device.png), but I can't find my device in sound management (please refer to the sound.png).  Here is the description of filter and pine. Could you help us to check out them. Thank you.

////////////filter///////////////////

const
GUID
CaptureFilterCategories [CAPTUREFILTERCATEGORIESCOUNT] = {}
STATIC_KSCATEGORY_AUDIO,
STATIC_KSCATEGORY_RENDER,
STATIC_KSCATEGORY_CAPTURE
};

KSTOPOLOGY_CONNECTION CaptureConnections [] =
{
{KSFILTER_NODE, 0, KSFILTER_NODE, 1},
{KSFILTER_NODE, 2, KSFILTER_NODE, 3}
};

const
KSFILTER_DESCRIPTOR CaptureFilterDescriptor = {}
& CaptureFilterDispatch, Table of //Dispatch
NULL, Table //Automation
KSFILTER_DESCRIPTOR_VERSION, / / SABINEASIOAUDIOVERION, //Version
0, / / KSFILTER_FLAG_DISPATCH_LEVEL_PROCESSING, //Flags
& KSNAME_Filter, //Reference GUID
DEFINE_KSFILTER_PIN_DESCRIPTORS (CapturePinDescriptor), //Pin descriptor
DEFINE_KSFILTER_CATEGORIES (CaptureFilterCategories), //Pin categories
DEFINE_KSFILTER_NODE_DESCRIPTORS_NULL, //Node descriptor
DEFINE_KSFILTER_DEFAULT_CONNECTIONS, //Connection
ID //Component NULL
};

const KSFILTER_DISPATCH CaptureFilterDispatch = {}
CCaptureFilter::DispatchCreate, //Filter create
NULL, //Filter Close
NULL, / / CCaptureFilter::DispatchProcess, //Filter process
NULL, Reset //Filter
};

/////////////////////Pin/////////////////////////////

Data input/output format
KSDATARANGE_AUDIO PinDataFormatRange = {}
{
sizeof (KSDATARANGE_AUDIO), //Format size
0, / / flags, this member is ignored
4, / / SampleSize, this member is ignored
0, //Reserved
STATIC_KSDATAFORMAT_TYPE_AUDIO, //major format
STATIC_KSDATAFORMAT_SUBTYPE_PCM, //sub format
STATIC_KSDATAFORMAT_SPECIFIER_WAVEFORMATEX //specifer
},
2, //MaximumChannels;
16, //MinimumBitsPerSample;
16, //MaximumBitsPerSample;
48000, //MinimumSampleFrequency;
48000, //MaximumSampleFrequency;
};

const PKSDATARANGE PinDataFormatRanges [] = {}
(PKSDATARANGE) & PinDataFormatRange
};

public static const PinSpkName of GUID = {0xc05a32e6, 0x9f87, 0x48f2, {0xad, 0 x 96, 0xeb, 0xe7, 0 x 17, 0 x 57, 0xc9, 0 x 50}};

{1E6D3688-AE69-4944-B696-24475A5940D5}
public static const PinMicName of GUID = {0x1e6d3688, 0xae69, 0 x 4944, {0xb6, 0 x 96, 0 x 24, 0 x 47, 0x5a, 0 x 0, 59 x 40, 0xd5}};

Table of automation
DEFINE_KSMETHOD_TABLE (CapturePinMethod)
{
SPK
DEFINE_KSMETHOD_ITEM
(
KSMETHOD_WRITEID, //Method Id, specifies the identifier of this method as a whole of the method.
KSMETHOD_TYPE_READ, / / Flags, indicates that the settings should be read from
the buffer manager data. When buffered, the data is copied
to the system buffer. In source view, the data are surveyed and locked for IoReadAccess.
CCapturePin::AsioWriteDevice, //Method Handler, pointer to a callback routine provided by minidriver KStrMethodHandler.
sizeof (KSMETHOD), / / MiniMethod, specifies the minimum size of the buffer required to specify the method completely. This size is at least sizeof (KSMETHOD) bytes.
BUFFERSIZE, / / MiniData, specifies the buffer size required to specify the method data buffer. This buffer is used to read or write information to the method.
NULL //Support Handler, specify a KStrSupportHandler is used to determine the point of the particular method in favor
),

MIC
DEFINE_KSMETHOD_ITEM
(
KSMETHOD_READID, //Method Id, specifies the identifier of this method as a whole of the method.
KSMETHOD_TYPE_WRITE, / / Flags, indicates that the settings should be read from
the buffer manager data. When buffered, the data is copied
to the system buffer. In source view, the data are surveyed and locked for IoReadAccess.
CCapturePin::AsioReadDevice, //Method Handler, pointer to a callback routine provided by minidriver KStrMethodHandler.
sizeof (KSMETHOD), / / MiniMethod, specifies the minimum size of the buffer required to specify the method completely. This size is at least sizeof (KSMETHOD) bytes.
BUFFERSIZE, / / MiniData, specifies the buffer size required to specify the method data buffer. This buffer is used to read or write information to the method.
NULL //Support Handler, specify a KStrSupportHandler is used to determine the point of the particular method in favor
),

Set the status of the device
DEFINE_KSMETHOD_ITEM
(
KSMETHOD_SETSTATEID, //Method Id, specifies the identifier of this method as a whole of the method.
KSMETHOD_TYPE_READ, / / Flags, indicates that the settings should be read from
the buffer manager data. When buffered, the data is copied
to the system buffer. In source view, the data are surveyed and locked for IoReadAccess.
CCapturePin::AsioSetDeviceState, //Method Handler, pointer to a callback routine provided by minidriver KStrMethodHandler.
sizeof (KSMETHOD), / / MiniMethod, specifies the minimum size of the buffer required to specify the method completely. This size is at least sizeof (KSMETHOD) bytes.
BUFFERSIZE, / / MiniData, specifies the buffer size required to specify the method data buffer. This buffer is used to read or write information to the method.
NULL //Support Handler, specify a KStrSupportHandler is used to determine the point of the particular method in favor
)
};

DEFINE_KSMETHOD_SET_TABLE (CapturePinAutoMethod)
{
DEFINE_KSMETHOD_SET
(
& KSMETHODSETID_ASIO, / / set, specifies a GUID identifies it with the kernel streaming method together.
SIZEOF_ARRAY (CapturePinMethod), //MethodCount
CapturePinMethod, //MethodItem
0, / / FastIoCount, reserved for the system. Do not use.
NULL / / FastIoTable, reserved for the system. Do not use.
)
};

DEFINE_KSAUTOMATION_TABLE (CapturePinAutoTable)
{
DEFINE_KSAUTOMATION_PROPERTIES_NULL,
DEFINE_KSAUTOMATION_METHODS (CapturePinAutoMethod),
DEFINE_KSAUTOMATION_EVENTS_NULL
};

const KSPIN_DESCRIPTOR_EX CapturePinDescriptor [CAPTUREPINDESCRIPTORCOUNT] = {}
Audio output Pin Render, spk
{
& CapturePinDispatch, Table of //Dispatch
NULL, / / & CapturePinAutoTable, //Automation Table
KSPIN_DESCRIPTOR
{
DEFINE_KSPIN_DEFAULT_INTERFACES, //Interfaces (NULL, 0 == default)
DEFINE_KSPIN_DEFAULT_MEDIUMS, size //Mediums (NULL, 0 == default)
SIZEOF_ARRAY (PinDataFormatRanges), count of //Range
PinDataFormatRanges, //Ranges
KSPIN_DATAFLOW_IN, //Dataflow
KSPIN_COMMUNICATION_BOTH, //Communication
& KSCATEGORY_AUDIO, / / KSCATEGORY_AUDIO, / / & KSNODETYPE_SPEAKER, / / & KSCATEGORY_RENDER, //Category
& KSNODETYPE_SPEAKER, / / & PinSpkName, //Name
0 //Reserved
},
Flags
/ * KSPIN_FLAG_FRAMES_NOT_REQUIRED_FOR_PROCESSING |
KSPIN_FLAG_DO_NOT_INITIATE_PROCESSING |
KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY |
KSPIN_FLAG_FIXED_FORMAT, * /.
KSPIN_FLAG_USE_STANDARD_TRANSPORT |
KSPIN_FLAG_FIXED_FORMAT |
KSPIN_FLAG_RENDERER,
1, //Instances possible
1, //Instances necessary
& PinAllocatorFraming framing //Allocator
reinterpret_cast
(CCapturePin::IntersectHandler)
},

Pin of Capture audio, microphone
{
& CapturePinDispatch, Table of //Dispatch
NULL, Table //Automation
KSPIN_DESCRIPTOR
{
DEFINE_KSPIN_DEFAULT_INTERFACES, //Interfaces (NULL, 0 == default)
DEFINE_KSPIN_DEFAULT_MEDIUMS, size //Mediums (NULL, 0 == default)
SIZEOF_ARRAY (PinDataFormatRanges), count of //Range
PinDataFormatRanges, //Ranges
KSPIN_DATAFLOW_OUT, //Dataflow
KSPIN_COMMUNICATION_BOTH, //Communication
& KSCATEGORY_AUDIO, //Category
& KSAUDFNAME_RECORDING_CONTROL, / / & PinMicName, //Name
0 //Reserved
},
Flags
/ * KSPIN_FLAG_FRAMES_NOT_REQUIRED_FOR_PROCESSING |
KSPIN_FLAG_DO_NOT_INITIATE_PROCESSING |
KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY |
KSPIN_FLAG_FIXED_FORMAT, * /.
KSPIN_FLAG_USE_STANDARD_TRANSPORT |
KSPIN_FLAG_FIXED_FORMAT,
1, //Instances possible
1, //Instances necessary
& PinAllocatorFraming framing //Allocator
reinterpret_cast
(CCapturePin::IntersectHandler)
}
};

() DECLARE_SIMPLE_FRAMING_EX
PinAllocatorFraming, //Name
STATIC_KSMEMORY_TYPE_KERNEL_NONPAGED, type //Memory
Flags
KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY |
KSALLOCATOR_REQUIREMENTF_PREFERENCES_ONLY,
2, //Frames
0, //Alignment
2 * PAGE_SIZE, //MinFrameSize
2 * //MaxFrameSize PAGE_SIZE
);

const KSPIN_DISPATCH CapturePinDispatch = {}
CCapturePin::DispatchCreate, //Pin create
NULL, //Pin Close
CCapturePin::DispatchProcess, //Pin process
NULL, Reset //Pin
CCapturePin::DispatchSetDataFormat, //Pin the value data Format
CCapturePin::DispatchSetDeviceState, State of device for the game //Pin
NULL, //Pin connect
NULL, //Pin disconnect
NULL, shipping //Clock
Shipping //Allocator NULL
};

Best regards

Shlikewater

Hello

Please contact Microsoft Community.

I suggest you send your query on the link below:

MSDN forum

https://social.msdn.Microsoft.com/forums/en-us/home

Please let us know the result.

Thank you.

Tags: Windows

Similar Questions

  • Re: Z570 - need driver UMDF HID minidriver

    Hi, my system is an Ideapad Z570 and I downloaded everything I have for WIndows 8 of the Lenovo support site. I have a yellow unknown device in my device - device manager of UMDF HID minidriver.

    Help, please. Thank you.

    Hi virendrapareek,

    The User Mode Driver Framework (UMDF) facilitates the creation of pilot, which in this case, the Human interface Device (HID), which is usually done refers to USB devices. If all of your USB devices work, there is a possibility that this UMDF HID driver is intended only for the operating system preloaded to the Lenovo Z570 which is Windows 7 and is currently still unavailable through Windows 8.

    Concerning

  • UMDF HID minidriver device error

    My computer seems to work more often normal.  However, I discover the error in Device Manager.

    Device HID minidriver UMDF

    Device status:

    • Windows cannot start this hardware device because its information of configuration (in the registry) is incomplete or damaged. (Code 19)

    Troubleshooting:

    • Check the updates. (Updated)

    Question / comments:

    I don't know what this driver is for, and I don't know if there is a need which justifies further investigation into the matter.

    What course of action should be taken?

    Go to the Device Manager and right-click on the offending device. Uninstall and restart.  Check to see if it comes back, and if everything works normally.

  • Satellite click mini camera rear problem

    Hello! could someone help me please. 10 rear camera no longer works after upgrade and installation of windows. What will I do to solve this problem? Help, please. Thank you

    Click on the Mini - fix driver camera
    ------------------------------
    This has two cameras:
    -"Front" is a webcam above the screen low resolution. I think that this example uses an OV2722 sensor.
    -"Backwards" is a camera of higher resolution in a corner of the white species. I think that this example uses an AR0543 (Intel Avstreams camera) sensor
    When I got the Mini click (Win 8.1) only the rear camera worked. After the upgrade Win10 worked only the front webcam
    -previous discussion forum below gave me enough information to solve the problem.

    1. in the Device Manager there are three relevant entries:
    -under the heading of imaging devices, there is a single entry for "Signal imagery 2400 processor"
    -under system devices there were two entries: ar0543 OV2722 sensor camera and camera sensor Unicam
    2. the driver for camera sensor Unicam ar0543 is OK (10/07/2015), but you'll have to let him search online for updates from the other two.
    -With camera sensor OV2722 there simply a updated driver from 2014 to 2015/06/15
    -With 'Processor of Signal imagery 2400', it will update the driver (to 07/04/2015), but the entry of imaging devices becomes "Intel Avstreams Camera.
    3 Win10 then you ask to restart because there has been a change in material.
    -After that the camera application has an additional button that lets switch you between the two cameras, and both work very well.

  • Penn tablet function does not work. Cannot start the HID device

    On my Portege M200, I reinstalled WXP Tablet 2005. Under human interface devices, it detects a serial penn wacom tablet, a device interface human usb and an hid-compliant device.

    But penn isn't all fucntion. When I install the latest drivers from wacom penabled, I get a "wacom penabled HID minidriver" device but it has a yellow triangle with the error this device cannot start error 10.

    Is my tablet broken?

    (apparently you can not say penn on this forum)

    Hello

    May I ask where did you download the driver?
    It seems that the driver is not supported or is not compatible.
    Code 10 means-> device could not start.
    You simply need to use the driver from the Toshiba page and click on update driver to update the drivers for this device.

  • HP 15-g020dx: card Wifi Upgrade

    Hello



    I have a HP laptop: Wndows 8.1 (64-bit)



    Product number: K7W82UA

    Model No.: 15-g020dx

    Serial number: (deleted content)



    My question is:



    Can I switch the wifi card to use a standard Wifi 802.11 b/g/n card, a 802.11ac/b/g/n wifi card?

    In the affirmative, please can you me which 802.11ac/b/g/n wifi card would be an HP upgrade Compatible?



    Thank you.

    USB dongles usually come with a small minidriver disc but they usually just use a common Broadcom or Atheros chipset for which Windows will probably provide the driver and it will be plug-and-play

  • WARNING: DirectX Acceleration is not activate, Windows 7 64 bit

    I have an ATI 4870 running windows 7 the problem that I am running is that DirectX acceleration is not being seen.  Now my other programs (32-bit) running their own Accelerator do not have this problem (as my Blu - ray).  Now the same software programs works perfectly under XP and Vista with 32 and 64 bit. :)  Running dxdiag show, the 3D accelerator has been activated will include these reading at the end of this message.  On a backup drive, I even downloaded DirectX 9.c to see if that might solve the problem but it didn't.  Hard drive has been erased and reloaded on July 12, including all patches before the software was loaded and still does not work.  My Windows experience index is:
    Processor: 7.3
    Memory: 7.4
    Graphics (Aero): 6.8
    Chart (game): 6.8
    Hard disk: 5.9

    DXdiags 32-bit:
    ------------------
    Information System
    ------------------
    Time of this report: 07-13-2009, 08:33:38
    Computer name: BLACKDRAGON
    Operating system: Windows 7 Ultimate 64-bit (6.1, Build 7100) (7100.winmain_win7rc.090421 - 1700)
    Language: English (regional setting: English)
    System manufacturer: BIOSTAR Group
    System model: TA790GX 128M
    BIOS: Default system BIOS
    Processor: AMD Athlon (TM) II X 4 940 processor (4 CPUs), ~3.0GHz
    Memory: RAM 8192MB
    Available OS memory: 8192MB RAM
    Page file: 1366MB used, 15014 MB of available space
    Windows Dir: C:\Windows
    DirectX version: DirectX 11
    DX setup parameters: not found
    DPI setting: Using System DPI
    System DPI setting: 96 DPI (100%)
    DWM DPI Scaling: disabled
    DxDiag Version: 6.01.7100.0000 32 bit Unicode

    ------------
    DxDiag Notes
    ------------
    Display 1 tab: No problems found.
    Sound tab 1: No problems found.
    2 Audio tab: No problems found.
    3 Audio tab: No problems found.
    Input tab: no problems found.

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

    ---------------
    Display devices
    ---------------
    Card name: ATI Radeon HD 4800 Series
    Manufacturer: ATI Technologies Inc.
    Track type: processor ATI Radeon Graphics (0 x 9440)
    DAC type: DAC (400 MHz) internal
    The device key: Enum\PCI\VEN_1002 & DEV_9440 & SUBSYS_02781043 & REV_00
    Memory display: 4083 MB
    Dedicated memory: 1015 MB
    Shared memory: 3067 MB
    Current mode: 1920 x 1200 (32 bit) (59Hz)
    Name of the monitor: SyncMaster T260, SyncMaster Magic T260 (Digital)
    Monitor model: SyncMaster
    Monitor ID: SAM03E7
    Native mode: 1920 x 1200 (59,950 Hz)
    Output type: DVI
    Driver name: atiumd64.dll, atidxx64.dll, atiumdag, atidxx32, atiumdva, atiumd6a.cap, atitmm64.dll
    The driver file version: 8.14.0010.0671 (English)
    Driver version: 8.620.0.0
    DDI Version: 10.1
    : Model WDDM 1.1 driver
    Driver attributes: Final retail
    Format/driver Date: 2009-05-15 22:03:58, 3987456 bytes
    WHQL Logo would be: n/a
    WHQL Date stamp: n/a
    The instrument identifier: {D7B71EE2-D700-11CF-6C71-7222A1C2C535}
    Vendor ID: 0 x 1002
    Device ID: 0 x 9440
    SubSys ID: 0 x 02781043
    Revision ID: 0x0000
    Strong name of the driver: oem10.inf:ATI. Mfg.NTamd64.6.1:ati2mtag_R7X:8.620.0.0:pci\ven_1002&dev_9440
    The driver rating: 00E62001
    Video Accel: ModeMPEG2_A ModeMPEG2_C
    Deinterlace caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: caps Frames(Prev/Fwd/Back) = (0,0,1) (In/Out) Format (YUY2, YUY2) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (YUY2, YUY2) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: caps Frames(Prev/Fwd/Back) = (0,0,0) Format (In/Out) = (YUY2, YUY2) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: caps Frames(Prev/Fwd/Back) = (0,0,1) (In/Out) Format (UYVY, UYVY) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (UYVY, UYVY) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: caps Frames(Prev/Fwd/Back) = (0,0,0) Format (In/Out) = (UYVY, UYVY) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format (In/Out) (YV12, 0 x 32315659) = Frames(Prev/Fwd/Back) = (0,0,0) Caps
    {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: caps Frames(Prev/Fwd/Back) = (0,0,2) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: caps Frames(Prev/Fwd/Back) = (0,0,2) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: caps Frames(Prev/Fwd/Back) = (0,0,1) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (NV12, 0x3231564e) = 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: Unsupported
    DXVA-HD: not supported
    DDraw status: enabled
    D3D status: enabled
    AGP status: enabled

    -------------
    Sound Devices
    -------------
    Description: Speakers (Creative SB X - Fi)
    Default audio playback: Yes
    Default voice playback: Yes
    Hardware ID: PCI\VEN_1102 & DEV_000B & SUBSYS_00431102 & REV_03
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver name: ctaud2k.sys don't
    Driver version: 6.00.0001.1347 (English)
    Driver attributes: Final retail
    WHQL Logo would be: n/a
    Date and size: 20/04/2009 14:42:46, 696984 bytes
    Other files:
    Driver provider: creative
    HW Accel level: basic
    Cap flags: 0xF1F
    Min/Max sample rate: 100, 200000
    Mix beef static/Strm HW: 1, 0
    Static/Strm HW 3D steers: 0, 0
    HW memory: 0
    Management of the voice: No.
    Listen/Src/EAX (TM) 2.0: No, no
    Listen/Src/I3DL2 (TM): No, no
    Sensaura (TM) ZoomFX (tm): No.

    Description: Digital Audio (SPDIF) (Audio device high definition)
    Default audio playback: No.
    Default voice playback: no
    Hardware ID: HDAUDIO\FUNC_01 & VEN_10EC & DEV_0888 & SUBSYS_10EC0888 & REV_1000
    Manufacturer ID: 1
    Product ID: 65535
    Type: WDM
    Driver name: HdAudio.sys
    Driver version: 6.01.7100.0000 (in English)
    Driver attributes: Final retail
    WHQL Logo would be: n/a
    Date and size: 21/04/2009-23:15:37, 350208 bytes
    Other files:
    Driver provider: Microsoft
    HW Accel level: basic
    Cap flags: 0xF1F
    Min/Max sample rate: 100, 200000
    Mix beef static/Strm HW: 1, 0
    Static/Strm HW 3D steers: 0, 0
    HW memory: 0
    Management of the voice: No.
    Listen/Src/EAX (TM) 2.0: No, no
    Listen/Src/I3DL2 (TM): No, no
    Sensaura (TM) ZoomFX (tm): No.

    Description: SPDIF Out (Creative SB X - Fi)
    Default audio playback: No.
    Default voice playback: no
    Hardware ID: PCI\VEN_1102 & DEV_000B & SUBSYS_00431102 & REV_03
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver name: ctaud2k.sys don't
    Driver version: 6.00.0001.1347 (English)
    Driver attributes: Final retail
    WHQL Logo would be: n/a
    Date and size: 20/04/2009 14:42:46, 696984 bytes
    Other files:
    Driver provider: creative
    HW Accel level: basic
    Cap flags: 0xF1F
    Min/Max sample rate: 100, 200000
    Mix beef static/Strm HW: 1, 0
    Static/Strm HW 3D steers: 0, 0
    HW memory: 0
    Management of the voice: No.
    Listen/Src/EAX (TM) 2.0: No, no
    Listen/Src/I3DL2 (TM): No, no
    Sensaura (TM) ZoomFX (tm): No.

    ---------------------
    Sound Capture devices
    ---------------------
    Description: Microphone (USB Audio device)
    Capture audio by default: Yes
    Default voice Capture: Yes
    Driver name: USBAUDIO.sys
    Driver version: 6.01.7100.0000 (in English)
    Driver attributes: Final retail
    Date and size: 2009-04-21 23:15:18, 109568 bytes
    Cap flags: 0x1
    Format flags: 0xFFFFF

    Description: Digital-In (Creative SB X - Fi)
    Capture audio by default: No.
    Default voice Capture: No.
    Driver name: ctaud2k.sys don't
    Driver version: 6.00.0001.1347 (English)
    Driver attributes: Final retail
    Date and size: 20/04/2009 14:42:46, 696984 bytes
    Cap flags: 0x1
    Format flags: 0xFFFFF

    Description: "what U Hear" (Creative SB X - Fi)
    Capture audio by default: No.
    Default voice Capture: No.
    Driver name: ctaud2k.sys don't
    Driver version: 6.00.0001.1347 (English)
    Driver attributes: Final retail
    Date and size: 20/04/2009 14:42:46, 696984 bytes
    Cap flags: 0x1
    Format flags: 0xFFFFF

    Description: Micro FP (Creative SB X - Fi)
    Capture audio by default: No.
    Default voice Capture: No.
    Driver name: ctaud2k.sys don't
    Driver version: 6.00.0001.1347 (English)
    Driver attributes: Final retail
    Date and size: 20/04/2009 14:42:46, 696984 bytes
    Cap flags: 0x1
    Format flags: 0xFFFFF

    Description: Digital Audio (SPDIF) (Audio device high definition)
    Capture audio by default: No.
    Default voice Capture: No.
    Driver name: HdAudio.sys
    Driver version: 6.01.7100.0000 (in English)
    Driver attributes: Final retail
    Date and size: 21/04/2009-23:15:37, 350208 bytes
    Cap flags: 0x1
    Format flags: 0xFFFFF

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

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

    Device name: American Power Conversion USB UPS
    Joint: 1
    Controller ID: 0 x 0
    Suppliers of products/ID: 0x051D, 0x0002
    FF driver: n/a

    Poll w / Interrupt: No.

    -----------
    USB devices
    -----------
    + USB root hub
    | Suppliers of products/ID: 0 x 1002, 0 x 4398
    | Matching Device ID: usb\root_hub
    | Service: usbhub

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

    ------------
    PS/2 devices
    ------------
    + PS/2 standard keyboard
    | Matching Device ID: * pnp0303
    | Service: i8042prt
    |
    + Server terminal keyboard driver
    | Matching Device ID: root\rdp_kbd
    | High filters: kbdclass
    | Service: TermDD
    |
    + Microsoft PS/2 mouse
    | Matching Device ID: * pnp0f03
    | Service: i8042prt
    |
    + USB Logitech TrackMan Wheel
    | Suppliers of products/ID: 0x046D, 0xC404
    | Matching device ID: hid\vid_046d & pid_c404
    | Service: me
    |
    + Terminal Server mouse driver
    | Matching Device ID: root\rdp_mou
    | High filters: mouclass
    | Service: TermDD

    ------------------------
    Disk & CD-ROM/DVD-ROM readers
    ------------------------
    Drive: C:
    Free space: 880,8 GB
    Total space: 953,8 GB
    File system: NTFS
    Model: ST31000333AS ATA Device

    Drive: D:
    Model: TSSTcorp CDDVDW SH-S203N ATA Device
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7100.0013 (in English), 0 bytes

    Drive: E:
    Model: HL-DT-ST BDDVDRW GGC - H20L ATA Device
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7100.0013 (in English), 0 bytes

    --------------
    System devices
    --------------
    Name: The standard host PCI bridge CPU
    Device ID: PCI\VEN_1022 & DEV_1204 & SUBSYS_00000000 & REV_00\3 & 267A616A & 0 & C4
    Pilot: s/o

    Name: PCI standard ISA bridge
    Device ID: PCI\VEN_1002 & DEV_439D & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & A3
    Pilot: s/o

    Name: Standard enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002 & DEV_4396 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 92
    Pilot: s/o

    Name: The standard host PCI bridge CPU
    Device ID: PCI\VEN_1022 & DEV_1203 & SUBSYS_00000000 & REV_00\3 & 267A616A & 0 & C3
    Pilot: s/o

    Name: Standard double channel PCI IDE Controller
    Device ID: PCI\VEN_1002 & DEV_439C & SUBSYS_439C1002 & REV_00\3 & 267A616A & 0 & A1
    Pilot: s/o

    Name: Standard double channel PCI IDE Controller
    Device ID: PCI\VEN_1002 & DEV_4390 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 88
    Pilot: s/o

    Name: Creative SB X - Fi
    Device ID: PCI\VEN_1102 & DEV_000B & SUBSYS_00431102 & REV_03\4 & 7B2CFF4 & 0 & 0028
    Pilot: s/o

    Name: The standard host PCI bridge CPU
    Device ID: PCI\VEN_1022 & DEV_1202 & SUBSYS_00000000 & REV_00\3 & 267A616A & 0 & C2
    Pilot: s/o

    Name: OpenHCD Standard USB host controller
    Device ID: PCI\VEN_1002 & DEV_4399 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & A5
    Pilot: s/o

    Name: ATI i/o Communications Processor SMBus Controller
    Device ID: PCI\VEN_1002 & DEV_4385 & SUBSYS_37001565 & REV_3A\3 & 267A616A & 0 & A0
    Pilot: s/o

    Name: Realtek RTL8168C (P) / 8111C (P) Family PCI - E Gigabit Ethernet NIC (NDIS 6.20)
    Device ID: PCI\VEN_10EC & DEV_8168 & SUBSYS_23071565 & REV_02\4 & 32CBD392 & 0 & 0038
    Pilot: s/o

    Name: The standard host PCI bridge CPU
    Device ID: PCI\VEN_1022 & DEV_1201 & SUBSYS_00000000 & REV_00\3 & 267A616A & 0 & C1
    Pilot: s/o

    Name: OpenHCD Standard USB host controller
    Device ID: PCI\VEN_1002 & DEV_4398 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 99
    Pilot: s/o

    Name: ATI i/o Communications Processor PCI Bus controller
    Device ID: PCI\VEN_1002 & DEV_4384 & SUBSYS_00000000 & REV_00\3 & 267A616A & 0 & A4
    Pilot: s/o

    Name: Bridge PCI to PCI standard PCI
    Device ID: PCI\VEN_1022 & DEV_9607 & SUBSYS_96001022 & REV_00\3 & 267A616A & 0 & 38
    Pilot: s/o

    Name: The standard host PCI bridge CPU
    Device ID: PCI\VEN_1022 & DEV_1200 & SUBSYS_00000000 & REV_00\3 & 267A616A & 0 & C0
    Pilot: s/o

    Name: OpenHCD Standard USB host controller
    Device ID: PCI\VEN_1002 & DEV_4398 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 91
    Pilot: s/o

    Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002 & DEV_4383 & SUBSYS_820F1565 & REV_00\3 & 267A616A & 0 & A2
    Pilot: s/o

    Name: Bridge PCI to PCI standard PCI
    Device ID: PCI\VEN_1022 & DEV_9605 & SUBSYS_96001022 & REV_00\3 & 267A616A & 0 & 28
    Pilot: s/o

    Name: High Definition Audio Controller
    Device ID: PCI\VEN_1002 & DEV_AA30 & SUBSYS_AA301043 & REV_00\4 & 204EAC5 & 0 & 0110
    Pilot: s/o

    Name: OpenHCD Standard USB host controller
    Device ID: PCI\VEN_1002 & DEV_4397 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 98
    Pilot: s/o

    Name: Bridge PCI to PCI standard PCI
    Device ID: PCI\VEN_1022 & DEV_9603 & SUBSYS_96001022 & REV_00\3 & 267A616A & 0 & 10
    Pilot: s/o

    Name: ATI Radeon HD 4800 Series
    Device ID: PCI\VEN_1002 & DEV_9440 & SUBSYS_02781043 & REV_00\4 & 204EAC5 & 0 & 0010
    Pilot: s/o

    Name: OpenHCD Standard USB host controller
    Device ID: PCI\VEN_1002 & DEV_4397 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 90
    Pilot: s/o

    Name: The standard host PCI bridge CPU
    Device ID: PCI\VEN_1022 & DEV_9600 & SUBSYS_96001022 & REV_00\3 & 267A616A & 0 & 00
    Pilot: s/o

    Name: ATI Unified Driver Avstreams
    Device ID: PCI\VEN_1002 & DEV_4D50 & SUBSYS_A6981002 & REV_00\4 & 2966AB86 & 0 & 30A 4
    Pilot: s/o

    Name: Standard enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_1002 & DEV_4396 & SUBSYS_37001565 & REV_00\3 & 267A616A & 0 & 9a
    Pilot: s/o

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

    DirectShow filters:
    WMAudio Decoder DMO, 0 x 00800800, 1, 1, WMADMOD. DLL, 6.01.7100.0000
    WMAPro over S/PDIF DMO, 0 x 00600800, 1, 1, WMADMOD. DLL, 6.01.7100.0000
    WMSpeech Decoder DMO, 0 x 00600800, 1, 1, WMSPDMOD. DLL, 6.01.7100.0000
    MP3 DMO, 0 x 00600800, 1, 1, mp3dmod.dll, 6.01.7100.0000 decoder
    Mpeg4s decoder DMO, 0 x 00800001, 1, 1, mp4sdecd.dll, 6.01.7100.0000
    Decoder WMV DMO, 0 x 00600800, 1 screen, 1, wmvsdecd.dll, 6.01.7100.0000
    Decoder DMO WMVideo, 0 x 00800001, 1, 1, wmvdecod.dll, 6.01.7100.0000
    Mpeg43 decoder DMO, 0 x 00800001, 1, 1, mp43decd.dll, 6.01.7100.0000
    MPEG4 Decoder DMO, 0 x 00800001, 1, 1, mpg4decd.dll, 6.01.7100.0000
    Decoder, 00200000 x 0, 1, 0, ArcText.ax, 1.00.0000.0061 the subtitle of ArcSoft
    ArcSoft Vorbis Decoder, 0 x 00600000, 1, 1, AsOggDS.ax, 1.00.0000.0003
    Encode, 0 00600000, 1, 1, x atimcenc.dll, 10.05.0000.40515 ATI Media Center video
    BDMV ArcSoft PGFilter, 0 x 00200000, 2, 1, PGFilter.ax, 1.01.0000.0018
    ArcSoft HDDVD subpicture Decoder, 0 x 00200000, 1, 1, SubPicDecoder.ax, 1.00.0000.0015
    ArcSoft Matroska Source, 0 x 00600000, 0, 0, AsMatroskaSplitter.ax, 1.00.0000.0004
    ATI Ticker, 0 x 00200000, 0, 1, Ticker.ax,.
    DV Muxer, 0x00400000, 0, 0, qdv.dll, 6.06.7100.0000
    ArcSoft Matroska Splitter, 0 x 00600000, 1, 1, AsMatroskaSplitter.ax, 1.00.0000.0004
    Converter, 0 x 00400001, 1, 1, quartz.dll, 6.06.7100.0000 color space
    Reader, 0x00400000, 0, 0, qasf.dll, WM ASF 12.00.7100.0000
    AAFC DivX Decoder, 0 x 00800000, 1, 1, daac.ax, 7.01.0000.0010
    Filter, 0 x 00200000, 0, 1, wmpsrcwp.dll, 12.00.7100.0000 screenshot
    ArcSoft Audio decoder HD, 0 x 00200000, 1, 1, ASAudioHD.ax, 1.03.0002.0060
    AVI Splitter, 0 x 00600000, 1, 1, quartz.dll, 6.06.7100.0000
    ArcSoft Audio Decoder, 0 x 00200000, 1, 1, ASAudio.ax, 1.04.0000.0002
    VGA 16 color Ditherer, 0 x 00400000, 1, 1, quartz.dll, 6.06.7100.0000
    ArcSoft Matroska Muxer, 0 x 00200000, 1, 1, AsMatroskaMuxer.ax, 1.00.0000.0004
    SBE2MediaTypeProfile, 0 x 00200000, 0, 0, SBE.dll, 6.06.7100.0000
    ArcSoft PutDataSample Filter 1.0, 0 x 00200000, 1, 1, ArcPutDataSample.ax, 1.00.0000.0005
    Microsoft DTV - DVD video Decoder, 0x005fffff, 2, 4, msmpeg2vdec.dll, 6.01.7075.0000
    ArcSoft RealMedia Splitter, 0 x 00600000, 1, 1, RealMediaSplitter.ax, 1.00.0000.0005
    AC3 parser Filter, 0 x 00600000, 1, 1, mpg2splt.ax, 6.06.7100.0000
    StreamBufferSink, 0 x 00200000, 0, 0, sbe.dll, 6.06.7100.0000
    MJPEG Decompressor, 0 x 00600000, 1, 1, quartz.dll, 6.06.7100.0000
    MPEG-I Stream Splitter, 0 x 00600000, 1, 2, quartz.dll, 6.06.7100.0000
    Parser, 0 x 00400000, 1, 1, quartz.dll, 6.06.7100.0000 SAMI (CC)
    BDAV ArcSoft Navigator, 0 x 00600000, 0, 5, BDAVNav.ax, 1.00.0000.0050
    The IST Codec, 0 x 00600000, 1, 4, VBICodec.ax, 6.06.7100.0000
    MPEG-2 Splitter, 0x005fffff, 1, 0, mpg2splt.ax, 6.06.7100.0000
    ArcSoft RealMedia Decoder, 0 x 00600000, 1, 1, RealVideoDecoder.ax, 1.00.0000.0005 video
    Filter, 0 x 00200000, 2, 5, cca.dll, 6.06.7100.0000 analysis of closed captioning
    SBE2FileScan, 0 x 00200000, 0, 0, SBE.dll, 6.06.7100.0000
    Microsoft MPEG-2 video encoding, 0 x 00200000, 1, 1, msmpeg2enc.dll, 6.01.7100.0018
    ArcSoft GetDataSample Filter 1.0, 0 x 00200000, 1, 1, ArcGetDataSample.ax, 1.00.0000.0013
    Renderer, 0 x 00800001, 1, 0, quartz.dll, 6.06.7100.0000 Script command internal
    MPEG Audio Decoder, 0 x 03680001, 1, 1, quartz.dll, 6.06.7100.0000
    MMACE ProcAmp, 0 x 00200000, 0, 2, MMACEFilters.dll,.
    DV Splitter, 0 x 00600000, 1, 2, qdv.dll, 6.06.7100.0000
    Video Mixing Renderer 9 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    Encode, 0 00600000, 1, 1, x atimcenc.dll, 10.05.0000.40515 ATI Audio Media Center
    BDMV ArcSoft IGFilter, 0 x 00200000, 1, 1, IGFilter.ax, 1.00.0028.0040
    Microsoft MPEG - 2 encode, 0 x 00200000, 2, 1, msmpeg2enc.dll, 6.01.7100.0018
    ACM Wrapper, 0 x 00600000, 1, 1, quartz.dll, 6.06.7100.0000
    Video Renderer, 0 x 00800001, 1, 0, quartz.dll, 6.06.7100.0000
    VFW sample Grabber, 0 x 00200000, 1, 1, P1370Vfw.dll, 1.01.0001.6784
    Video stream MPEG - 2 Analyzer, 0 x 00200000, 0, 0, sbe.dll, 6.06.7100.0000
    Multiplex, 0 x 00400000, 2, 1, atimcenc.dll, 10.05.0000.40515 ATI Media Center
    Line 21 Decoder, 0 x 00600000, 1, 1, qdvd.dll, 6.06.7100.0000
    ArcSoft Deinterlace, 0 x 00200000, 1, 1, deinterlace.ax, 1.00.0001.0007
    Port video Manager, 0 x 00600000, 2, 1, quartz.dll, 6.06.7100.0000
    DivX H.264 Decoder, 0 x 00800000, 1, 1, DivXDecH264.ax, 8.02.0000.0026
    Video Renderer, 0x00400000, 1, 0, quartz.dll, 6.06.7100.0000
    VFW Render Filter, 0 x 00200000 Null, 1, 0, P1370Vfw.dll, 1.01.0001.6784
    ArcSoft WST Decoder, 00200000 x 0, 1, 0, ArcText.ax, 1.00.0000.0061
    HD, 0 x 00200000, 1, 1, ASAudioEffectHD.ax, 1.00.0001.0022 Audio of ArcSoft effect
    Decoder DivX Filter, 0xff800000, 1, 1, divxdec.ax, 6.03.0000.0085
    Decoder, 0 x 00200000 VPS, 0, 0, WSTPager.ax, 6.06.7100.0000
    Writer, 0x00400000, 0, 0, qasf.dll, WM ASF 12.00.7100.0000
    ArcSoft AudioMixer, 0 x 00200000, 2, 1, audiomixer.ax, 1.00.0001.0004
    Allocator, 0 x 00600000, 1, 1, vbisurf.ax, 6.01.7100.0000 Surface of VBI
    MMACE SoftEmu, 0 x 00200000, 0, 2, MMACEFilters.dll,.
    DivX Demux, 0 x 00600000, 1, 0, DivXMedia.ax, 0.00.0000.0028
    File writer, 00200000 x 0, 1, 0, qcap.dll, 6.06.7100.0000
    ArcSoft HDVR Navigator, 0 x 00600000, 0, 3, HDVRNav.ax, 1.00.0000.0005
    ArcSoft Vorbis Encoder, 0 x 00200000, 1, 1, AsOggDS.ax, 1.00.0000.0003
    iTV Sink, 0 x 00600000, 1, 0, itvdata.dll, 6.06.7100.0000 data
    iTV to Capture data filter 0 x 00600000, 1, 1, itvdata.dll, 6.06.7100.0000
    ArcSoft Ogg Multiplexer, 0 x 00400000, 1, 1, AsOggDS.ax, 1.00.0000.0003
    ArcSoft HD DVD Navigator, 0 x 00600000, 0, 5, HDVDNavFilter.ax, 1.00.0001.0033
    ArcSoft RealMedia Audio Decoder, 0 x 00600000, 1, 1, RealAudioDecoder.ax, 1.00.0000.0005
    DVD Navigator, 0 x 00200000, 0, 3, qdvd.dll, 6.06.7100.0000
    MMACE DeInterlace, 0 x 00200000, 0, 2, MMACEFilters.dll,.
    Mixer2, 0 x 00200000, 1, 1, qdvd.dll, 6.06.7100.0000 overlay
    ArcSoft DVD Navigator, 0 x 00600000, 0, 3, DVDNavFilter.ax, 1.00.0000.0004
    Demux, 0 x 00200000, 0, 1, DMFSource.ax, 1.00.0001.0004 DivX MKV
    AVI Draw, 0 x 00600064, 9, 1, quartz.dll, 6.06.7100.0000
    RDP DShow Redirection Filter, 0xffffffff, 1, 0, DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder, 0 x 00200000, 1, 1, msmpeg2enc.dll, 6.01.7100.0018
    Pager, 0 x 00200000, 1, 1, WSTPager.ax, 6.06.7100.0000 WST
    MPEG2 demux, 0 x 00600000, 1, 1, mpg2splt.ax, 6.06.7100.0000
    BDMV ArcSoft Navigator, 0 x 00600000, 0, 7, BDMVNavFilter.ax, 1.01.0005.0056
    DTS encoder, 0 x 00200000, 1, 1, dtsencoder.ax,.
    Decoder, 0 x 00800000, 1, 1, qdv.dll, 6.06.7100.0000 DV video
    Video of ArcSoft Decoder, 0 x 00600000, 2, 2, ASVid.ax, 2.25.0105.0052
    DivX Subtitle Decoder, 0 x 00600000, 1, 1, DivXMedia.ax, 0.00.0000.0028
    SampleGrabber, 0 x 00200000, 1, 1, qedit.dll, 6.06.7100.0000
    Renderer, 00200000 x 0, 1, 0, qedit.dll, 6.06.7100.0000 null
    ArcSoft WMV/ASF Splitter, 00200000 x 0, 1, 0, ArcWmvSpl.ax, 1.00.0000.0012
    COPP ArcSoft Source, 0 x 00200000, 0, 1, ASCOPPSource.ax, 1.00.0000.0001
    Tables, 0x005fffff, 1, 0, mpeg2data.ax, 6.06.7100.0000 and MPEG - 2 Sections
    Microsoft AC3 Encoder, 0 x 00200000, 1, 1, msac3enc.dll, 6.01.7100.0018
    StreamBufferSource, 0 x 00200000, 0, 0, sbe.dll, 6.06.7100.0000
    Smart Tee, 0 x 00200000, 1, 2, qcap.dll, 6.06.7100.0000
    Mix, 0 x 00200000, 0, 0, qdvd.dll, 6.06.7100.0000 overlay
    AVI Decompressor, 0 x 00600000, 1, 1, quartz.dll, 6.06.7100.0000
    Source, 0 x 00400000, 0, 2, quartz.dll, 6.06.7100.0000 AVI/WAV file
    Filter snapshot ArcSoft 1.0, 0 x 00200000, 1, 1, ArcSnap.ax, 1.00.0000.0022
    Parser, 0 x 00400000, 1, 1, quartz.dll, 6.06.7100.0000 wave
    Parser, 0 x 00400000, 1, 1, quartz.dll, 6.06.7100.0000 noon
    Multi-fichier Parser, 0 x 00400000, 1, 1, quartz.dll, 6.06.7100.0000
    File stream renderer, 0x00400000, 1, 1, quartz.dll, 6.06.7100.0000
    ArcSoft MPEG Demux, 0 x 00400000, 1, 2, ArcDemux.ax, 1.00.0002.0073
    Microsoft DTV - DVD Audio Decoder, 0x005fffff, 1, 1, msmpeg2adec.dll, 6.01.7075.0000
    StreamBufferSink2, 0 x 00200000, 0, 0, sbe.dll, 6.06.7100.0000
    AVI Mux, 00200000 x 0, 1, 0, qcap.dll, 6.06.7100.0000
    Line 21 decoder 2, 0 x 00600002, 1, 1, quartz.dll, 6.06.7100.0000
    File Source (Async.), 0 x 00400000, 0, 1, quartz.dll, 6.06.7100.0000
    File Source (URL), 0 x 00400000, 0, 1, quartz.dll, 6.06.7100.0000
    ArcSoft Ogg Splitter, 0 x 00600000, 1, 1, AsOggDS.ax, 1.00.0000.0003
    ArcSoft MP4 Splitter, 0 x 00600000, 0, 2, mp4splitter.ax, 1.01.0000.0057
    ArcSoft 3GP Splitter, 0 x 00600000, 0, 2, 3GPSplitter.ax, 1.00.0000.0005
    Infinite pin Tee Filter, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000
    Renderer, 00200000 x 0, 1, 0, evr.dll, 6.01.7100.0000 improved video
    BDA MPEG2 Transport Information Filter, 0 x 00200000, 2, 0, psisrndr.ax, 6.06.7100.0000
    Decoder, 0 x 40000001, 1, 1, quartz.dll, 6.06.7100.0000 MPEG video
    Navigator, 0 x 00600000, 0, 3, DMVNav.ax, 2.00.0000.0014 ArcSoft DVD - VR

    WDM Streaming Tee/Splitter devices:
    Converter, 0 x 00200000, 1, 1, ksproxy.ax, 6.01.7100.0000 tee/sink - to the-wells

    WDM Streaming encoder devices:
    0 x 00200000, 2, 1,

    Video compressors:
    WMVideo8 encoder DMO, 0 x 00600800, 1, 1, wmvxencd.dll, 6.01.7100.0000
    WMVideo9 encoder DMO, 0 x 00600800, 1, 1, wmvencod.dll, 6.01.7100.0000
    Encoder 9 MSScreen DMO, 0 x 00600800, 1, 1, wmvsencd.dll, 6.01.7100.0000
    Encode, 0 x 00200000, 0, 0, qdv.dll, 6.06.7100.0000 DV video
    MJPEG Compressor, 0 x 00200000, 0, 0, quartz.dll, 6.06.7100.0000
    Cinepak Codec by Radius, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000
    Codec DivX 6.8.5 (4 CPUs), 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000 logic
    Intel IYUV codec, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000
    Intel IYUV codec, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000
    Microsoft RLE, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000
    Microsoft Video 1, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000
    DivX 6.8.5 YV12 Decoder, 0 x 00200000, 1, 1, qcap.dll, 6.06.7100.0000

    Audio compressors:
    WM Encoder DMO speech, 0 00600800, 1, 1, x WMSPDMOE. DLL, 6.01.7100.0000
    WMAudio encoder DMO, 0 x 00600800, 1, 1, WMADMOE. DLL, 6.01.7100.0000
    ArcSoft Vorbis Encoder, 0 x 00200000, 1, 1, AsOggDS.ax, 1.00.0000.0003
    IMA ADPCM, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000
    PCM, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000
    Microsoft ADPCM, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000
    GSM 6.10, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000
    CCITT A - Law, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000
    CCITT u - Law, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000
    MPEG Layer-3, 0 x 00200000, 1, 1, quartz.dll, 6.06.7100.0000

    Audio Capture sources:
    Microphone (USB Audio Device), 0 x 00200000, 0, 0, qcap.dll, 6.06.7100.0000
    ATI Avstreams Analog Audio Capture, 0 x 00200000, 0, 1, ksproxy.ax, 6.01.7100.0000
    "What U Hear" (Creative SB X - Fi, 0 x 00200000, 0, 0, qcap.dll, 6.06.7100.0000)
    Audio Digital (S/PDIF) (high, 0 x 00200000, 0, 0, qcap.dll, 6.06.7100.0000)
    Digital-In (Creative SB X - Fi), 0 x 00200000, 0, 0, qcap.dll, 6.06.7100.0000
    Micro FP (Creative SB X - Fi, 0 x 00200000, 0, 0, qcap.dll, 6.06.7100.0000)

    PBDA CP filters:
    PBDA DTFilter, 0 x 00600000, 1, 1, CPFilters.dll, 6.06.7100.0000
    ETFilter, 0 x 00200000 PBDA, 0, 0, CPFilters.dll, 6.06.7100.0000
    PTFilter, 0 x 00200000 PBDA, 0, 0, CPFilters.dll, 6.06.7100.0000

    Midi converters:
    Default MidiOut Device, 0 x 00800000, 1, 0, quartz.dll, 6.06.7100.0000
    Synth, 00200000 x 0, 1, 0, quartz.dll, 6.06.7100.0000 Microsoft GS Wavetable
    SB X - Fi Synth a [0001] 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    SB X - Fi Synth B [0001] 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000

    WDM Streaming Capture devices:
    0 x 00000000, 0, 0,
    In, 0 x 00200000, 1, 1, ksproxy.ax, 6.01.7100.0000 HD Digital Audio
    ATI Avstreams Analog Capture, 0 x 00200000, 2, 5, ksproxy.ax, 6.01.7100.0000
    Digital-In, 0 x 00000000, 0, 0,
    Micro FP, 0 x 00000000, 0, 0,
    Line-In, 0 x 00000000, 0, 0,
    0 x 00000000, 0, 0,
    SB X - Fi Audio [0001] 0 00200000, 1, 1, x ksproxy.ax, 6.01.7100.0000
    SB Live! 2 K Audio [0001], 0 x 00000000, 0, 0,.
    Live! Cam Voice, 0 x 00200000, 0, 1, ksproxy.ax, 6.01.7100.0000
    Audio device, 0 x 00000000, 0, 0,

    WDM Streaming making devices:
    ATI HD Audio rear output, 0 x 00200000, 1, 1, ksproxy.ax, 6.01.7100.0000
    Out, 0 00200000, 1, 1, x ksproxy.ax, 6.01.7100.0000 HD Audio SPDIF
    0 x 00000000, 0, 0,
    0 x 00000000, 0, 0,
    0 x 00000000, 0, 0,
    SB X - Fi SpdifOut [0001], 0 x 00000000, 0, 0,.
    SB X - Fi Synth a [0001] 0 00200000, 1, 1, x ksproxy.ax, 6.01.7100.0000
    SB X - Fi Synth B [0001] 0 00200000, 1, 1, x ksproxy.ax, 6.01.7100.0000
    SB X - Fi Audio [0001] 0 00200000, 1, 1, x ksproxy.ax, 6.01.7100.0000
    0 x 00000000, 0, 0,

    BDA Source filters:
    BDA ATI Tuner, 0 x 00200000, 1, 1, ksproxy.ax, 6.01.7100.0000 digital

    BDA network providers:
    Provider, 0 x 00200000, 0, 1, MSDvbNP.ax, 6.06.7100.0000 Microsoft ATSC network
    DVBC Microsoft Network Provider, 0 x 00200000, 0, 1, MSDvbNP.ax, 6.06.7100.0000
    Provider, 0 x 00200000, 0, 1, MSDvbNP.ax, network 6.06.7100.0000 Microsoft DVBS
    Provider, 0 x 00200000, 0, 1, MSDvbNP.ax, 6.06.7100.0000 network Microsoft t
    Microsoft Network Provider, 0 x 00200000, 0, 1, MSNP.ax, 6.06.7100.0000

    WDM Streaming Multiplexer devices:
    ATI MPEG2 MUX, 0 x 00200000, 2, 1, Avstreams ksproxy.ax, 6.01.7100.0000

    Video Capture sources:
    ATI Avstreams Analog Capture, 0 x 00200000, 2, 5, ksproxy.ax, 6.01.7100.0000
    Live! Cam Voice, 0 x 00200000, 0, 1, ksproxy.ax, 6.01.7100.0000
    Live! Cam Voice (VFW), 0 x 00200000, 0, 0, qcap.dll, 6.06.7100.0000

    Multiple instances Codecs VBI Capable:
    The IST Codec, 0 x 00600000, 1, 4, VBICodec.ax, 6.06.7100.0000

    BDA Transport Information converters:
    BDA MPEG2 Transport Information Filter 0 x 00600000, 2, 0, psisrndr.ax, 6.06.7100.0000
    Tables, 0 x 00600000, 1, 0, mpeg2data.ax, 6.06.7100.0000 and MPEG - 2 Sections

    WDM Streaming TV Tuners:
    ATI Analog Tuner, 0 x 00200000, 0, 2, Avstreams kstvtune.ax, 6.01.7100.0000

    WDM Streaming crossbars:
    ATI Avstreams Analog Xbar, 0 x 00200000, 8, 2, ksxbar.ax, 6.01.7100.0000

    WDM TV Audio streaming:
    ATI Avstreams Analog TV Audio, 0 x 00200000, 1, 1, ksxbar.ax, 6.01.7100.0000

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

    WDM Streaming transformations of the Communication:
    Converter, 0 x 00200000, 1, 1, ksproxy.ax, 6.01.7100.0000 tee/sink - to the-wells

    Audio converters:
    Speakers (Creative SB X - Fi), 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    DirectSound Device, 0 x 00800000, 1, 0, quartz.dll, default 6.06.7100.0000
    Default WaveOut Device, 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    Audio Digital (S/PDIF) (high, 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000)
    DirectSound: Audio Digital (S/PDIF) (high definition Audio Device), 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    DirectSound: SPDIF Out (Creative SB X - Fi), 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    DirectSound: Speakers (Creative SB X - Fi), 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000
    SPDIF Out (Creative SB X - Fi), 0 x 00200000, 1, 0, quartz.dll, 6.06.7100.0000

    BDA receiver components:
    BDA ATI Capture, 0 x 00200000, 1, 1, ksproxy.ax, 6.01.7100.0000 digital

    ---------------
    EVR power information
    ---------------
    Current value: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (quality)
    Quality indicators: 2576
    Activated:
    Limitation of the force
    That allow half deinterlace
    Allow the scaling
    Decode power usage: 100
    Balanced flags: 1424
    Activated:
    Limitation of the force
    Allow batch processing
    Force half deinterlace
    Force the scaling
    Decode power usage: 50
    PowerFlags: 1424
    Activated:
    Limitation of the force
    Allow batch processing
    Force half deinterlace
    Force the scaling
    Decode power usage: 0

    DXdiags 64-bit
    ------------------
    Information System
    ------------------
    Time of this report: 07-13-2009, 08:35:02
    Computer name: BLACKDRAGON
    Operating system: Windows 7 Ultimate 64-bit (6.1, Build 7100) (7100.winmain_win7rc.090421 - 1700)
    Language: English (regional setting: English)
    System manufacturer: BIOSTAR Group
    System model: TA790GX 128M
    BIOS: Default system BIOS
    Processor: AMD Athlon (TM) II X 4 940 processor (4 CPUs), ~3.0GHz
    Memory: RAM 8192MB
    Available OS memory: 8192MB RAM
    Page file: 1351MB used, 15029 MB of available space
    Windows Dir: C:\Windows
    DirectX version: DirectX 11
    DX setup parameters: not found
    DPI setting: Using System DPI
    System DPI setting: 96 DPI (100%)
    DWM DPI Scaling: disabled
    DxDiag Version: 6.01.7100.0000 64 bit Unicode

    ------------
    DxDiag Notes
    ------------
    Display 1 tab: No problems found.
    Sound tab 1: The file ctaud2k.sys is is not digitally signed, which means that it has not been tested by the Microsoft Windows Hardware Quality Labs (WHQL).  You may be able to obtain a WHQL logo driver from the hardware manufacturer.
    2 Audio tab: No problems found.
    Audio tab 3: The file ctaud2k.sys is is not digitally signed, which means that it has not been tested by the Microsoft Windows Hardware Quality Labs (WHQL).  You may be able to obtain a WHQL logo driver from the hardware manufacturer.
    Input tab: no problems found.

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

    ---------------
    Display devices
    ---------------
    Card name: ATI Radeon HD 4800 Series
    Manufacturer: ATI Technologies Inc.
    Track type: processor ATI Radeon Graphics (0 x 9440)
    DAC type: DAC (400 MHz) internal
    The device key: Enum\PCI\VEN_1002 & DEV_9440 & SUBSYS_02781043 & REV_00
    Memory display: 4083 MB
    Dedicated memory: 1015 MB
    Shared memory: 3067 MB
    Current mode: 1920 x 1200 (32 bit) (59Hz)
    Name of the monitor: SyncMaster T260, SyncMaster Magic T260 (Digital)
    Monitor model: SyncMaster
    Monitor ID: SAM03E7
    Native mode: 1920 x 1200 (59,950 Hz)
    Output type: DVI
    Driver name: atiumd64.dll, atidxx64.dll, atiumdag, atidxx32, atiumdva, atiumd6a.cap, atitmm64.dll
    The driver file version: 8.14.0010.0671 (English)
    Driver version: 8.620.0.0
    DDI Version: 10.1
    : Model WDDM 1.1 driver
    Driver attributes: Final retail
    Format/driver Date: 2009-05-15 22:03:58, 3987456 bytes
    Would be WHQL logo: Yes
    Date stamp WHQL:
    The instrument identifier: {D7B71EE2-D700-11CF-6C71-7222A1C2C535}
    Vendor ID: 0 x 1002
    Device ID: 0 x 9440
    SubSys ID: 0 x 02781043
    Revision ID: 0x0000
    Strong name of the driver: oem10.inf:ATI. Mfg.NTamd64.6.1:ati2mtag_R7X:8.620.0.0:pci\ven_1002&dev_9440
    The driver rating: 00E62001
    Video Accel: ModeMPEG2_A ModeMPEG2_C
    Deinterlace caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: caps Frames(Prev/Fwd/Back) = (0,0,1) (In/Out) Format (YUY2, YUY2) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (YUY2, YUY2) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: caps Frames(Prev/Fwd/Back) = (0,0,0) Format (In/Out) = (YUY2, YUY2) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: caps Frames(Prev/Fwd/Back) = (0,0,1) (In/Out) Format (UYVY, UYVY) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (UYVY, UYVY) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: caps Frames(Prev/Fwd/Back) = (0,0,0) Format (In/Out) = (UYVY, UYVY) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format (In/Out) (YV12, 0 x 32315659) = Frames(Prev/Fwd/Back) = (0,0,0) Caps
    {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: caps Frames(Prev/Fwd/Back) = (0,0,2) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: caps Frames(Prev/Fwd/Back) = (0,0,2) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: caps Frames(Prev/Fwd/Back) = (0,0,1) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (NV12, 0x3231564e) = VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: caps Frames(Prev/Fwd/Back) = (0,0,0) (In/Out) Format (NV12, 0x3231564e) = 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: Unsupported
    DXVA-HD: not supported
    DDraw status: enabled
    D3D status: enabled
    AGP status: enabled

    Hello Hunsinger D, welcome.
     
    My suggestion would be to first see if you have the latest version on your ATI drivers.
     
    You can find the latest version of your card here. Its the latest version of 64-bit Windows 7 from the site Web of ATI CCC:
     
    https://a248.e.Akamai.net/f/674/9206/0/www2.ATI.com/drivers/9-6_vista64_win7_64_dd_ccc_wdm_enu.exe
     
    Once downloaded, run the installer and it should guide you through the installation process, which most will be automatic. It will require a reboot Afterwords.
     
    Depending on the applications you run, they cannot be completely compatible with DirectX 11, which is what Windows 7 is running in native mode. We can try to force apps to run in the mode of DirectX 9/10.
     
    Try this to force the application to run on DirectX 9:
     
    1 find / create a shortcut to the application
    2. right click on the shortcut and select Properties
    3. click on the tab 'Shortened' at the top (if not already done)
    4. in the field "Target", go at the end of the quoted text, put a space and add - dx9
     
    The result should look like that in nature, even if the path in quotes may be different:
     
    "C:\Program may Explorer\iexplore.exe"-dx9
     
    As long as there is a space between the "" text and - tag dx9 you will be fine.
     
    5. click on 'Apply' at the bottom and close the window. Now try to start the application.
     
    If please reply back and let us know the results.

  • Cannot network officejet 6210 to windows 7 64-bit and 32-bit xp

    Hi all

    Thanks in advance for any help to solve my current problem.

    I have a Dell XP desktop with a HP 6210 installed via USB.  It works very well.

    I have a laptop HP (G60 - 247 CL) upgraded to Windows 7 (64-bit).

    When I try to print wireless from my laptop documents go into the queue, but does not print.  My laptop sees the printer but it says the printer is offline (it isn't).

    I guess I have to install a driver 64 bit Windows 7 on my desktop (XP), so that when my laptop tries to connect to the printer, it can use this driver.  However, the XP Web site I cannot download this driver.  He said that it is already available in the Windows 7 software.  But my XP machine requires the driver 64 bit on it so my laptop can use this driver.

    Hope this makes some sense.  Once again, thank you in advance.  I'm starting to lose sleep about it.

    Hi John,.

    There is no software driver full of features for Win XP 64-Bit. Follow the steps outlined in the document below to install a basic print driver.

    Windows XP Professional x 64 minidriver Workaround

  • right shoulder button doesn't work is not on the gamepad xbox on pc XP

    Hello
    I have a joystick type xbox 360 connected to my pc and the right shoulder button does not work when you play Rainbow 6 Vegas 2.  Initially it would not work so I changed the ID & as recommended numbers on a forum, I visited. Now, all controls work except the right shoulder button. The file that I modified is shown below.  Any help much appreciated.
    concerning
    Pete

    [Joystick2]
    ProductName = gamepad Xbox HID minidriver
    VendorID = 5168
    ProductID = 63489
    Joy1 = XboxTypeS_A
    Joy2 = XboxTypeS_B
    Joy3 = XboxTypeS_X
    Joy4 = XboxTypeS_Y
    Joy5 = XboxTypeS_RightShoulder
    Joy6 = XboxTypeS_LeftShoulder
    Joy7 = XboxTypeS_Start
    Joy8 = XboxTypeS_Back
    Joy9 = XboxTypeS_LeftThumbstick
    Joy10 = XboxTypeS_RightThumbstick
    Joy11 =
    Joy12 =
    Joy13 =
    Joy14 =
    Joy15 =
    Joy16 =
    Axis_X = XboxTypeS_LeftX
    Axis_Y = XboxTypeS_LeftY
    Axis_Z = XboxTypeS_LeftTrigger
    Axis_Rotation_X = XboxTypeS_RightX
    Axis_Rotation_Y = XboxTypeS_RightY
    Axis_Rotation_Z = XboxTypeS_RightTrigger
    Slider_0 =
    Slider_1 =
    DPadUp = XboxTypeS_DPad_Up
    DPadDown = XboxTypeS_DPad_Down
    DPadLeft = XboxTypeS_DPad_Left
    DPadRight = XboxTypeS_DPad_Right

    Hello

    The question you have posted is related to the Xbox 360 controller.  Please visit the link below to find a community that will offer in support of your application.

    XBOX support:
    http://support.Xbox.com/en-us/Xbox-360/get-started/home?XR=shellnav

    Reference: http://support.Xbox.com/en-us/Xbox-360/accessories/controllers-remotes#1af1420135ff4637ab4f495f75a145b8

    Hope this information is useful.

  • kernel drivers help

    I have problems with my mouse Logitech MX Revolution gel upward and the movement of the eradically.  Setpoint seems to get worse, I uninstalled and reinstalled.  I am running Vista Home Premium.

    Also, I see a number of disabled kernel drivers.  I can say, I think, than some that I have activated.  Which ones in the list must be enabled, and how are you.

    ipfilterdriver filter driver for Kernel Driver Yes Auto c:\windows\system32\drivers\ipfltdrv.sys running OK Normal No Yes IP traffic
    LLTDIO Link-Layer Topology Discovery Mapper i/o Driver c:\windows\system32\drivers\lltdio.sys Kernel Driver Yes car running OK Normal No Yes
    UAC File Virtualization c:\windows\system32\drivers\luafv.sys luafv File System Driver Yes car running OK Normal No Yes
    MSFWDRV MSFWDrv c:\windows\system32\drivers\msfwdrv.sys Kernel Driver Yes car running OK Normal No Yes
    ParVdm Parvdm c:\windows\system32\drivers\parvdm.sys Kernel Driver Yes car running OK Ignore No Yes
    PEAuth PEAUTH c:\windows\system32\drivers\peauth.sys Kernel Driver Yes car running OK Normal No Yes
    REGI regi c:\windows\system32\drivers\regi.sys Kernel Driver Yes car running OK Normal No Yes
    rspndr Link - Layer Topology Discovery responder c:\windows\system32\drivers\rspndr.sys Kernel Driver Yes car running OK Normal No Yes
    secdrv driver safety c:\windows\system32\drivers\secdrv.sys Kernel Driver Yes car running OK Normal No Yes
    tcpipreg Compatibility registry TCP/IP c:\windows\system32\drivers\tcpipreg.sys Kernel Driver Yes car running OK Normal No Yes
    ACPI driver ACPI Microsoft Kernel Driver Yes start running critical OK No Yes c:\windows\system32\drivers\acpi.sys
    ATAPI IDE Channel c:\windows\system32\drivers\atapi.sys Kernel Driver Yes boot running OK critical No Yes
    CLFS CLFS (Common Log) c:\windows\system32\clfs.sys Kernel Driver Yes boot running OK critical No Yes
    Crcdisk Crcdisk Filter Driver c:\windows\system32\drivers\crcdisk.sys Kernel Driver Yes boot running OK Normal No Yes
    Disk disk c:\windows\system32\drivers\disk.sys Kernel Driver Yes boot running OK Normal No Yes driver
    Ecache pilot of caching ReadyBoost c:\windows\system32\drivers\ecache.sys Kernel Driver Yes start running critical OK No Yes
    FileInfo file Information FS minifilter c:\windows\system32\drivers\fileinfo.sys File System Driver Yes Boot running OK Normal No Yes
    FltMgr FltMgr-c:\windows\system32\drivers\fltmgr.sys File System Driver Yes Boot running OK critical No Yes
    iastor Intel AHCI Controller c:\windows\system32\drivers\iastor.sys Kernel Driver Yes boot running OK Normal No Yes
    KsecDD KSecDD c:\windows\system32\drivers\ksecdd.sys Kernel Driver Yes boot running OK critical No Yes
    Manager MountMgr of mountpoint c:\windows\system32\drivers\mountmgr.sys Kernel Driver Yes boot running OK critical No Yes
    msisadrv pilot class ISA/EISA c:\windows\system32\drivers\msisadrv.sys Kernel Driver Yes boot running OK critical No Yes
    MUP Mup c:\windows\system32\drivers\mup.sys File System Driver Yes Boot running OK Normal No Yes
    NDIS driver system NDIS Kernel Driver Yes boot running OK c:\windows\system32\drivers\ndis.sys critical No Yes
    partmgr Partition Manager c:\windows\system32\drivers\partmgr.sys Kernel Driver Yes boot running OK critical No Yes
    PCI PCI Bus Driver c:\windows\system32\drivers\pci.sys Kernel Driver Yes boot running OK critical No Yes
    Pciide pciide-c:\windows\system32\drivers\pciide.sys Kernel Driver Yes boot running OK critical No Yes
    PxHelp20 PxHelp20 c:\windows\system32\drivers\pxhelp20.sys Kernel Driver Yes boot running OK Normal No Yes
    spldr pilot security processor Loader c:\windows\system32\drivers\spldr.sys Kernel Driver Yes boot running OK critical No Yes
    TCPIP driver of TCP/IP c:\windows\system32\drivers\tcpip.sys Kernel Driver Yes boot running OK Normal No Yes
    volmgr c:\windows\system32\drivers\volmgr.sys Volume Manager driver kernel driver Yes boot running OK critical No Yes
    managing dynamic volumes volmgrx c:\windows\system32\drivers\volmgrx.sys Kernel Driver Yes boot running OK critical No Yes
    Volsnap storage volumes c:\windows\system32\drivers\volsnap.sys Kernel Driver Yes boot running OK critical No Yes
    Wdf01000 Kernel Mode Driver Frameworks service c:\windows\system32\drivers\wdf01000.sys Kernel Driver Yes boot running OK Normal No Yes
    adp94xx adp94xx c:\windows\system32\drivers\adp94xx.sys kernel driver able-bodied stopped OK Normal no no
    adpahci adpahci c:\windows\system32\drivers\adpahci.sys kernel driver able-bodied stopped OK Normal no no
    adpu160m adpu160m c:\windows\system32\drivers\adpu160m.sys kernel driver able-bodied stopped OK Normal no no
    adpu320 adpu320 c:\windows\system32\drivers\adpu320.sys kernel driver able-bodied stopped OK Normal no no
    Aic78xx aic78xx driver core non-disabled c:\windows\system32\drivers\djsvs.sys stopped OK Normal no no
    aliide, aliide c:\windows\system32\drivers\aliide.sys kernel driver able-bodied stopped critical OK no no
    amdide amdide c:\windows\system32\drivers\amdide.sys kernel driver able-bodied stopped critical OK no no
    Amdk7 driver CPU AMD K7 kernel driver non-disabled c:\windows\system32\drivers\amdk7.sys stopped OK Normal no no
    AmdK8 processor AMD K8 c:\windows\system32\drivers\amdk8.sys kernel driver non-disabled driver stopped OK Normal no no
    ARC arc c:\windows\system32\drivers\arc.sys kernel driver able-bodied stopped OK Normal no no
    arcsas arcsas c:\windows\system32\drivers\arcsas.sys kernel driver able-bodied stopped OK Normal no no
    blbdrive blbdrive c:\windows\system32\drivers\blbdrive.sys kernel driver able-bodied stopped OK Normal no no
    Brserid Brother MFC Serial Port Interface Driver (WDM) kernel driver non-disabled c:\windows\system32\drivers\brserid.sys stopped OK Normal no no
    brserwdm brother WDM Serial driver c:\windows\system32\drivers\brserwdm.sys driver kernel able-bodied stopped OK Normal no no
    BrUsbMdm Brother MFC Fax only Modem USB driver kernel able-bodied c:\windows\system32\drivers\brusbmdm.sys stopped OK Normal no no
    bthmodem communication Bluetooth Serial c:\windows\system32\drivers\bthmodem.sys driver core non-disabled driver stopped OK Normal no no
    CD/DVD File System c:\windows\system32\drivers\cdfs.sys drive CDFS File System Driver disabled running OK Normal No Yes Yes
    CIRClass IR c:\windows\system32\drivers\circlass.sys kernel driver no disabled devices stopped OK Normal no no
    cmdide cmdide c:\windows\system32\drivers\cmdide.sys kernel driver able-bodied stopped critical OK no no
    Compbatt battery Composite Microsoft c:\windows\system32\drivers\compbatt.sys able-bodied driver kernel driver stopped critical OK no no
    Crusoe Transmeta Crusoe processor driver core non-disabled c:\windows\system32\drivers\crusoe.sys driver stopped OK Normal no no
    elxstor elxstor driver core non-disabled c:\windows\system32\drivers\elxstor.sys stopped OK Normal no no
    Microsoft Hardware Error Device Driver c:\windows\system32\drivers\errdev.sys driver core non-disabled errdev stopped OK Normal no no
    hidbth Microsoft Bluetooth HID Miniport driver core c:\windows\system32\drivers\hidbth.sys able-bodied stopped OK Ignore no no
    Hidir Driver HID infrared Microsoft c:\windows\system32\drivers\hidir.sys driver kernel able-bodied stopped OK Ignore no no
    HpCISSs HpCISSs c:\windows\system32\drivers\hpcisss.sys kernel driver able-bodied stopped OK Normal no no
    i2omp i2omp c:\windows\system32\drivers\i2omp.sys kernel driver able-bodied stopped OK Normal no no
    i8042prt i8042 keyboard and non-disabled Port of mouse PS/2 c:\windows\system32\drivers\i8042prt.sys kernel driver driver stopped OK Normal no no
    Intel RAID Controller Vista c:\windows\system32\drivers\iastorv.sys driver core non-disabled iaStorV stopped OK Normal no no
    iirsp iirsp c:\windows\system32\drivers\iirsp.sys kernel driver able-bodied stopped OK Normal no no
    Intelide intelide c:\windows\system32\drivers\intelide.sys driver kernel able-bodied stopped critical OK no no
    Ipmidrv IPMIDRV c:\windows\system32\drivers\ipmidrv.sys kernel driver able-bodied stopped OK Normal no no
    ISAPNP PnP ISA/EISA Bus Driver driver kernel able-bodied c:\windows\system32\drivers\isapnp.sys stopped critical OK no no
    iteatapi ITEATAPI_Service_Install c:\windows\system32\drivers\iteatapi.sys kernel driver able-bodied stopped OK Normal no no
    iteraid driver core non-disabled c:\windows\system32\drivers\iteraid.sys ITERAID_Service_Install stopped OK Normal no no
    lsi_fc LSI_FC c:\windows\system32\drivers\lsi_fc.sys kernel driver able-bodied stopped OK Normal no no
    non-disabled lsi_sas LSI_SAS c:\windows\system32\drivers\lsi_sas.sys kernel driver stopped OK Normal no no
    lsi_scsi LSI_SCSI c:\windows\system32\drivers\lsi_scsi.sys kernel driver able-bodied stopped OK Normal no no
    megasas megasas c:\windows\system32\drivers\megasas.sys kernel driver able-bodied stopped OK Normal no no
    MegaSR MegaSR c:\windows\system32\drivers\megasr.sys kernel driver able-bodied stopped OK Normal no no
    MPIO driver Bus Microsoft Multi-Path c:\windows\system32\drivers\mpio.sys driver kernel able-bodied stopped OK Normal no no
    Mraid35x Mraid35x c:\windows\system32\drivers\mraid35x.sys kernel driver able-bodied stopped OK Normal no no
    Msahci msahci c:\windows\system32\drivers\msahci.sys kernel driver able-bodied stopped critical OK no no
    MSDSM Module specific to the Microsoft Multi-Path c:\windows\system32\drivers\msdsm.sys driver core non-disabled device stopped OK Normal no no
    nfrd960 nfrd960 c:\windows\system32\drivers\nfrd960.sys kernel driver able-bodied stopped OK Normal no no
    ntrigdigi N-trig driver Tablet HID Driver core non-disabled c:\windows\system32\drivers\ntrigdigi.sys stopped OK Normal no no
    NVRAID NVIDIA nForce RAID Driver c:\windows\system32\drivers\nvraid.sys driver kernel able-bodied stopped OK Normal no no
    nvstor nvstor c:\windows\system32\drivers\nvstor.sys kernel driver able-bodied stopped critical OK no no
    PCMCIA pcmcia-c:\windows\system32\drivers\pcmcia.sys driver kernel able-bodied stopped OK Normal no no
    Processor Processor driver c:\windows\system32\drivers\processr.sys driver kernel able-bodied stopped OK Normal no no
    ql2300 able-bodied Miniport QLogic Fibre Channel driver kernel c:\windows\system32\drivers\ql2300.sys driver stopped OK Normal no no
    ql40xx driver miniport QLogic iSCSI driver core non-disabled c:\windows\system32\drivers\ql40xx.sys stopped OK Normal no no
    Terminal Server Device Redirector Driver c:\windows\system32\drivers\rdpdr.sys driver kernel able-bodied Rdpdr stopped OK Normal no no
    Sbp2port driver buses of Transport/Protocol SBP - 2 driver core non-disabled c:\windows\system32\drivers\sbp2port.sys stopped OK Normal no no
    Sermouse pilot mouse series driver core non-disabled c:\windows\system32\drivers\sermouse.sys stopped OK Normal no no
    sffdisk SFF driver core non-disabled c:\windows\system32\drivers\sffdisk.sys storage class driver stopped OK Normal no no
    sfloppy floppy drive high capacity c:\windows\system32\drivers\sfloppy.sys driver kernel able-bodied stopped OK Normal no no
    SiSRaid2 SiSRaid2 c:\windows\system32\drivers\sisraid2.sys kernel driver able-bodied stopped OK Normal no no
    sisraid4 SiSRaid4 c:\windows\system32\drivers\sisraid4.sys kernel driver able-bodied stopped OK Normal no no
    SYMC8XX Symc8xx driver core non-disabled c:\windows\system32\drivers\symc8xx.sys stopped OK Normal no no
    sym_hi Sym_hi c:\windows\system32\drivers\sym_hi.sys kernel driver able-bodied stopped OK Normal no no
    sym_u3 Sym_u3 c:\windows\system32\drivers\sym_u3.sys kernel driver able-bodied stopped OK Normal no no
    UDFS udfs file system driver disabled c:\windows\system32\drivers\udfs.sys stopped OK Normal no no
    uliahci uliahci c:\windows\system32\drivers\uliahci.sys kernel driver able-bodied stopped OK Normal no no
    ulsata UlSata c:\windows\system32\drivers\ulsata.sys kernel driver able-bodied stopped OK Normal no no
    ulsata2 ulsata2 c:\windows\system32\drivers\ulsata2.sys kernel driver able-bodied stopped OK Normal no no
    EHome infrared receiver (USBCIR) c:\windows\system32\drivers\usbcir.sys kernel driver able-bodied USBCIR stopped OK Normal no no
    Usbohci Microsoft USB Open Host Controller Miniport driver core c:\windows\system32\drivers\usbohci.sys pilot non-disabled stopped OK Normal no no
    viac7 VIA the c:\windows\system32\drivers\viac7.sys kernel driver able-bodied C7 processor driver stopped OK Normal no no
    viaide viaide c:\windows\system32\drivers\viaide.sys kernel driver able-bodied stopped critical OK no no
    vsmraid vsmraid c:\windows\system32\drivers\vsmraid.sys kernel driver able-bodied stopped OK Normal no no
    wacompen driver Wacom Pen HID Driver core non-disabled c:\windows\system32\drivers\wacompen.sys series stopped OK Normal no no
    Microsoft Watchdog Timer Driver c:\windows\system32\drivers\wd.sys driver core non-disabled WD stopped OK Normal no no
    wmiacpi Microsoft Windows for ACPI c:\windows\system32\drivers\wmiacpi.sys driver core Management Interface able-bodied stopped OK Normal no no
    ws2ifsl Winsock IFS driver c:\windows\system32\drivers\ws2ifsl.sys driver kernel able-bodied stopped OK Normal no no
    Agp440 filter to Bus AGP Intel c:\windows\system32\drivers\agp440.sys kernel driver no manual stopped OK Normal no no
    amdagp AMD AGP Bus Filter Driver c:\windows\system32\drivers\amdagp.sys kernel driver no manual stopped OK Normal no no
    asyncmac pilot media Asynchronous RAS c:\windows\system32\drivers\asyncmac.sys Kernel Driver Yes manual running OK Normal No Yes
    atiavpci ATI Unified Avstreams service c:\windows\system32\drivers\atinavrr.sys Kernel Driver Yes manual running OK Ignore No Yes
    AtiHdmiService function driver from ATI for HDMI Service c:\windows\system32\drivers\atihdmi.sys Kernel Driver Yes manual running OK Normal No Yes
    atikmdag atikmdag c:\windows\system32\drivers\atikmdag.sys Kernel Driver Yes manual running OK Ignore No Yes
    Bowser Bowser c:\windows\system32\drivers\bowser.sys File System Driver Yes manual running OK Normal No Yes
    BrFiltLo pilot Brother lower mass storage USB filter c:\windows\system32\drivers\brfiltlo.sys kernel driver no manual stopped OK Normal no no
    BrFiltUp driver of Brother Superior mass storage USB filter c:\windows\system32\drivers\brfiltup.sys kernel driver no manual stopped OK Normal no no
    BrUsbSer Brother MFC USB Serial WDM c:\windows\system32\drivers\brusbser.sys driver kernel Driver no manual stopped OK Normal no no
    drmkaud Microsoft Kernel DRM Audio decoder c:\windows\system32\drivers\drmkaud.sys kernel driver no manual stopped OK Normal no no
    LDDM Graphics Subsystem c:\windows\system32\drivers\dxgkrnl.sys Kernel Driver Yes manual running OK dxgkrnl ignore No Yes
    E1G60 card driver Intel (r) PRO/1000 NDIS 6 c:\windows\system32\drivers\e1g60i32.sys kernel driver no manual stopped OK Normal no no
    exFAT, exFAT driver File System c:\windows\system32\drivers\exfat.sys File System Driver no manual stopped OK Normal no no
    FastFAT file system driver c:\windows\system32\drivers\fastfat.sys FAT12/16/32 File System Driver Yes manual running OK Normal No Yes
    FDC controller driver to floppy c:\windows\system32\drivers\fdc.sys Kernel Driver Yes manual running OK Normal No Yes
    filetrace FileTrace c:\windows\system32\drivers\filetrace.sys File System Driver no manual stopped OK Normal no no
    flpydisk driver diskette c:\windows\system32\drivers\flpydisk.sys Kernel Driver Yes manual running OK Normal No Yes
    gagp30kx filter Generic AGPv3.0 Microsoft for platforms of processor K8 c:\windows\system32\drivers\gagp30kx.sys kernel driver no manual stopped OK Normal no no
    GDRV gdrv------? Yes manual running OK Normal No Yes \c:\windows\gdrv.sys kernel driver
    GEARAspiWDM filter driver ASPI GEAR c:\windows\system32\drivers\gearaspiwdm.sys Kernel Driver Yes manual running OK Normal No Yes
    HdAudAddService function driver UAA 1.1 Microsoft for the c:\windows\system32\drivers\hdaudio.sys kernel driver high definition Audio Service no manual stopped OK Normal no no
    HDAudBus pilot bus Microsoft UAA for High Definition Audio c:\windows\system32\drivers\hdaudbus.sys Kernel Driver Yes manual running OK Normal No Yes
    Hidusb class driver HID Microsoft c:\windows\system32\drivers\hidusb.sys Kernel Driver Yes manual running OK Ignore No Yes
    HTTP HTTP-c:\windows\system32\drivers\http.sys Kernel Driver Yes manual running OK Normal No Yes
    IntcAzAudAddService Service for Realtek HD Audio (WDM) c:\windows\system32\drivers\rtkvhda.sys Kernel Driver Yes manual running OK Normal No Yes
    Intelppm driver processor Intel c:\windows\system32\drivers\intelppm.sys Kernel Driver Yes manual running OK Normal No Yes
    ipnat c:\windows\system32\drivers\ipnat.sys kernel driver no manual IP network address translator stopped OK Normal no no
    Enumerator IRENUM of Bus IR c:\windows\system32\drivers\irenum.sys kernel driver no manual stopped OK Ignore no no
    iScsiPrt iScsiPort Driver c:\windows\system32\drivers\msiscsi.sys Kernel Driver Yes manual running OK Normal No Yes
    LHidFilt driver filter of Logitech SetPoint KMDF HID c:\windows\system32\drivers\lhidfilt.sys kernel driver no manual stopped OK Normal no no
    LMouFilt Logitech SetPoint KMDF Mouse Filter Driver c:\windows\system32\drivers\lmoufilt.sys kernel driver no manual stopped OK Normal no no
    Modem Modem-c:\windows\system32\drivers\modem.sys ignore kernel driver no manual stopped OK no no
    monitor c:\windows\system32\drivers\monitor.sys Microsoft Monitor Service class kernel driver Yes manual running OK Normal No Yes function driver
    me driver HID mouse c:\windows\system32\drivers\mouhid.sys Kernel Driver Yes manual running OK Ignore No Yes
    MpFilter Microsoft Malware Protection pilot c:\windows\system32\drivers\mpfilter.sys File System Driver no manual stopped OK Normal no no
    mpsdrv authorization of firewall Windows Driver c:\windows\system32\drivers\mpsdrv.sys Kernel Driver Yes manual running OK Normal No Yes
    WebDav Client Redirector Driver c:\windows\system32\drivers\mrxdav.sys mrxdav File System Driver Yes manual running OK Normal No Yes
    MRxSmb SMB MiniRedirector Wrapper and engine c:\windows\system32\drivers\mrxsmb.sys File System Driver Yes manual running OK Normal No Yes
    SMB 1.x MiniRedirector c:\windows\system32\drivers\mrxsmb10.sys mrxsmb10 File System Driver Yes manual running OK Normal No Yes
    Mrxsmb20 SMB 2.0 MiniRedirector c:\windows\system32\drivers\mrxsmb20.sys File System Driver Yes manual running OK Normal No Yes
    MSKSSRV c:\windows\system32\drivers\mskssrv.sys driver kernel Microsoft Streaming Service Proxy no manual stopped OK Normal no no
    MSPCLOCK Proxy clock Streaming Microsoft c:\windows\system32\drivers\mspclock.sys kernel driver no manual stopped OK Normal no no
    MSPQM Proxy of quality of Streaming Microsoft c:\windows\system32\drivers\mspqm.sys kernel driver no manual stopped OK Normal no no
    MSRPC MsRPC c:\windows\system32\drivers\msrpc.sys kernel driver no manual stopped OK Normal no no
    mssmbios c:\windows\system32\drivers\mssmbios.sys Microsoft System Management BIOS Driver Kernel Driver Yes manual running OK Normal No Yes
    MSTEE Microsoft Streaming Tee/receiver-to-Sink Converter c:\windows\system32\drivers\mstee.sys kernel driver no manual stopped OK Normal no no
    NativeWifiP filter NativeWiFi c:\windows\system32\drivers\nwifi.sys Kernel Driver Yes manual running OK Normal No Yes
    ndistapi NDIS to remote access TAPI Driver c:\windows\system32\drivers\ndistapi.sys Kernel Driver Yes manual running OK Normal No Yes
    o ndisuio NDIS user mode i/o Protocol c:\windows\system32\drivers\ndisuio.sys Kernel Driver Yes manual running OK Normal No Yes
    NDISWAN driver Remote Access NDIS WAN c:\windows\system32\drivers\ndiswan.sys Kernel Driver Yes manual running OK Normal No Yes
    NDProxy Proxy NDIS c:\windows\system32\drivers\ndproxy.sys Kernel Driver Yes manual running OK Normal No Yes
    NTFS Ntfs c:\windows\system32\drivers\ntfs.sys File System Driver Yes manual running OK Normal No Yes
    nv_agp NVIDIA nForce filter to Bus AGP c:\windows\system32\drivers\nv_agp.sys kernel driver no manual stopped OK Normal no no
    ohci1394 controller host Texas Instruments OHCI Compliant IEEE 1394 c:\windows\system32\drivers\ohci1394.sys Kernel Driver Yes manual running OK Normal No Yes
    parport parallel port driver c:\windows\system32\drivers\parport.sys Kernel Driver Yes manual running OK Normal No Yes
    pptpminiport Miniport WAN (PPTP) c:\windows\system32\drivers\raspptp.sys Kernel Driver Yes manual running OK Normal No Yes
    qwavedrv QWAVE driver c:\windows\system32\drivers\qwavedrv.sys kernel driver no manual stopped OK Normal no no
    RASL2TP Miniport network EXTENDED (L2TP) c:\windows\system32\drivers\rasl2tp.sys Kernel Driver Yes manual running OK Normal No Yes
    RASPPPoE remote access PPPOE Driver c:\windows\system32\drivers\raspppoe.sys Kernel Driver Yes manual running OK Normal No Yes
    rassstp Miniport (SSTP) WAN c:\windows\system32\drivers\rassstp.sys Kernel Driver Yes manual running OK Normal No Yes
    RdpWD pilot Winstation RDP c:\windows\system32\drivers\rdpwd.sys kernel driver no manual stopped OK Ignore no no
    RTL8169 Driver for Realtek 8169 NT c:\windows\system32\drivers\rtlh86.sys Kernel Driver Yes manual running OK Normal No Yes
    Serenum filter driver Serenum c:\windows\system32\drivers\serenum.sys Kernel Driver Yes manual running OK Normal No Yes
    sffp_mmc protocol driver of storage SFF for MMC c:\windows\system32\drivers\sffp_mmc.sys kernel driver no manual stopped OK Normal no no
    sffp_sd SFF Storage Protocol Driver for SDBus c:\windows\system32\drivers\sffp_sd.sys kernel driver no manual stopped OK Normal no no
    SiSAGP filter to Bus AGP SIS c:\windows\system32\drivers\sisagp.sys kernel driver no manual stopped OK Normal no no
    SRV srv-c:\windows\system32\drivers\srv.sys File System Driver Yes manual running OK Normal No Yes
    SRV2 srv2 c:\windows\system32\drivers\srv2.sys File System Driver Yes manual running OK Normal No Yes
    srvnet srvnet c:\windows\system32\drivers\srvnet.sys File System Driver Yes manual running OK Normal No Yes
    SWENUM pilot bus software c:\windows\system32\drivers\swenum.sys Kernel Driver Yes manual running OK Normal No Yes
    Tcpip6 driver Protocol IPv6 Microsoft c:\windows\system32\drivers\tcpip.sys kernel driver no manual stopped OK Normal no no
    Tdpipe TDPIPE-c:\windows\system32\drivers\tdpipe.sys kernel driver no manual stopped OK Normal no no
    Tdtcp TDTCP-c:\windows\system32\drivers\tdtcp.sys kernel driver no manual stopped OK Normal no no
    tssecsrv driver filter Terminal Services Security c:\windows\system32\drivers\tssecsrv.sys kernel driver no manual stopped OK Ignore no no
    tunmp card driver Miniport Microsoft Tun c:\windows\system32\drivers\tunmp.sys Kernel Driver Yes manual running OK Normal No Yes
    tunnel adapter driver Miniport Microsoft IPv6 Tunnel c:\windows\system32\drivers\tunnel.sys Kernel Driver Yes manual running OK Normal No Yes
    TVicHW32 TVICHW32------? \C:\windows\system32\drivers\tvichw32.sys kernel driver no manual stopped OK Normal no no
    uagp35 Microsoft AGPv3.5 filter c:\windows\system32\drivers\uagp35.sys kernel driver no manual stopped OK Normal no no
    ulcdrhlp ULCDRHlp c:\windows\system32\drivers\ulcdrhlp.sys Kernel Driver Yes manual running OK Normal No Yes
    uliagpkx filter to Bus AGP Uli c:\windows\system32\drivers\uliagpkx.sys kernel driver no manual stopped OK Normal no no
    umbus driver enumerator UMBus c:\windows\system32\drivers\umbus.sys Kernel Driver Yes manual running OK Normal No Yes
    usbaapl Apple Mobile USB Driver c:\windows\system32\drivers\usbaapl.sys kernel driver no manual stopped OK Normal no no
    Usbccgp driver Generic Parent of Microsoft USB c:\windows\system32\drivers\usbccgp.sys Kernel Driver Yes manual running OK Normal No Yes
    Usbehci Microsoft USB 2.0 Enhanced Host Controller driver of Miniport c:\windows\system32\drivers\usbehci.sys Kernel Driver Yes manual running OK Normal No Yes current
    Usbhub active USB2 Hub c:\windows\system32\drivers\usbhub.sys Kernel Driver Yes manual running OK Normal No Yes
    Usbprint class PRINTERS USB Microsoft c:\windows\system32\drivers\usbprint.sys Kernel Driver Yes manual running OK Normal No Yes
    Usbscan scanner driver USB c:\windows\system32\drivers\usbscan.sys Kernel Driver Yes manual running OK Normal No Yes
    Usbstor c:\windows\system32\drivers\usbstor.sys kernel driver no manual USB mass storage driver stopped OK Normal no no
    Usbuhci Microsoft USB Universal Host Controller Miniport Driver c:\windows\system32\drivers\usbuhci.sys Kernel Driver Yes manual running OK Normal No Yes
    VGA vga-c:\windows\system32\drivers\vgapnp.sys ignore kernel driver no manual stopped OK no no
    Viaagp VIA the filter Bus AGP c:\windows\system32\drivers\viaagp.sys kernel driver no manual stopped OK Normal no no
    WANARP Remote Access IP ARP Driver c:\windows\system32\drivers\wanarp.sys kernel driver no manual stopped OK Normal no no
    wpdusb WpdUsb-c:\windows\system32\drivers\wpdusb.sys kernel driver no manual stopped OK Normal no no
    WUDFRd WUDFRd c:\windows\system32\drivers\wudfrd.sys kernel driver no manual stopped OK Normal no no
    AFD function driver related to c:\windows\system32\drivers\afd.sys Winsock Kernel Driver Yes system running OK Normal No Yes
    bleep bleep c:\windows\system32\drivers\beep.sys Kernel Driver Yes system running OK Normal No Yes
    cdrom driver CD-ROM c:\windows\system32\drivers\cdrom.sys Kernel Driver Yes system running OK Normal No Yes
    the DFSC pilot Client DFS Namespace c:\windows\system32\drivers\dfsc.sys File System Driver Yes system running OK Normal No Yes
    Kbdclass class driver keyboard c:\windows\system32\drivers\kbdclass.sys Kernel Driver Yes system running OK Normal No Yes
    Kbdhid pilot HID keyboard c:\windows\system32\drivers\kbdhid.sys Kernel Driver Yes system running OK Ignore No Yes
    mouse class driver Mouclass c:\windows\system32\drivers\mouclass.sys Kernel Driver Yes system running OK Normal No Yes
    MSFS Msfs c:\windows\system32\drivers\msfs.sys File System Driver Yes system running OK Normal No Yes
    MSFWHLPR MSFWHLPR c:\windows\system32\drivers\msfwhlpr.sys Kernel Driver Yes system running OK Normal No Yes
    NetBIOS NetBIOS Interface c:\windows\system32\drivers\netbios.sys File System Driver Yes system running OK Normal No Yes
    NetBT NETBT c:\windows\system32\drivers\netbt.sys Kernel Driver Yes system running OK Normal No Yes
    NPH NPH c:\windows\system32\drivers\npfs.sys File System Driver Yes system running OK Normal No Yes
    nsiproxy NSI proxy service c:\windows\system32\drivers\nsiproxy.sys Kernel Driver Yes system running OK Normal No Yes
    NULL Null c:\windows\system32\drivers\null.sys Kernel Driver Yes system running OK Normal No Yes
    Psched planner of packets QoS c:\windows\system32\drivers\pacer.sys Kernel Driver Yes system running OK Normal No Yes
    Rdbss Remote Access Auto Connection Driver c:\windows\system32\drivers\rasacd.sys Kernel Driver Yes system running OK Normal No Yes
    Rdbss redirected Buffering Sub Sysytem c:\windows\system32\drivers\rdbss.sys File System Driver Yes system running OK Normal No Yes
    RDPCDD RDPCDD c:\windows\system32\drivers\rdpcdd.sys Kernel Driver Yes system running OK Ignore No Yes
    rdpencdd RDP Encoder Mirror Driver c:\windows\system32\drivers\rdpencdd.sys Kernel Driver Yes system running OK Ignore No Yes
    serial serial port driver c:\windows\system32\drivers\serial.sys Kernel Driver Yes system running OK Ignore No Yes
    SMB oriented Message IP and TCP/IPv6 protocol (SMB session) c:\windows\system32\drivers\smb.sys Kernel Driver Yes system running OK Normal No Yes
    TDX NetIO Legacy TDI Driver Support c:\windows\system32\drivers\tdx.sys Kernel Driver Yes system running OK Normal No Yes
    TermDD device driver Terminal c:\windows\system32\drivers\termdd.sys Kernel Driver Yes system running OK Normal No Yes
    VgaSave VgaSave c:\windows\system32\drivers\vga.sys Kernel Driver Yes system running OK Ignore No Yes
    Wanarpv6 Remote Access IPv6 ARP Driver c:\windows\system32\drivers\wanarp.sys Kernel Driver Yes system running OK Normal No Yes

    Dale,
    Most wireless mice have problems with gel and erratic movement.  People have done everything to keep only new, fresh batteries in them all the time, tying tape receivers upside down under a desk because of interference from other wireless devices in the area, setting up a secure connection and updated the software of the manufacturer.  If patches are different for each person, but do not seem to be associated with something specific to Vista.  If you do a search for 'mouse wireless upward and erratic freezing', you will see every post that I talk to all the different answers that worked for some people.  Another thing I've seen is to change the channel.  Here is the link to Logitech mouse forum: http://forums.logitech.com/logitech/board?board.id=hardware_mice&nobounce

    Interference is inherent to any wireless device and more us consumers fill our homes with wireless devices, more we excaberate problems by ourselves.  I hope this information was useful for you.  Let us know if you need more assistance.

    Thank you

    Gloria
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I have a HP tc4400 with windows 7 but not even pressure sensitivity with what I think is the right driver, why are there no pressure sensitivity?

    I am currently using windows 7 Ultimate edition with a HP compaq tc4400. After a clean install, I am able to use my stylus but there is no pressure sensitivity which causes problems with photoshop and paint tool sai and other programs that use the pressure sensitivity. I am currently using windows vista driver called "Minidriver Wacom digitizer" I saw that others of the same type of computer works just fine and it is normally pressure sensitivity... I'm curious to know if I installed the wrong driver, or if there is something wrong with the installation.

    Hello

    I suggest you to please contact the HP support for assistance.

    Link to download the drivers: Drivers HP for Tablet PC tc4400

    Contact HP Support: HP Support

    I hope this helps!

  • I can't install four device in Windows 7 Home Basic

    I can't install four device in Windows 7 Home Basic

    1 ATI Unified Driver Avstreams

    2 CCIP Intel compatible PCMCIA controller

    3 Intel 82567LF Gigabit Network Connection

    4 Intel (R) Express Chipset Family 946GC

    Please help me solve this problem. Given that I can't install this device my PC got Random restart when I game or video game.

    My spec:
    -Windows 7 Home Basic 32 bit SP1

    -Proc Intel Core i3 2120 @ 3.30 GHz Sandy Bridge 32nm technology
    -RAM 4, 00GB Dual - Channel DDR3 @ 665 MHz (9-9-9-24)

    -Card mother Gigabyte Technology Co., Ltd. H61M-DS2
    -Graphic VA1931 series (1366x768@60Hz), 1024 MB AMD ATI Radeon HD 5670 (MSI)

    -Storage: 298 GB Seagate ST3320613AS ATA (SATA) Device

    -Audio: Realtek High Definition Audio

    Best regards.
    Thank you

    EB

    None of the 5 DMP in the folder "auditor" seemed to have check enabled.  They continue to point to the same operating system file (gdrv.sys) and I think it is time to start thinking about a facility for repair because of this problem and the fact that SFC found but that it could not solve the problems.  If the repair install does not resolve the problem, you may need to perform a clean installation

Maybe you are looking for

  • update the BIOS with Win 7

    Hello everyone, it has been a while. I had some problems with my SR5505F, I run Memtest + 86 on a barrette of RAM (2x2gb) both, but first wanted to check/upgrade the BIOS in case that was the problem, problem is, I upgraded the OS from Vista to Windo

  • HP Officejet 4630: Problem creating account e-print

    Hello. I just bought the printer above a few days ago.  We realized the implementation on the printer itself without problems, but when you try to create the account e-print, either with the web link or CD-ROM, we were informed that there was a probl

  • Warning volume on disk Useage

    Last weekend, I ran disk Test my: NAS314 TB 4 x 2 ReadyNAS Pro 2 TB x 2 ReadyNAS Ultra 1 TB x 2 all OS running 6.6.0 Since then I had aletrs at the start of the Pro: Less than 30% of the capacity of the media volume is free. NETGEAR recommends that y

  • How to install the recovery image on Satellite Pro A300?

    I have a Satellite Pro A300 and I need factory reset. I learned from my teacher of computers there is a unknown virus on this subject. Apparently, it has been downloaded when I downloaded Malware bites. I got the laptop free of Set - BC because I mus

  • HP envy: help

    Hi when I cut on my computer im getting a message saying to enter the administrator password I get it and its narration. Deactivation of the system 76719793! Please someone HELP me