Forum Discussion

2EyeGuy's avatar
2EyeGuy
Adventurer
11 years ago

Direct mode doesn't switch off DK2

In Direct Mode, when I run a DK2 application (except Dolphin VR), and exit that application, the DK2 always stays switched on, with the blue light on and the image locked on the screen. Pressing the DK2 power button to turn off the DK2 and then turning it back on again, makes it go straight back to the blue light being on and the image locked to the screen. The only way to fix it is to change to extended mode, then change back to direct mode, OR run Dolphin VR. The problem exists in the desk demo, Oculus World Demo, and Oculus Tiny Room, Dolphin VR before I fixed it, and presumably other demos.

As you can imagine, that is a huge problem as it will quickly burn that image into the screen.

This issue has been present at least since 0.4.2, and probably earlier, but I didn't really use Direct Mode before then because I couldn't get it to work in my OpenGL code.

In the Github version of Dolphin VR, I fixed that issue with this code:
void ShutdownVR()
{
#ifdef HAVE_OCULUSSDK
if (hmd)
{
// on my computer, on runtime 0.4.2, the Rift won't switch itself off without this:
if (!(hmd->HmdCaps & ovrHmdCap_ExtendDesktop))
ovrHmd_SetEnabledCaps(hmd, ovrHmdCap_DisplayOff);
ovrHmd_Destroy(hmd);
g_has_rift = false;
g_has_hmd = false;
NOTICE_LOG(VR, "Oculus Rift shut down.");
}
ovr_Shutdown();
#endif
}

4 Replies

  • Anonymous's avatar
    Anonymous
    We haven't seen this in our released packages/demos in Direct mode, and I don't think have had any other reports of this issue (but I'm checking). I have a few questions:

    Do you just see it on one machine?
    Can you give me the specs of that machine, or machines?
    Have you upgraded to the latest DK2 firmware (2.12)?
    If you have more than one DK2, does it occur on the other DK2s as well?


    "2EyeGuy" wrote:
    In Direct Mode, when I run a DK2 application (except Dolphin VR), and exit that application, the DK2 always stays switched on, with the blue light on and the image locked on the screen. Pressing the DK2 power button to turn off the DK2 and then turning it back on again, makes it go straight back to the blue light being on and the image locked to the screen. The only way to fix it is to change to extended mode, then change back to direct mode, OR run Dolphin VR. The problem exists in the desk demo, Oculus World Demo, and Oculus Tiny Room, Dolphin VR before I fixed it, and presumably other demos.

    As you can imagine, that is a huge problem as it will quickly burn that image into the screen.

    This issue has been present at least since 0.4.2, and probably earlier, but I didn't really use Direct Mode before then because I couldn't get it to work in my OpenGL code.

    In the Github version of Dolphin VR, I fixed that issue with this code:
    void ShutdownVR()
    {
    #ifdef HAVE_OCULUSSDK
    if (hmd)
    {
    // on my computer, on runtime 0.4.2, the Rift won't switch itself off without this:
    if (!(hmd->HmdCaps & ovrHmdCap_ExtendDesktop))
    ovrHmd_SetEnabledCaps(hmd, ovrHmdCap_DisplayOff);
    ovrHmd_Destroy(hmd);
    g_has_rift = false;
    g_has_hmd = false;
    NOTICE_LOG(VR, "Oculus Rift shut down.");
    }
    ovr_Shutdown();
    #endif
    }
  • I just tested Unity Tuscany 0.4.4 and replicated the one frame every few seconds bug. And Unity Tuscany 0.4.4 also has this issue of not switching off the DK2 on my computer when I exit.

    I have also never heard any reports of other people having this issue. But I have that issue consistently 100% of the time, in all your released packages/demos and also in my own code, except when I use the code I posted to explicitly turn the Rift off before shutting down.

    The workaround for this bug is pretty simple though.

    I've only got one computer I can really test it on, and one DK2. I have a DK1 that I can test, but I'm not sure how the DK1 is supposed to behave in Direct Mode though.

    My computer is a Toshiba Satellite 3D laptop with a 1366x768 120Hz screen.

    Here's my DxDiag which should have most of the information you need:
    ------------------
    System Information
    ------------------
    Time of this report: 11/16/2014, 16:49:31
    Machine name: CARL3D
    Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.140706-1506)
    Language: English (Regional Setting: English)
    System Manufacturer: TOSHIBA
    System Model: Satellite P750
    BIOS: BIOS Date: 12/15/11 11:42:39 Ver: AMI APTIO 2.40
    Processor: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (8 CPUs), ~2.0GHz
    Memory: 8192MB RAM
    Available OS Memory: 8170MB RAM
    Page File: 3959MB used, 12378MB available
    Windows Dir: C:\windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 64bit Unicode

    ------------
    DxDiag Notes
    ------------
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Sound Tab 2: The file WsAudio_DeviceS(3).sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Quality Labs (WHQL). You may be able to get a WHQL logo'd driver from the hardware manufacturer.
    Sound Tab 3: The file WsAudio_DeviceS(2).sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Quality Labs (WHQL). You may be able to get a WHQL logo'd driver from the hardware manufacturer.
    Sound Tab 4: The file WsAudio_DeviceS(5).sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Quality Labs (WHQL). You may be able to get a WHQL logo'd driver from the hardware manufacturer.
    Sound Tab 5: The file WsAudio_DeviceS(1).sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Quality Labs (WHQL). You may be able to get a WHQL logo'd driver from the hardware manufacturer.
    Sound Tab 6: The file WsAudio_DeviceS(4).sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Quality Labs (WHQL). You may be able to get a WHQL logo'd driver from the hardware manufacturer.
    Input Tab: No problems found.

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

    ---------------
    Display Devices
    ---------------
    Card name: NVIDIA GeForce GT 540M
    Manufacturer: NVIDIA
    Chip type: GeForce GT 540M
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN_10DE&DEV_0DF4&SUBSYS_FC351179&REV_A1
    Display Memory: 4049 MB
    Dedicated Memory: 977 MB
    Shared Memory: 3071 MB
    Current Mode: 1360 x 768 (32 bit) (60Hz)
    Monitor Name: Generic PnP Monitor
    Monitor Model: unknown
    Monitor Id: CMO1598
    Native Mode: 1366 x 768(p) (119.997Hz)
    Output Type: Internal
    Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 9.18.0013.3788 (English)
    Driver Version: 9.18.13.3788
    DDI Version: 11
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 5/20/2014 13:14:03, 17480432 bytes
    WHQL Logo'd: Yes
    WHQL Date Stamp:
    Device Identifier: {D7B71E3E-4EB4-11CF-057C-38DC1CC2C435}
    Vendor ID: 0x10DE
    Device ID: 0x0DF4
    SubSys ID: 0xFC351179
    Revision ID: 0x00A1
    Driver Strong Name: oem8.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section109:9.18.13.3788:pci\ven_10de&dev_0df4&subsys_fc351179
    Rank Of Driver: 00E00001
    Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
    Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Supported
    DXVA-HD: Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    -------------
    Sound Devices
    -------------
    Description: Speakers (Realtek High Definition Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0269&SUBSYS_1179FC36&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: RTKVHD64.sys
    Driver Version: 6.00.0001.6305 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 2/10/2011 12:40:04, 2738536 bytes
    Other Files:
    Driver Provider: Realtek Semiconductor Corp.
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Speakers (WsAudio_DeviceS(3))
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: WsAudio_DeviceS(3)
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: WsAudio_DeviceS(3).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: No
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Other Files:
    Driver Provider: WsAudio_DeviceS(3)
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Speakers (WsAudio_DeviceS(2))
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: WsAudio_DeviceS(2)
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: WsAudio_DeviceS(2).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: No
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Other Files:
    Driver Provider: WsAudio_DeviceS(2)
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Speakers (WsAudio_DeviceS(5))
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: WsAudio_DeviceS(5)
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: WsAudio_DeviceS(5).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: No
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Other Files:
    Driver Provider: WsAudio_DeviceS(5)
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Speakers (WsAudio_DeviceS(1))
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: WsAudio_DeviceS(1)
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: WsAudio_DeviceS(1).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: No
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Other Files:
    Driver Provider: WsAudio_DeviceS(1)
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Speakers (WsAudio_DeviceS(4))
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: WsAudio_DeviceS(4)
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: WsAudio_DeviceS(4).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: No
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Other Files:
    Driver Provider: WsAudio_DeviceS(4)
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    ---------------------
    Sound Capture Devices
    ---------------------
    Description: Microphone (Realtek High Definition Audio)
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: RTKVHD64.sys
    Driver Version: 6.00.0001.6305 (English)
    Driver Attributes: Final Retail
    Date and Size: 2/10/2011 12:40:04, 2738536 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Line (WsAudio_DeviceS(5))
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: WsAudio_DeviceS(5).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Line (WsAudio_DeviceS(4))
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: WsAudio_DeviceS(4).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Line (WsAudio_DeviceS(1))
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: WsAudio_DeviceS(1).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Line (WsAudio_DeviceS(2))
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: WsAudio_DeviceS(2).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Line (WsAudio_DeviceS(3))
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: WsAudio_DeviceS(3).sys
    Driver Version: 1.00.0000.0001 (English)
    Driver Attributes: Final Retail
    Date and Size: 12/24/2010 15:27:44, 29288 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    -------------------
    DirectInput Devices
    -------------------
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: ENE CIR HID Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1524, 0x0100
    FF Driver: n/a

    Device Name: ENE CIR HID Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1524, 0x0100
    FF Driver: n/a

    Device Name: ENE CIR HID Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1524, 0x0100
    FF Driver: n/a

    Device Name: ENE CIR HID Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1524, 0x0100
    FF Driver: n/a

    Device Name: Microsoft eHome Infrared Transceiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x006D
    FF Driver: n/a

    Device Name: Microsoft eHome Infrared Transceiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x006D
    FF Driver: n/a

    Device Name: Microsoft eHome Infrared Transceiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x006D
    FF Driver: n/a

    Device Name: Microsoft eHome Infrared Transceiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x006D
    FF Driver: n/a

    Device Name: Bluetooth HID Port
    Attached: 1
    Controller ID: 0x1
    Vendor/Product ID: 0x057E, 0x0306
    FF Driver: n/a

    Device Name: Bluetooth HID Port
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x057E, 0x0306
    FF Driver: n/a

    Device Name: Bluetooth HID Port
    Attached: 1
    Controller ID: 0x2
    Vendor/Product ID: 0x057E, 0x0306
    FF Driver: n/a

    Device Name: Bluetooth HID Port
    Attached: 1
    Controller ID: 0x4
    Vendor/Product ID: 0x057E, 0x0306
    FF Driver: n/a

    Device Name: Bluetooth HID Port
    Attached: 1
    Controller ID: 0x5
    Vendor/Product ID: 0x057E, 0x0306
    FF Driver: n/a

    Device Name: vmultia HID
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x001F, 0xBA1C
    FF Driver: n/a

    Device Name: vmultia HID
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x001F, 0xBA1C
    FF Driver: n/a

    Device Name: vmultia HID
    Attached: 1
    Controller ID: 0x3
    Vendor/Product ID: 0x001F, 0xBA1C
    FF Driver: n/a

    Device Name: vmultia HID
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x001F, 0xBA1C
    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, 11/27/2013 12:11:37, 343040 bytes
    | Driver: usbd.sys, 11/27/2013 12:11:03, 7808 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, 11/27/2013 12:11:37, 343040 bytes
    | |
    | +-+ Generic USB Hub
    | | | Vendor/Product ID: 0x05E3, 0x0608
    | | | Location: Port_#0001.Hub_#0004
    | | | Matching Device ID: usb\class_09
    | | | Service: usbhub
    | | | Driver: usbhub.sys, 11/27/2013 12:11:37, 343040 bytes
    | | |
    | | +-+ USB Input Device
    | | | | Vendor/Product ID: 0x046D, 0xC50E
    | | | | Location: Port_#0003.Hub_#0005
    | | | | Matching Device ID: generic_hid_device
    | | | | Service: HidUsb
    | | | | Driver: hidusb.sys, 11/21/2010 13:53:47, 30208 bytes
    | | | | Driver: hidclass.sys, 7/3/2013 14:35:05, 76800 bytes
    | | | | Driver: hidparse.sys, 7/3/2013 14:35:04, 32896 bytes
    | | | |
    | | | +-+ HID-compliant mouse
    | | | | | Vendor/Product ID: 0x046D, 0xC50E
    | | | | | Matching Device ID: hid_device_system_mouse
    | | | | | Service: mouhid
    | | | | | Driver: mouhid.sys, 7/14/2009 10:30:20, 31232 bytes
    | | | | | Driver: mouclass.sys, 7/14/2009 12:18:27, 49216 bytes
    | | |
    | +-+ Generic USB Hub
    | | | Vendor/Product ID: 0x2833, 0x2021
    | | | Location: Port_#0003.Hub_#0004
    | | | Matching Device ID: usb\class_09
    | | | Service: usbhub
    | | | Driver: usbhub.sys, 11/27/2013 12:11:37, 343040 bytes
    | | |
    | | +-+ USB Input Device
    | | | | Vendor/Product ID: 0x2833, 0x0021
    | | | | Location: Port_#0001.Hub_#0006
    | | | | Matching Device ID: generic_hid_device
    | | | | Service: HidUsb
    | | | | Driver: hidusb.sys, 11/21/2010 13:53:47, 30208 bytes
    | | | | Driver: hidclass.sys, 7/3/2013 14:35:05, 76800 bytes
    | | | | Driver: hidparse.sys, 7/3/2013 14:35:04, 32896 bytes
    | | | |
    | | | +-+ HID-compliant device
    | | | | | Vendor/Product ID: 0x2833, 0x0021
    | | | | | Matching Device ID: hid_device

    ----------------
    Gameport Devices
    ----------------

    ------------
    PS/2 Devices
    ------------
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    | Driver: i8042prt.sys, 7/14/2009 09:49:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + HID Keyboard Device
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/21/2010 13:53:47, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + Microsoft eHome Remote Control Keyboard keys
    | Matching Device ID: hid\irdevicev2&col05
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/21/2010 13:53:47, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + Microsoft eHome MCIR Keyboard
    | Matching Device ID: hid\irdevicev2&col06
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/21/2010 13:53:47, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + Microsoft eHome MCIR 109 Keyboard
    | Matching Device ID: hid\irdevicev2&col07
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/21/2010 13:53:47, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + HID Keyboard Device
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/21/2010 13:53:47, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/14/2009 09:49:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 12:18:04, 50768 bytes
    |
    + Synaptics PS/2 Port TouchPad
    | Matching Device ID: *tos0300
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-compliant mouse
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 10:30:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 12:18:27, 49216 bytes
    |
    + HID-compliant mouse
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 10:30:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 12:18:27, 49216 bytes
    |
    + HID-compliant mouse
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 10:30:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 12:18:27, 49216 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 11/21/2010 13:53:47, 63360 bytes
    | Driver: sermouse.sys, 7/14/2009 10:30:20, 26624 bytes
    | Driver: mouclass.sys, 7/14/2009 12:18:27, 49216 bytes

    ------------------------
    Disk & DVD/CD-ROM Drives
    ------------------------
    Drive: C:
    Free Space: 3.5 GB
    Total Space: 702.3 GB
    File System: NTFS
    Model: TOSHIBA MK7575GSX (TurboPC)

    Drive: Q:
    Model: n/a

    Drive: T:
    Free Space: 2613.7 GB
    Total Space: 3815.4 GB
    File System: NTFS
    Model: Seagate Backup+ Desk USB Device

    Drive: D:
    Model: HL-DT-ST BD-RE BT11F
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 147456 bytes

    Drive: E:
    Model: MagicISO Virtual DVD-ROM0000
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 147456 bytes

    --------------
    System Devices
    --------------
    Name: LPC Interface Controller
    Device ID: PCI\VEN_8086&DEV_1C49&SUBSYS_FC301179&REV_04\3&11583659&1&F8
    Driver: C:\windows\system32\DRIVERS\LPCFilter.sys, 1.00.0064.0005 (English), 3/23/2010 04:25:20, 46192 bytes
    Driver: C:\windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 12:18:27, 15424 bytes

    Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 2 - 1C12
    Device ID: PCI\VEN_8086&DEV_1C12&SUBSYS_FC301179&REV_B4\3&11583659&1&E1
    Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 184704 bytes

    Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_1C3A&SUBSYS_FC301179&REV_04\3&11583659&1&B0
    Driver: n/a

    Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 1 - 1C10
    Device ID: PCI\VEN_8086&DEV_1C10&SUBSYS_FC301179&REV_B4\3&11583659&1&E0
    Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 184704 bytes

    Name: Atheros AR9002WB-1NG Wireless Network Adapter
    Device ID: PCI\VEN_168C&DEV_002B&SUBSYS_661311AD&REV_01\4&2F3C7C28&0&00E1
    Driver: n/a

    Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C2D
    Device ID: PCI\VEN_8086&DEV_1C2D&SUBSYS_FC301179&REV_04\3&11583659&1&D0
    Driver: C:\windows\system32\drivers\usbehci.sys, 6.01.7601.18328 (English), 11/27/2013 12:11:11, 53248 bytes
    Driver: C:\windows\system32\drivers\usbport.sys, 6.01.7601.18328 (English), 11/27/2013 12:11:11, 325120 bytes
    Driver: C:\windows\system32\drivers\usbhub.sys, 6.01.7601.18328 (English), 11/27/2013 12:11:37, 343040 bytes

    Name: Intel(R) Mobile Express Chipset SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_1C03&SUBSYS_FC301179&REV_04\3&11583659&1&FA
    Driver: C:\windows\system32\DRIVERS\iaStor.sys, 10.01.0002.1004 (English), 1/13/2011 11:21:44, 439320 bytes

    Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_FC301179&REV_06\4&1FA51BC8&0&00E0
    Driver: n/a

    Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C26
    Device ID: PCI\VEN_8086&DEV_1C26&SUBSYS_FC301179&REV_04\3&11583659&1&E8
    Driver: C:\windows\system32\drivers\usbehci.sys, 6.01.7601.18328 (English), 11/27/2013 12:11:11, 53248 bytes
    Driver: C:\windows\system32\drivers\usbport.sys, 6.01.7601.18328 (English), 11/27/2013 12:11:11, 325120 bytes
    Driver: C:\windows\system32\drivers\usbhub.sys, 6.01.7601.18328 (English), 11/27/2013 12:11:37, 343040 bytes

    Name: 2nd generation Intel® Core™ processor family DRAM Controller - 0104
    Device ID: PCI\VEN_8086&DEV_0104&SUBSYS_FC301179&REV_09\3&11583659&1&00
    Driver: n/a

    Name: NVIDIA GeForce GT 540M
    Device ID: PCI\VEN_10DE&DEV_0DF4&SUBSYS_FC351179&REV_A1\4&332D2A89&0&0008
    Driver: C:\Program Files\NVIDIA Corporation\Drs\dbInstaller.exe, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 440152 bytes
    Driver: C:\Program Files\NVIDIA Corporation\Drs\nvdrsdb.bin, 5/20/2014 13:14:03, 1183672 bytes
    Driver: C:\windows\System32\DriverStore\FileRepository\nvtdi.inf_amd64_neutral_e003aaaba0cbb667\NvCplSetupInt.exe, 1.00.0001.0000 (English), 5/20/2014 13:14:03, 82894768 bytes
    Driver: C:\Program Files\NVIDIA Corporation\license.txt, 5/20/2014 13:14:03, 21898 bytes
    Driver: C:\Program Files\NVIDIA Corporation\NVSMI\MCU.exe, 1.01.5204.20580 (English), 5/20/2014 13:14:03, 843720 bytes
    Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvdebugdump.exe, 6.14.0013.3788 (English), 5/20/2014 13:14:03, 224032 bytes
    Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.1.pdf, 5/20/2014 13:14:03, 50585 bytes
    Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 329672 bytes
    Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 543520 bytes
    Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL.dll, 1.00.0000.0000 (English), 5/20/2014 13:14:03, 52056 bytes
    Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL64.dll, 1.00.0000.0000 (English), 5/20/2014 13:14:03, 61216 bytes
    Driver: C:\windows\system32\DRIVERS\nvlddmkm.sys, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 12688328 bytes
    Driver: C:\windows\system32\NvFBC64.dll, 6.14.0013.3788 (English), 5/20/2014 13:14:03, 892704 bytes
    Driver: C:\windows\system32\NvIFR64.dll, 6.14.0013.3788 (English), 5/20/2014 13:14:03, 895776 bytes
    Driver: C:\windows\system32\nvapi64.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 3109248 bytes
    Driver: C:\windows\system32\nvcompiler.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 25256224 bytes
    Driver: C:\windows\system32\nvcuda.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 11644928 bytes
    Driver: C:\windows\system32\nvcuvenc.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 2785568 bytes
    Driver: C:\windows\system32\nvcuvid.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 3141976 bytes
    Driver: C:\windows\system32\nvd3dumx.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 17480432 bytes
    Driver: C:\windows\system32\nvinfo.pb, 5/20/2014 13:14:03, 26069 bytes
    Driver: C:\windows\system32\nvoglv64.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 31387936 bytes
    Driver: C:\windows\system32\nvopencl.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 11599072 bytes
    Driver: C:\windows\system32\nvwgf2umx.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 18531568 bytes
    Driver: C:\windows\SysWow64\NvFBC.dll, 6.14.0013.3788 (English), 5/20/2014 13:14:03, 861128 bytes
    Driver: C:\windows\SysWow64\NvIFR.dll, 6.14.0013.3788 (English), 5/20/2014 13:14:03, 867784 bytes
    Driver: C:\windows\SysWow64\nvapi.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 2730208 bytes
    Driver: C:\windows\SysWow64\nvcompiler.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 17561544 bytes
    Driver: C:\windows\SysWow64\nvcuda.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 9735256 bytes
    Driver: C:\windows\SysWow64\nvcuvenc.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 2412376 bytes
    Driver: C:\windows\SysWow64\nvcuvid.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 2953672 bytes
    Driver: C:\windows\SysWow64\nvd3dum.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 14434704 bytes
    Driver: C:\windows\SysWow64\nvoglv32.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 24025376 bytes
    Driver: C:\windows\SysWow64\nvopencl.dll, 8.17.0013.3788 (English), 5/20/2014 13:14:03, 9697640 bytes
    Driver: C:\windows\SysWow64\nvwgf2um.dll, 9.18.0013.3788 (English), 5/20/2014 13:14:03, 16003912 bytes
    Driver: C:\windows\system32\nvdispco6433788.dll, 2.00.0040.0004 (English), 5/20/2014 13:14:03, 1889112 bytes
    Driver: C:\windows\system32\nvdispgenco6433788.dll, 2.00.0019.0002 (English), 5/20/2014 13:14:03, 1541576 bytes

    Name: Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller - 1C22
    Device ID: PCI\VEN_8086&DEV_1C22&SUBSYS_FC301179&REV_04\3&11583659&1&FB
    Driver: n/a

    Name: 2nd generation Intel® Core™ processor family PCI Express Controller - 0101
    Device ID: PCI\VEN_8086&DEV_0101&SUBSYS_FC301179&REV_09\3&11583659&1&08
    Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 184704 bytes

    Name: High Definition Audio Controller
    Device ID: PCI\VEN_10DE&DEV_0BEA&SUBSYS_FC351179&REV_A1\4&332D2A89&0&0108
    Driver: C:\windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 122368 bytes

    Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_1C20&SUBSYS_FC301179&REV_04\3&11583659&1&D8
    Driver: C:\windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 122368 bytes

    Name: Renesas Electronics USB 3.0 Host Controller
    Device ID: PCI\VEN_1033&DEV_0194&SUBSYS_FC301179&REV_04\4&22BA660E&0&00E5
    Driver: C:\windows\system32\DRIVERS\nusb3xhc.sys, 2.00.0034.0000 (English), 2/11/2011 08:22:34, 181760 bytes

    Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 6 - 1C1A
    Device ID: PCI\VEN_8086&DEV_1C1A&SUBSYS_FC301179&REV_B4\3&11583659&1&E5
    Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 184704 bytes

    Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 4 - 1C16
    Device ID: PCI\VEN_8086&DEV_1C16&SUBSYS_FC301179&REV_B4\3&11583659&1&E3
    Driver: C:\windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 13:53:47, 184704 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
    Zune AAC Decoder DMO,0x005fffff,1,1,ZuneAACDec.dll,11.05.7600.6740
    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.18221
    Microsoft Zune Mpeg4s Decoder DMO,0x00800001,1,1,ZUNEMP4SDECD.dll,12.08.2345.0000
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.02.0000.0000
    ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.02.0000.0000
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.02.0000.0000
    ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.02.0000.0000
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.18526
    LAV Splitter,0x00800004,1,1,LAVSplitter.ax,0.53.0002.0000
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Zune Enhanced Video Renderer,0x00200000,1,0,ZuneEvr.dll,4.08.2345.0000
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.18526
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.18526
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.17037
    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.18526
    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.18526
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    MPC FLV Splitter,0x00600000,1,1,FLVSplitter.ax,1.06.0002.4902
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.18526
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.18526
    Screen Capture filter,0x00200000,0,1,ZuneSrcWrp.dll,4.08.2345.0000
    PlayReady DMO Wrapper,0x00600002,1,1,PRDMOW~1.DLL,1.03.2297.0000
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.18526
    MS PR Source Filter,0x00200000,0,2,PRSource.dll,1.03.2297.0000
    Haali Media Splitter,0x00800001,0,1,splitter.x64.ax,1.11.0287.0023
    Haali Media Splitter (AR),0x00400000,1,1,splitter.x64.ax,1.11.0287.0023
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    Xvid MPEG-4 Video Decoder,0x00800002,1,1,xvid.ax,
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.18526
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.18526
    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.18526
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.18526
    Haali Video Renderer,0x00200000,1,0,dxr.x64.dll,
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    Haali Simple Media Splitter,0x00200000,0,1,splitter.x64.ax,1.11.0287.0023
    DirectVobSub,0x00200000,2,1,VSFilter.dll,1.06.0003.5322
    DirectVobSub (auto-loading version),0x00800002,2,1,VSFilter.dll,1.06.0003.5322
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.18611
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17715
    Overlay Mixer2,0x00200000,1,1,,
    Haali Matroska Muxer,0x00200000,1,0,splitter.x64.ax,1.11.0287.0023
    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
    SFVCaptureFilter,0x00200000,1,1,SmartFaceVCapt.dll,3.01.0009.0000
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.02.0000.0000
    LAV Splitter Source,0x00800004,0,1,LAVSplitter.ax,0.53.0002.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.18501
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.18501
    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
    MPC FLV Source,0x00600000,0,0,FLVSplitter.ax,1.06.0002.4902
    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.18526
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7601.17514
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.18526
    MPC CDXA Reader,0x00600000,0,1,cdxareader.ax,1.06.0002.4902
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.18526
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.02.0000.0000
    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
    Microsoft Zune H.264 Video Decoder,0x005fffff,1,1,ZuneH264Dec.dll,11.05.7600.6740
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.18526
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.18526
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.18526
    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,
    LAV Audio Decoder,0x00800003,1,1,LAVAudio.ax,0.53.0002.0000
    LAV Video Decoder,0x00800003,1,1,LAVVideo.ax,0.53.0002.0000
    Haali Video Sink,0x00200000,1,0,splitter.x64.ax,1.11.0287.0023
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.18526
    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.18526

    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.02.0000.0000
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.18526

    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.18526
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.18526
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.18526
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.18526
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.18526
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.18526
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.18526

    Audio Capture Sources:
    Microphone (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Line (WsAudio_DeviceS(1)),0x00200000,0,0,qcap.dll,6.06.7601.17514
    Line (WsAudio_DeviceS(2)),0x00200000,0,0,qcap.dll,6.06.7601.17514
    Line (WsAudio_DeviceS(3)),0x00200000,0,0,qcap.dll,6.06.7601.17514
    Line (WsAudio_DeviceS(4)),0x00200000,0,0,qcap.dll,6.06.7601.17514
    Line (WsAudio_DeviceS(5)),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.18526
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.18526

    WDM Streaming Capture Devices:
    Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(1),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(2),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(3),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(4),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(5),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    USB 2.0 Camera,0x00200000,1,2,ksproxy.ax,6.01.7601.17514
    TOSHIBA Analog Capture (Dev1 Path2),0x00200000,2,3,ksproxy.ax,6.01.7601.17514

    WDM Streaming Rendering Devices:
    Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(1),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(2),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(3),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(4),0x00200000,2,2,ksproxy.ax,6.01.7601.17514
    WsAudio_DeviceS(5),0x00200000,2,2,ksproxy.ax,6.01.7601.17514

    BDA Source Filters:
    TOSHIBA Digital TV Tuner (Dev1 Path0) ,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:
    USB 2.0 Camera,0x00200000,1,2,ksproxy.ax,6.01.7601.17514
    TOSHIBA Analog Capture (Dev1 Path2),0x00200000,2,3,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

    WDM Streaming TV Tuner Devices:
    TOSHIBA Analog TV Tuner (Dev1 Path2),0x00200000,0,2,,6.01.7601.17514

    WDM Streaming Crossbar Devices:
    TOSHIBA Analog Xbar (Dev1 Path2),0x00200000,2,2,,6.01.7601.17514

    WDM Streaming TV Audio Devices:
    TOSHIBA Analog TV Audio (Dev1 Path2),0x00200000,1,1,,6.01.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

    Device Control Filters:
    TOSHIBA Control Filter (Dev1) ,0x00200000,1,0,ksproxy.ax,6.01.7601.17514

    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    Audio Renderers:
    Speakers (Realtek High Definiti,0x00200000,1,0,quartz.dll,6.06.7601.18526
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.18526
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (WsAudio_DeviceS(1)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (WsAudio_DeviceS(2)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (WsAudio_DeviceS(3)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (WsAudio_DeviceS(4)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (WsAudio_DeviceS(5)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    Speakers (WsAudio_DeviceS(1)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    Speakers (WsAudio_DeviceS(2)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    Speakers (WsAudio_DeviceS(3)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    Speakers (WsAudio_DeviceS(4)),0x00200000,1,0,quartz.dll,6.06.7601.18526
    Speakers (WsAudio_DeviceS(5)),0x00200000,1,0,quartz.dll,6.06.7601.18526

    BDA Receiver Components:
    TOSHIBA Digital TV Capture (Dev1 Path0),0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    ---------------
    EVR Power Information
    ---------------
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
    Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
    Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
    PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0
  • I loaded up Oculus Tiny Room in visual studio, and stepped through the code for destroying the HMD and shutting down the SDK. I didn't see any problems, but I also didn't see any code for actually telling the Rift to switch off. If I knew what line of code is supposed to turn off the Rift, then I could investigate why it isn't working.
  • I just noticed my workaround is no longer working. It worked in 0.4.3.