[XP][VX][VXA] Prevent Window Deactivation

Started by ForeverZer0, July 11, 2014, 02:11:15 pm

Previous topic - Next topic

ForeverZer0

July 11, 2014, 02:11:15 pm Last Edit: July 12, 2014, 12:42:22 pm by ForeverZer0
Prevent Window Deactivation
Authors: ForeverZer0
Version: 1.1
Type: Game Utility
Key Term: Game Utility



Introduction

Normally, when the RGSS Player window is no longer the foreground window, the game becomes "paused", and only the music continues while the game is suspended. This small library will prevent that action, and the game will not be suspended.


Features


  • Compatible with ALL RPG Maker version

  • Very small (only 10.8 kB)

  • Very efficient, does not constantly check every millisecond, simply filters Windows message events being processed on the window

  • Two lines of actual Ruby code




Screenshots

None.


Demo

None.


Script

Download NoDeactivate.dll and place in your game folder.

The following two lines of code will need added to main:
Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call

Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call

RMXP: ShowHide
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  After defining each class, actual processing begins here.
#==============================================================================

begin
 Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call
 # Prepare for transition
 Graphics.freeze
 # Make scene object (title screen)
 $scene = Scene_Title.new
 # Call main method as long as $scene is effective
 while $scene != nil
   $scene.main
 end
 # Fade out
 Graphics.transition(20)
rescue Errno::ENOENT
 # Supplement Errno::ENOENT exception
 # If unable to open file, display message and end
 filename = $!.message.sub("No such file or directory - ", "")
 print("Unable to find file #{filename}.")
ensure
 Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call
end

RMVX: ShowHide
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  After defining each class, actual processing begins here.
#==============================================================================

begin
 Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call
 Graphics.freeze
 $scene = Scene_Title.new
 $scene.main while $scene != nil
 Graphics.transition(30)
rescue Errno::ENOENT
 filename = $!.message.sub("No such file or directory - ", "")
 print("Unable to find file #{filename}.")
ensure
 Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call
end

RMVX Ace: ShowHide
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  This processing is executed after module and class definition is finished.
#==============================================================================

Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call

rgss_main { SceneManager.run }

Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call




Instructions

See above.


Compatibility

Should now be compatible with ALL version of RGSS, including RMXP, RMVX, and RMVX Ace.
If you are having difficulties getting it to function correctly, first try to copy the library defined in Game.ini to the path defined there.

Although the likelihood is near nothing, scripts that completely change the Input module COULD have an effect, though I am not aware of any existing Input module rewrite that does.


Credits and Thanks


  • ForeverZer0, for the "script" and library.




Author's Notes

Please report any bugs or suggestions.

Source code is available at SourceForge.
In order to post-process the library after build, you will need to recompile the assembly with the Rpg.NET Export Tool I had previously made.
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.

LiTTleDRAgo

could you release the dll source code as well?
I'm interested how do you accomplish that O.o

Quote from: ForeverZer0 on July 11, 2014, 02:11:15 pmRGSS102E


this means, can't be used in XPA?

KK20

I'd like to know too (seeing as I started that topic and all). The reason Drago mentioned it was to be used for the XP Ace conversion project we have going on--so support for that would be perfect.

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

Spaceman McConaughey

F0, I love you.
Now I can make full screen optional in my project! :D

PhoenixFire

Yeah, I kind of would love to see this in action with XPA too. The idea behind it is great, and if we ever get RMX-OS working with XPA, it wouild be neat to see a game that allows stuff to keep going on even while you're not there; this assumes that I understand correctly. This simply makes sure the game doesn't pause, correct? As in, you can shift the window focus on something else such as, say, a web browser to check in on chaos project, but the game will continue to run? Unless of course RMX-OS already supports this type of behavior >.>
Quote from: Subsonic_Noise on July 01, 2011, 02:42:19 amNext off, how to create a first person shooter using microsoft excel.

Quote from: Zeriab on September 09, 2011, 02:58:58 pm<Remember when computers had turbo buttons?

ForeverZer0

Yes, exactly.

The source code is available on SourceForge where the download link is. I can make it work for any of the rgss libraries, just have not done it yet. I still need to add support for using alt and tab to activate the window, not just the mouse.

I used my RpgExport tool to export the functions. I should be able to update tomorrow.
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.

finalholylight

Am I do right ?

begin
  Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call
  # Prepare for transition
  Graphics.freeze
  # Make scene object (title screen)
  $scene = Scene_Title.new
  # Call main method as long as $scene is effective
  while $scene != nil
    $scene.main
  end
  # Fade out
  Graphics.transition(20)
rescue Errno::ENOENT
  # Supplement Errno::ENOENT exception
  # If unable to open file, display message and end
  filename = $!.message.sub("No such file or directory - ", "")
  print("Unable to find file #{filename}.")
  Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call
end


when I active other window, window explorer crash and reset.

ForeverZer0

You don't want to add it only the "rescue" portion, since that only gets called if the game crashes. Adding an "ensure" to the block would be ideal, since it will get called no matter what.  I will update the instructions a bit to explain that.
Spoiler: ShowHide
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  After defining each class, actual processing begins here.
#==============================================================================

begin
  Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call
  # Prepare for transition
  Graphics.freeze
  # Make scene object (title screen)
  $scene = Scene_Title.new
  # Call main method as long as $scene is effective
  while $scene != nil
    $scene.main
  end
  # Fade out
  Graphics.transition(20)
rescue Errno::ENOENT
  # Supplement Errno::ENOENT exception
  # If unable to open file, display message and end
  filename = $!.message.sub("No such file or directory - ", "")
  print("Unable to find file #{filename}.")
ensure
  Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call
end


I was just adding support for all versions of RGSS###.dll, and I made a mistake when doing some last minute refactoring, and have it setting a low-level keyboard hook instead of a low-level mouse hook.  :facepalm:

I have fixed that, so if you have experienced not being able to regain control of the game after switching back to the game window, this is why, and I will soon have an updated fix, just as soon as I finish multi-library support.
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.

Sylphe

this is soo good for rmx-OS games :o I'm waiting for the RGSS104E.dll compatibility ! Lvl + !
blindly follow his heart can lead to the loss

Sylphe, descendant of Zoldik Family.
Quote from: TedBearTRY KEEP UP

ForeverZer0

Quote from: Sylphe on July 12, 2014, 12:22:54 pm
this is soo good for rmx-OS games :o I'm waiting for the RGSS104E.dll compatibility ! Lvl + !



Your wish has been granted.

** UPDATES TO VERSION 1.1 **


  • Fixed bug with wrong hook being set that would cause window to not reactivate correctly

  • Added dynamically loading RGSS###.dll to make compatible with all existing versions of RPG Maker XP, VX, and VXA. As long as Enterbrain does not change functions they have been reusing since RPG Maker XP, it should also continue to work with future versions.

I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.

finalholylight

I am still getting error when active other window :(

KK20

Confirms that it works with the hacked RGSS300, and thus with XPA :D
Simply awesome, my man~
Spoiler: ShowHide


begin
  Win32API.new('NoDeactivate.dll', 'BeginMonitor', '', '').call
  rgss_main {
 
  $DEBUG = $TEST = true         # Remove this when your project is finished.
  #Graphics.resize_screen(640,480) # Resizes the screen.
  Graphics.resize_screen(1024, 640)
  #Graphics.resize_screen(854, 480)
  Graphics.frame_rate = 60
  # Prepare for transition
  Graphics.freeze
  $scene = Scene_Title.new
  # Call main method as long as $scene is effective
  while $scene != nil
    $scene.main
  end
  Graphics.transition(20) 
  }
rescue Errno::ENOENT
    # Supplement Errno::ENOENT exception
    # If unable to open file, display message and end
    filename = $!.message.sub("No such file or directory - ", "")
    print("Unable to find file #{filename}.")
ensure
    Win32API.new('NoDeactivate.dll', 'EndMonitor', '', '').call
end

Other Projects
RPG Maker XP Ace  Upgrade RMXP to RMVXA performance!
XPA Tilemap  Tilemap rewrite with many features, including custom resolution!

Nintendo Switch Friend Code: 8310-1917-5318
Discord: KK20 Tyler#8901

Join the CP Discord Server!

LiTTleDRAgo

July 12, 2014, 04:39:10 pm #12 Last Edit: July 12, 2014, 04:41:17 pm by LiTTleDRAgo
....it seems for some computer didn't work as expected:

computer1 (Win7 Starter) : worked
computer2 (WinXP SP3) : when clicked other window (ex: Firefox), that program will close & windows explorer crashed

ForeverZer0

Just out of curiosity, what are the OS and system CPU architectures?
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.

Ryex

F0, I'm crying. I went to look at your code in the repo and I certainly could. but you must of mixed tabs and spaces because your indentation is all over the place! I cried in agony! the last time I saw it this bad I was working with the Pokemon essentials starter kit.

As for things that actually matter. this is awesome great work man.
I no longer keep up with posts in the forum very well. If you have a question or comment, about my work, or in general I welcome PM's. if you make a post in one of my threads and I don't reply with in a day or two feel free to PM me and point it out to me.<br /><br />DropBox, the best free file syncing service there is.<br />

Blizzard

The same keeps happening to my boss. He uses XCode and that thing just loves switching to spaces instead of tabs for no reason. >_>
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

LiTTleDRAgo

@F0



DxDiag: ShowHide
------------------
System Information
------------------
Time of this report: 7/13/2014, 14:36:11
       Machine name: JAYACOM-3942BE9
   Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_qfe.090121-1326)
           Language: English (Regional Setting: Japanese)
System Manufacturer: emachines     
       System Model: emachines D725                 
               BIOS: Ver 1.00PARTTBL
          Processor: Pentium(R) Dual-Core CPU       T4300  @ 2.10GHz (2 CPUs)
             Memory: 952MB RAM
          Page File: 699MB used, 1597MB available
        Windows Dir: C:\WINDOWS
    DirectX Version: DirectX 9.0c (4.09.0000.0904)
DX Setup Parameters: Not found
     DxDiag Version: 5.03.2600.5512 32bit Unicode

------------
DxDiag Notes
------------
  DirectX Files Tab: No problems found.
      Display Tab 1: No problems found.
        Sound Tab 1: No problems found.
          Music Tab: No problems found.
          Input Tab: No problems found.
        Network Tab: No problems found.

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

---------------
Display Devices
---------------
        Card name: Mobile Intel(R) 4 Series Express Chipset Family
     Manufacturer: Intel Corporation
        Chip type: Mobile Intel(R) 4 Series Express Chipset Family
         DAC type: Internal
       Device Key: Enum\PCI\VEN_8086&DEV_2A42&SUBSYS_02141025&REV_09
   Display Memory: 256.0 MB
     Current Mode: 1366 x 768 (32 bit) (60Hz)
          Monitor: Plug and Play Monitor
  Monitor Max Res: 1600,1200
      Driver Name: igxprd32.dll
   Driver Version: 6.14.0010.4980 (English)
      DDI Version: 9 (or higher)
Driver Attributes: Final Retail
Driver Date/Size: 8/25/2008 09:03:02, 57344 bytes
      WHQL Logo'd: n/a
  WHQL Date Stamp: n/a
              VDD: n/a
         Mini VDD: igxpmp32.sys
    Mini VDD Date: 8/25/2008 09:03:04, 6045504 bytes
Device Identifier: {D7B78E66-6902-11CF-E160-1E22A8C2CB35}
        Vendor ID: 0x8086
        Device ID: 0x2A42
        SubSys ID: 0x02141025
      Revision ID: 0x0009
      Revision ID: 0x0009
      Video Accel:
Deinterlace Caps: n/a
         Registry: OK
     DDraw Status: Enabled
       D3D Status: Enabled
       AGP Status: Not Available
DDraw Test Result: Not run
D3D7 Test Result: Not run
D3D8 Test Result: Not run
D3D9 Test Result: Not run

-------------
Sound Devices
-------------
            Description: Conexant HD Audio output
Default Sound Playback: Yes
Default Voice Playback: Yes
            Hardware ID: HDAUDIO\FUNC_01&VEN_14F1&DEV_5051&SUBSYS_10250214&REV_1000
        Manufacturer ID: 1
             Product ID: 100
                   Type: WDM
            Driver Name: CHDAU32.sys
         Driver Version: 3.62.0000.0000 (Japanese)
      Driver Attributes: Final Retail
            WHQL Logo'd: n/a
          Date and Size: 12/30/2008 15:02:44, 805888 bytes
            Other Files:
        Driver Provider: Conexant
         HW Accel Level: Full
              Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
Static/Strm HW Mix Bufs: 0, 0
Static/Strm HW 3D Bufs: 0, 0
              HW Memory: 0
       Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
   I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No
               Registry: OK
      Sound Test Result: Not run

---------------------
Sound Capture Devices
---------------------
            Description: Conexant HD Audio input
  Default Sound Capture: Yes
  Default Voice Capture: Yes
            Driver Name: CHDAU32.sys
         Driver Version: 3.62.0000.0000 (Japanese)
      Driver Attributes: Final Retail
          Date and Size: 12/30/2008 15:02:44, 805888 bytes
              Cap Flags: 0x0
           Format Flags: 0x0

-----------
DirectMusic
-----------
        DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS
     DLS Version: 1.00.0016.0002
    Acceleration: n/a
           Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port
                  Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
                  Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
        Registry: OK
     Test Result: Not run

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

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

Poll w/ Interrupt: No
         Registry: OK

-----------
USB Devices
-----------
+ USB Root Hub
| Vendor/Product ID: 0x8086, 0x2939
| Matching Device ID: usb\root_hub
| Service: usbhub
| Driver: usbhub.sys, 4/14/2008 07:15:38, 59520 bytes
| Driver: usbd.sys, 4/14/2008 21:00:00, 4736 bytes

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

------------
PS/2 Devices
------------
+ Standard 101/102-Key or Microsoft Natural PS/2 Keyboard
| Matching Device ID: *pnp0303
| Service: i8042prt
| Driver: i8042prt.sys, 4/14/2008 21:00:00, 52480 bytes
| Driver: kbdclass.sys, 4/14/2008 21:00:00, 24576 bytes
|
+ Terminal Server Keyboard Driver
| Matching Device ID: root\rdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
| Driver: termdd.sys, 4/14/2008 05:43:22, 40840 bytes
| Driver: kbdclass.sys, 4/14/2008 21:00:00, 24576 bytes
|
+ Synaptics PS/2 Port TouchPad
| Matching Device ID: *syn0302
| Upper Filters: SynTP
| Service: i8042prt
|
+ HID-compliant mouse
| Vendor/Product ID: 0x0000, 0x0538
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| Driver: mouclass.sys, 4/14/2008 21:00:00, 23040 bytes
| Driver: mouhid.sys, 8/17/2001 13:48:00, 12160 bytes
|
+ Terminal Server Mouse Driver
| Matching Device ID: root\rdp_mou
| Upper Filters: mouclass
| Service: TermDD
| Driver: termdd.sys, 4/14/2008 05:43:22, 40840 bytes
| Driver: mouclass.sys, 4/14/2008 21:00:00, 23040 bytes

----------------------------
DirectPlay Service Providers
----------------------------
DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
DirectPlay8 Serial Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
DirectPlay8 IPX Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
DirectPlay8 TCP/IP Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
Internet TCP/IP Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.5512)
IPX Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.5512)
Modem Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.5512)
Serial Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.5512)

DirectPlay Voice Wizard Tests: Full Duplex: Not run, Half Duplex: Not run, Mic: Not run
DirectPlay Test Result: Not run
Registry: OK

-------------------
DirectPlay Adapters
-------------------
DirectPlay8 Modem Service Provider: EVDO Rev B Modem
DirectPlay8 Serial Service Provider: COM9
DirectPlay8 TCP/IP Service Provider: Wireless Terminal - IPv4 -

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

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

------------------------
Disk & DVD/CD-ROM Drives
------------------------
      Drive: C:
Free Space: 33.9 GB
Total Space: 100.0 GB
File System: NTFS
      Model: WDC WD3200BPVT-80JJ5T0

      Drive: D:
Free Space: 145.8 GB
Total Space: 205.2 GB
File System: NTFS
      Model: WDC WD3200BPVT-80JJ5T0

      Drive: E:
      Model: TSSTcorp CDDVDW TS-L633B
     Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5593 (Japanese), 5/2/2008 19:49:40, 62976 bytes

--------------
System Devices
--------------
     Name: Mobile Intel(R) 4 Series Express Chipset Family
Device ID: PCI\VEN_8086&DEV_2A43&SUBSYS_02141025&REV_09\3&11583659&0&11
   Driver: n/a

     Name: Mobile Intel(R) 4 Series Express Chipset Family
Device ID: PCI\VEN_8086&DEV_2A42&SUBSYS_02141025&REV_09\3&11583659&0&10
   Driver: C:\WINDOWS\system32\DRIVERS\igxpmp32.sys, 6.14.0010.4980 (English), 8/25/2008 09:03:04, 6045504 bytes
   Driver: C:\WINDOWS\system32\igxprd32.dll, 6.14.0010.4980 (English), 8/25/2008 09:03:02, 57344 bytes
   Driver: C:\WINDOWS\system32\igxpgd32.dll, 6.14.0010.4980 (English), 8/25/2008 09:03:02, 152064 bytes
   Driver: C:\WINDOWS\system32\igxpdv32.dll, 6.14.0010.4980 (English), 8/25/2008 09:03:10, 2295328 bytes
   Driver: C:\WINDOWS\system32\igxpdx32.dll, 6.14.0010.4980 (English), 8/25/2008 09:03:18, 3275776 bytes
   Driver: C:\WINDOWS\system32\igxpxk32.vp, 8/25/2008 08:32:58, 2096 bytes
   Driver: C:\WINDOWS\system32\igxpxs32.vp, 8/25/2008 10:09:06, 29440 bytes
   Driver: C:\WINDOWS\system32\igkrng500.bin, 8/25/2008 09:03:06, 2026604 bytes
   Driver: C:\WINDOWS\system32\igcompkrng500.bin, 8/25/2008 09:03:08, 442964 bytes
   Driver: C:\WINDOWS\system32\hccutils.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:08, 106496 bytes
   Driver: C:\WINDOWS\system32\igfxsrvc.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:30, 52224 bytes
   Driver: C:\WINDOWS\system32\igfxsrvc.exe, 6.14.0010.4980 (English), 9/2/2008 14:16:04, 256536 bytes
   Driver: C:\WINDOWS\system32\igfxpph.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:50, 212992 bytes
   Driver: C:\WINDOWS\system32\igfxcpl.cpl, 6.14.0010.4980 (English), 8/25/2008 08:39:48, 126976 bytes
   Driver: C:\WINDOWS\system32\igfxcfg.exe, 6.14.0010.4980 (English), 9/2/2008 14:15:40, 657944 bytes
   Driver: C:\WINDOWS\system32\igfxdev.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:02, 217088 bytes
   Driver: C:\WINDOWS\system32\igfxdo.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:38, 135168 bytes
   Driver: C:\WINDOWS\system32\igfxtray.exe, 6.14.0010.4980 (English), 9/2/2008 14:16:08, 150040 bytes
   Driver: C:\WINDOWS\system32\hkcmd.exe, 6.14.0010.4980 (English), 9/2/2008 14:15:36, 178712 bytes
   Driver: C:\WINDOWS\system32\igfxress.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:04, 5672960 bytes
   Driver: C:\WINDOWS\system32\igfxpers.exe, 6.14.0010.4980 (English), 9/2/2008 14:16:00, 150040 bytes
   Driver: C:\WINDOWS\system32\igfxrara.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:00, 229376 bytes
   Driver: C:\WINDOWS\system32\igfxrchs.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:00, 155648 bytes
   Driver: C:\WINDOWS\system32\igfxrcht.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:02, 155648 bytes
   Driver: C:\WINDOWS\system32\igfxrdan.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:02, 258048 bytes
   Driver: C:\WINDOWS\system32\igfxrdeu.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:02, 278528 bytes
   Driver: C:\WINDOWS\system32\igfxrenu.lrc, 6.14.0010.4980 (English), 8/25/2008 08:39:04, 249856 bytes
   Driver: C:\WINDOWS\system32\igfxresp.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:04, 278528 bytes
   Driver: C:\WINDOWS\system32\igfxrfin.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:04, 258048 bytes
   Driver: C:\WINDOWS\system32\igfxrfra.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:04, 278528 bytes
   Driver: C:\WINDOWS\system32\igfxrheb.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:04, 225280 bytes
   Driver: C:\WINDOWS\system32\igfxrita.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:06, 278528 bytes
   Driver: C:\WINDOWS\system32\igfxrjpn.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:06, 184320 bytes
   Driver: C:\WINDOWS\system32\igfxrkor.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:06, 180224 bytes
   Driver: C:\WINDOWS\system32\igfxrnld.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:06, 274432 bytes
   Driver: C:\WINDOWS\system32\igfxrnor.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:08, 253952 bytes
   Driver: C:\WINDOWS\system32\igfxrplk.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:08, 262144 bytes
   Driver: C:\WINDOWS\system32\igfxrptb.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:08, 266240 bytes
   Driver: C:\WINDOWS\system32\igfxrptg.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:08, 270336 bytes
   Driver: C:\WINDOWS\system32\igfxrrus.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:08, 266240 bytes
   Driver: C:\WINDOWS\system32\igfxrsky.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:10, 258048 bytes
   Driver: C:\WINDOWS\system32\igfxrslv.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:10, 253952 bytes
   Driver: C:\WINDOWS\system32\igfxrsve.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:10, 258048 bytes
   Driver: C:\WINDOWS\system32\igfxrtha.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:10, 237568 bytes
   Driver: C:\WINDOWS\system32\igfxrcsy.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:02, 258048 bytes
   Driver: C:\WINDOWS\system32\igfxrell.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:02, 286720 bytes
   Driver: C:\WINDOWS\system32\igfxrhun.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:04, 262144 bytes
   Driver: C:\WINDOWS\system32\igfxrtrk.lrc, 6.14.0010.4980 (English), 8/25/2008 08:43:10, 253952 bytes
   Driver: C:\WINDOWS\system32\igfxext.exe, 6.14.0010.4980 (English), 9/2/2008 14:15:48, 178712 bytes
   Driver: C:\WINDOWS\system32\igfxexps.dll, 6.14.0010.4980 (English), 8/25/2008 08:39:52, 24576 bytes
   Driver: C:\WINDOWS\system32\ig4icd32.dll, 6.14.0010.4980 (English), 8/25/2008 08:48:00, 3883008 bytes
   Driver: C:\WINDOWS\system32\ig4dev32.dll, 6.14.0010.4980 (English), 8/25/2008 08:54:48, 2269184 bytes
   Driver: C:\WINDOWS\system32\igfxCoIn_v4980.dll, 8/25/2008 09:12:26, 147456 bytes

     Name: Mobile Intel(R) 4 Series Chipset Processor to DRAM Controller - 2A40
Device ID: PCI\VEN_8086&DEV_2A40&SUBSYS_00000000&REV_09\3&11583659&0&00
   Driver: n/a

     Name: Intel(R) ICH9 Family PCI Express Root Port 2 - 2942
Device ID: PCI\VEN_8086&DEV_2942&SUBSYS_00000000&REV_03\3&11583659&0&E1
   Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 07:06:46, 68224 bytes

     Name: Intel(R) ICH9 Family PCI Express Root Port 1 - 2940
Device ID: PCI\VEN_8086&DEV_2940&SUBSYS_00000000&REV_03\3&11583659&0&E0
   Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 07:06:46, 68224 bytes

     Name: Microsoft UAA Bus Driver for High Definition Audio
Device ID: PCI\VEN_8086&DEV_293E&SUBSYS_02141025&REV_03\3&11583659&0&D8
   Driver: C:\WINDOWS\system32\DRIVERS\hdaudbus.sys, 5.10.0001.5013 (English), 4/14/2008 21:00:00, 144384 bytes

     Name: Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C
Device ID: PCI\VEN_8086&DEV_293C&SUBSYS_02141025&REV_03\3&11583659&0&D7
   Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.5587 (English), 4/24/2008 20:11:32, 30336 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes
   Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.5512 (English), 4/14/2008 12:41:56, 7168 bytes

     Name: Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A
Device ID: PCI\VEN_8086&DEV_293A&SUBSYS_02141025&REV_03\3&11583659&0&EF
   Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.5587 (English), 4/24/2008 20:11:32, 30336 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes
   Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.5512 (English), 4/14/2008 12:41:56, 7168 bytes

     Name: Intel(R) ICH9 Family USB Universal Host Controller - 2939
Device ID: PCI\VEN_8086&DEV_2939&SUBSYS_02141025&REV_03\3&11583659&0&EB
   Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:36, 20608 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes

     Name: Intel(R) ICH9 Family USB Universal Host Controller - 2938
Device ID: PCI\VEN_8086&DEV_2938&SUBSYS_02141025&REV_03\3&11583659&0&D1
   Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:36, 20608 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes

     Name: Intel(R) ICH9 Family USB Universal Host Controller - 2937
Device ID: PCI\VEN_8086&DEV_2937&SUBSYS_02141025&REV_03\3&11583659&0&D0
   Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:36, 20608 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes

     Name: Intel(R) ICH9 Family USB Universal Host Controller - 2936
Device ID: PCI\VEN_8086&DEV_2936&SUBSYS_02141025&REV_03\3&11583659&0&EA
   Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:36, 20608 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes

     Name: Intel(R) ICH9 Family USB Universal Host Controller - 2935
Device ID: PCI\VEN_8086&DEV_2935&SUBSYS_02141025&REV_03\3&11583659&0&E9
   Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:36, 20608 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes

     Name: Intel(R) ICH9 Family USB Universal Host Controller - 2934
Device ID: PCI\VEN_8086&DEV_2934&SUBSYS_02141025&REV_03\3&11583659&0&E8
   Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:36, 20608 bytes
   Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5551 (English), 2/28/2008 01:02:34, 144128 bytes
   Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 12:42:10, 74240 bytes
   Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 07:15:38, 59520 bytes

     Name: Intel(R) ICH9 Family SMBus Controller - 2930
Device ID: PCI\VEN_8086&DEV_2930&SUBSYS_02141025&REV_03\3&11583659&0&FB
   Driver: n/a

     Name: Intel(R) ICH9M-E/M SATA AHCI Controller
Device ID: PCI\VEN_8086&DEV_2929&SUBSYS_02141025&REV_03\3&11583659&0&FA
   Driver: C:\WINDOWS\system32\DRIVERS\iaStor.sys, 8.05.0000.1032 (English), 7/20/2008 17:44:44, 324120 bytes

     Name: Intel(R) ICH9M LPC Interface Controller - 2919
Device ID: PCI\VEN_8086&DEV_2919&SUBSYS_00000000&REV_03\3&11583659&0&F8
   Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.5512 (English), 4/14/2008 07:06:42, 37248 bytes

     Name: Intel(R) 82801 PCI Bridge - 2448
Device ID: PCI\VEN_8086&DEV_2448&SUBSYS_00000000&REV_93\3&11583659&0&F0
   Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 07:06:46, 68224 bytes

     Name: Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller
Device ID: PCI\VEN_1969&DEV_1026&SUBSYS_030D1025&REV_B0\4&1A9C2D41&0&00E0
   Driver: C:\WINDOWS\system32\DRIVERS\l1e51x86.sys, 1.00.0000.0030 (English), 9/24/2008 01:15:00, 38400 bytes

     Name: Atheros AR5007EG Wireless Network Adapter
Device ID: PCI\VEN_168C&DEV_001C&SUBSYS_04281468&REV_01\4&B04CCE1&0&00E1
   Driver: n/a

------------------
DirectX Components
------------------
   ddraw.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 279552 bytes
ddrawex.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 27136 bytes
   dxapi.sys: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 10496 bytes
    d3d8.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 1179648 bytes
d3d8thk.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 8192 bytes
    d3d9.dll: 5.03.2600.5601 English Final Retail 5/13/2008 22:53:40 1689088 bytes
   d3dim.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 436224 bytes
d3dim700.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 824320 bytes
d3dramp.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 590336 bytes
   d3drm.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 350208 bytes
  d3dxof.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 47616 bytes
d3dpmesh.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 34816 bytes
   dplay.dll: 5.00.2134.0001 English Final Retail 4/14/2008 21:00:00 33040 bytes
  dplayx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 229888 bytes
dpmodemx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 23552 bytes
dpwsock.dll: 5.00.2134.0001 English Final Retail 4/14/2008 21:00:00 42768 bytes
dpwsockx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 57344 bytes
dplaysvr.exe: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 29696 bytes
  dpnsvr.exe: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 17920 bytes
   dpnet.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 375296 bytes
dpnlobby.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 3072 bytes
dpnaddr.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 3072 bytes
dpvoice.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 212480 bytes
dpvsetup.exe: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 83456 bytes
  dpvvox.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 116736 bytes
  dpvacm.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 21504 bytes
dpnhpast.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 35328 bytes
dpnhupnp.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 60928 bytes
dpserial.dll: 5.00.2134.0001 English Final Retail 4/14/2008 21:00:00 53520 bytes
  dinput.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 158720 bytes
dinput8.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 181760 bytes
   dimap.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 44032 bytes
diactfrm.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 394240 bytes
     joy.cpl: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 68608 bytes
   gcdef.dll: 5.01.2600.0000 English Final Retail 4/14/2008 21:00:00 76800 bytes
     pid.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 35328 bytes
  dsound.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 367616 bytes
dsound3d.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 1293824 bytes
  dswave.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 19456 bytes
   dsdmo.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 181248 bytes
dsdmoprp.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 71680 bytes
  dmusic.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 104448 bytes
  dmband.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 28672 bytes
dmcompos.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 61440 bytes
   dmime.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 181248 bytes
dmloader.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 35840 bytes
dmstyle.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 105984 bytes
dmsynth.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 103424 bytes
dmscript.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 82432 bytes
  system.dll: 1.01.4322.2407 English Final Retail 1/9/2014 14:41:10 1232896 bytes
Microsoft.DirectX.Direct3D.dll: 9.05.0132.0000 English Final Retail 1/9/2014 14:44:16 473600 bytes
Microsoft.DirectX.Direct3DX.dll: 5.04.0000.3900 English Final Retail 1/9/2014 14:44:15 2676224 bytes
Microsoft.DirectX.Direct3DX.dll: 9.04.0091.0000 English Final Retail 1/9/2014 14:44:15 2846720 bytes
Microsoft.DirectX.Direct3DX.dll: 9.05.0132.0000 English Final Retail 1/9/2014 14:44:16 563712 bytes
Microsoft.DirectX.Direct3DX.dll: 9.06.0168.0000 English Final Retail 1/9/2014 14:44:16 567296 bytes
Microsoft.DirectX.Direct3DX.dll: 9.07.0239.0000 English Final Retail 1/9/2014 14:44:16 576000 bytes
Microsoft.DirectX.Direct3DX.dll: 9.08.0299.0000 English Final Retail 1/9/2014 14:44:16 577024 bytes
Microsoft.DirectX.Direct3DX.dll: 9.09.0376.0000 English Final Retail 1/9/2014 14:44:16 577536 bytes
Microsoft.DirectX.Direct3DX.dll: 9.10.0455.0000 English Final Retail 1/9/2014 14:44:16 577536 bytes
Microsoft.DirectX.Direct3DX.dll: 9.11.0519.0000 English Final Retail 1/9/2014 14:44:16 578560 bytes
Microsoft.DirectX.Direct3DX.dll: 9.12.0589.0000 English Final Retail 1/9/2014 14:44:17 578560 bytes
Microsoft.DirectX.DirectDraw.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:16 145920 bytes
Microsoft.DirectX.DirectInput.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:16 159232 bytes
Microsoft.DirectX.DirectPlay.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:16 364544 bytes
Microsoft.DirectX.DirectSound.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:17 178176 bytes
Microsoft.DirectX.AudioVideoPlayback.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:16 53248 bytes
Microsoft.DirectX.Diagnostics.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:16 12800 bytes
Microsoft.DirectX.dll: 5.04.0000.2904 English Final Retail 1/9/2014 14:44:17 223232 bytes
   dx7vb.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 619008 bytes
   dx8vb.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 1227264 bytes
dxdiagn.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 2113536 bytes
   mfc40.dll: 4.01.0000.6140 English Final Retail 4/14/2008 21:00:00 924432 bytes
   mfc42.dll: 6.02.4131.0000 English Final Retail 4/14/2008 21:00:00 1028096 bytes
wsock32.dll: 5.01.2600.5512 English Final Retail 4/14/2008 21:00:00 22528 bytes
amstream.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 70656 bytes
devenum.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 59904 bytes
  dxmasf.dll: 6.04.0009.1133 English Final Retail 4/14/2008 21:00:00 498742 bytes
mciqtz32.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 35328 bytes
mpg2splt.ax: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 148992 bytes
   msdmo.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 14336 bytes
  encapi.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 20480 bytes
    qasf.dll: 11.00.5721.5233 English Final Retail 6/21/2007 06:54:24 211456 bytes
    qcap.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 192512 bytes
     qdv.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 279040 bytes
    qdvd.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 386048 bytes
   qedit.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 562176 bytes
qedwipes.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 733696 bytes
  quartz.dll: 6.05.2600.5596 English Final Retail 5/7/2008 14:04:16 1288192 bytes
strmdll.dll: 4.01.0000.3937 English Final Retail 10/3/2008 18:49:31 247326 bytes
iac25_32.ax: 2.00.0005.0053 English Final Retail 4/14/2008 21:00:00 199680 bytes
  ir41_32.ax: 4.51.0016.0003 English Final Retail 4/14/2008 21:00:00 848384 bytes
ir41_qc.dll: 4.30.0062.0002 English Final Retail 4/14/2008 21:00:00 120320 bytes
ir41_qcx.dll: 4.30.0064.0001 English Final Retail 4/14/2008 21:00:00 338432 bytes
ir50_32.dll: 5.2562.0015.0055 English Final Retail 4/14/2008 21:00:00 755200 bytes
ir50_qc.dll: 5.00.0063.0048 English Final Retail 4/14/2008 21:00:00 200192 bytes
ir50_qcx.dll: 5.00.0064.0048 English Final Retail 4/14/2008 21:00:00 183808 bytes
   ivfsrc.ax: 5.10.0002.0051 English Final Retail 4/14/2008 21:00:00 154624 bytes
mswebdvd.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 203776 bytes
      ks.sys: 5.03.2600.5512 Japanese Final Retail 4/14/2008 00:46:38 141056 bytes
  ksproxy.ax: 5.03.2600.5512 Japanese Final Retail 4/14/2008 05:42:44 129536 bytes
  ksuser.dll: 5.03.2600.5512 Japanese Final Retail 4/14/2008 05:41:58 4096 bytes
  stream.sys: 5.03.2600.5512 Japanese Final Retail 4/14/2008 00:15:16 49408 bytes
mspclock.sys: 5.03.2600.5512 Japanese Final Retail 4/14/2008 07:09:52 5376 bytes
   mspqm.sys: 5.01.2600.5512 Japanese Final Retail 4/14/2008 07:09:52 4992 bytes
mskssrv.sys: 5.03.2600.5512 Japanese Final Retail 4/14/2008 07:09:54 7552 bytes
  swenum.sys: 5.03.2600.5512 Japanese Final Retail 4/14/2008 21:00:00 4352 bytes
   mstee.sys: 5.03.2600.5512 Japanese Final Retail 4/14/2008 07:09:52 5504 bytes
   ipsink.ax: 5.03.2600.5512 Japanese Final Retail 4/14/2008 12:42:44 16384 bytes
mpeg2data.ax: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 118272 bytes
  ndisip.sys: 5.03.2600.5512 English Final Retail 4/14/2008 07:16:24 10880 bytes
streamip.sys: 5.03.2600.5512 English Final Retail 4/14/2008 07:16:22 15232 bytes
msvidctl.dll: 6.05.2600.5512 English Final Retail 4/14/2008 21:00:00 1428992 bytes
    slip.sys: 5.03.2600.5512 English Final Retail 4/14/2008 07:16:24 11136 bytes
nabtsfec.sys: 5.03.2600.5512 English Final Retail 4/14/2008 07:16:26 85248 bytes
ccdecode.sys: 5.03.2600.5512 English Final Retail 4/14/2008 07:16:24 17024 bytes
  vbisurf.ax: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 30208 bytes
   msyuv.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:42:02 16896 bytes
kstvtune.ax: 5.03.2600.5512 English Final Retail 4/14/2008 05:42:44 61952 bytes
   ksxbar.ax: 5.03.2600.5512 English Final Retail 4/14/2008 05:42:44 43008 bytes
kswdmcap.ax: 5.03.2600.5512 English Final Retail 4/14/2008 05:42:44 91136 bytes
vfwwdm32.dll: 5.01.2600.5512 English Final Retail 4/14/2008 05:42:10 53760 bytes
wstcodec.sys: 5.03.2600.5512 English Final Retail 4/14/2008 07:16:26 19200 bytes
wstdecod.dll: 5.03.2600.5512 English Final Retail 4/14/2008 21:00:00 50688 bytes

------------------
DirectShow Filters
------------------

WDM Streaming VBI Codecs:
NABTS/FEC VBI Codec,0x00200000,2,1,,5.03.2600.5512
CC Decoder,0x00200000,2,1,,5.03.2600.5512
WST Codec,0x00200000,1,1,,5.03.2600.5512

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,,
WMAPro over S/PDIF DMO,0x00600800,1,1,,
WMA Voice Decoder DMO,0x00600800,1,1,,
Mpeg4s Decoder DMO,0x00800001,1,1,,
WMV Screen decoder DMO,0x00600800,1,1,,
WMVideo Decoder DMO,0x00800001,1,1,,
Mpeg43 Decoder DMO,0x00800001,1,1,,
Mpeg4 Decoder DMO,0x00800001,1,1,,
WMT MuxDeMux Filter,0x00200000,0,0,wmm2filt.dll,2.01.4026.0000
ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.03.4524.0000
Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.2600.5596
ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.03.4524.0000
Nero Scene Detector 2,0x00200000,2,0,NeSceneDetector.ax,3.02.0000.0015
ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.03.4524.0000
DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.5512
Nero Digital Audio Decoder,0x00600000,1,1,NeAudio.ax,3.02.0000.0015
Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.5596
LAV Splitter,0x00400001,1,1,LAVSplitter.ax,0.59.0001.0000
WM ASF Reader,0x00400000,0,0,qasf.dll,11.00.5721.5233
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,11.00.5721.5145
AVI Splitter,0x00600000,1,1,quartz.dll,6.05.2600.5596
WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.5596
Indeoï½® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,8.00.0000.4487
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.2600.5512
MainConcept MPEG Encoder,0x00200000,2,1,mcesmpeg.ax,1.02.7984.0000
WMT Format Conversion,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
StreamBufferSink,0x00200000,0,0,sbe.dll,6.05.2600.5512
WMT Black Frame Generator,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5596
Indeoï½® video 5.10 Decompression Filter,0x00640000,1,1,ir50_32.dll,5.2562.0015.0055
WMT Screen Capture filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
Microsoft Screen Video Decompressor,0x00800000,1,1,msscds32.ax,8.00.0000.4487
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.2600.5596
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596
MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.05.0000.0050
Nero Audio Stream Renderer,0x00200000,1,0,NeRender.ax,3.02.0000.0015
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.2600.5512
ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
Nero Digital AVC Audio Encoder,0x00200000,1,2,NeNDAud.ax,3.02.0000.0015
Nero Digital AVC File Writer,0x00200000,1,0,NeNDMux.ax,3.02.0000.0015
Nero Digital AVC Null Renderer,0x00200000,1,0,NeNDMux.ax,3.02.0000.0015
Nero Digital AVC Muxer,0x00200000,2,1,NeNDMux.ax,3.02.0000.0015
Nero Digital AVC Video Enc,0x00200000,1,2,,
Nero QuickTime(tm) Video Decoder,0x00400000,1,1,NeQTDec.ax,3.02.0000.0015
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.2600.5596
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.2600.5596
File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,11.00.5721.5145
ACDFX Filter,0x00200000,1,1,ACDFX.ax,2.00.0013.0002
Nero Format Converter,0x00200000,1,1,NeroFormatConv.ax,3.02.0000.0015
WMT Import Filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
DV Splitter,0x00600000,1,2,qdv.dll,6.05.2600.5512
Bitmap Generate,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,8.00.0000.4487
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.05.2600.5596
Windows Media Video Decoder,0x00800000,1,1,wmv8ds32.ax,8.00.0000.4000
Nero Photo Source,0x00200000,0,1,NePhotoSource.ax,3.02.0000.0015
WMT VIH2 Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Nero Video Analyzer,0x00200000,2,0,NeVideoAnalyzer.ax,3.02.0000.0015
Record Queue,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Nero ES Video Reader,0x00600000,0,1,NDParser.ax,3.02.0000.0015
Nero Audio CD Filter,0x00200000,0,1,NeAudCD.ax,3.02.0000.0015
Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASX file Parser,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145
NSC file Parser,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.2600.5596
Windows Media source filter,0x00600000,0,2,wmpasf.dll,11.00.5721.5145
Video Renderer,0x00800001,1,0,quartz.dll,6.05.2600.5596
Frame Eater,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Nero DVD Navigator,0x00600000,0,4,NeDVD.ax,3.02.0000.0015
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.05.2600.5512
Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.2600.5512
Video Port Manager,0x00600000,2,1,quartz.dll,6.05.2600.5596
WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.2600.5512
Video Renderer,0x00400000,1,0,quartz.dll,6.05.2600.5596
Haali Video Renderer,0x00200000,1,0,dxr.dll,
Nero Audio Sample Renderer,0x00200000,1,0,NeRender.ax,3.02.0000.0015
Nero Vcd Navigator,0x00600000,0,2,NeVcd.ax,3.02.0000.0015
Nero Audio Processor,0x00200000,1,1,NeAudioConv.ax,3.02.0000.0015
WM ASF Writer,0x00400000,0,0,qasf.dll,11.00.5721.5233
WMT Sample Information Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Nero Mpeg2 Encoder,0x00200000,2,1,NeVCR.ax,3.02.0000.0015
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.03.2600.5512
Microsoft MPEG-4 Video Decompressor,0x00800000,1,1,mpg4ds32.ax,8.00.0000.4487
Nero Video Stream Renderer,0x00200000,1,0,NeRender.ax,3.02.0000.0015
File writer,0x00200000,1,0,qcap.dll,6.05.2600.5512
Nero PS Muxer,0x00200000,1,1,NePSMuxer.ax,3.02.0000.0015
WMT Log Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
WMT Virtual Renderer,0x00200000,1,0,wmm2filt.dll,2.01.4026.0000
DirectVobSub,0x00200000,2,1,vsfilter.dll,3.00.0000.0236
DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,3.00.0000.0236
DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.2600.5512
Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.2600.5512
Nero Splitter,0x00600000,1,3,NeSplitter.ax,3.02.0000.0015
AVI Draw,0x00600064,9,1,quartz.dll,6.05.2600.5596
.RAM file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145
Nero File Source / Splitter,0x00600000,0,3,NeFSource.ax,3.02.0000.0015
DC-Bass Source,0x00400000,0,1,DCBassSourceMod.ax,1.05.0002.0000
WMT DirectX Transform Wrapper,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
G.711 Codec,0x00200000,1,1,g711codc.ax,5.01.2600.0000
MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.2600.5512
DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.2600.5512
Indeoï½® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,11.00.5721.5145
ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.03.4524.0000
LAV Splitter Source,0x00400001,0,1,LAVSplitter.ax,0.59.0001.0000
ASF DIB Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF ACM Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF ICM Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF URL Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
9x8Resize,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
WIA Stream Snapshot Filter,0x00200000,1,1,wiasf.ax,1.00.0000.0000
Nero Video Processor,0x00200000,1,1,NeroVideoProc.ax,3.02.0000.0015
Nero Video Decoder,0x00600000,2,2,NeVideo.ax,3.02.0000.0015
Allocator Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
SampleGrabber,0x00200000,1,1,qedit.dll,6.05.2600.5512
Null Renderer,0x00200000,1,0,qedit.dll,6.05.2600.5512
VP7 Decompressor,0x00800000,1,1,vp7dec.ax,7.00.0010.0000
WMT Virtual Source,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
WMT Interlacer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
StreamBufferSource,0x00200000,0,0,sbe.dll,6.05.2600.5512
Smart Tee,0x00200000,1,2,qcap.dll,6.05.2600.5512
Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.2600.5512
Nero Scene Detector,0x00200000,1,0,NeSceneDetector.ax,3.02.0000.0015
AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5596
Uncompressed Domain Shot Detection Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.2600.5596
QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.2600.5596
Wave Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596
MIDI Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596
Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596
File stream renderer,0x00400000,1,1,quartz.dll,6.05.2600.5596
XML Playlist,0x00400000,1,0,wmpasf.dll,11.00.5721.5145
Nero File Source,0x00200000,0,1,NeFileSrc.ax,3.02.0000.0015
Nero QuickTime(tm) Audio Decoder,0x00400000,1,1,NeQTDec.ax,3.02.0000.0015
Nero File Source (Async.),0x00400000,0,1,NeFileSourceAsync.ax,3.02.0000.0015
ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.03.4524.0000
Nero DVD Decoder,0x00600000,2,2,NeVideo.ax,3.02.0000.0015
ACDEncodeQT,0x00200000,0,0,ACDEncodeQT.ax,1.00.0001.0001
madVR,0x00200000,1,0,madVR.ax,0.86.0011.0000
Nero Digital Parser,0x00600000,0,3,NDParser.ax,3.02.0000.0015
AVI Mux,0x00200000,1,0,qcap.dll,6.05.2600.5512
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.2600.5596
File Source (Async.),0x00400000,0,1,quartz.dll,6.05.2600.5596
File Source (URL),0x00400000,0,1,quartz.dll,6.05.2600.5596
WMT DV Extract,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
LAV Audio Decoder,0x00800003,1,1,LAVAudio.ax,0.59.0001.0000
Nero Frame Capture,0x00200000,1,1,NeCapture.ax,3.02.0000.0015
LAV Video Decoder,0xff800000,1,1,LAVVideo.ax,0.59.0001.0000
WMT Switch Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
WMT Volume,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Nero Video Sample Renderer,0x00200000,1,0,NeRender.ax,3.02.0000.0015
Stretch Video,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.2600.5512
Nero DV Splitter,0x00200000,1,2,NeDVSplitter.ax,3.02.0000.0015
DScaler Mpeg2 Video Decoder,0x00800000,1,1,MpegVideo.dll,0.00.0006.0000
QT Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5596
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.2600.5596
Indeoï½® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003
Indeoï½® video 4.4 Compression Filter,0x00200000,1,1,ir41_32.ax,4.51.0016.0003

WDM Streaming Tee/Splitter Devices:
Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.2600.5512

WDM Streaming Data Transforms:
Microsoft Kernel Acoustic Echo Canceller,0x00000000,0,0,,
Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.2600.5512
Microsoft Kernel DLS Synthesizer,0x00200000,1,1,,5.03.2600.5512
Microsoft Kernel DRM Audio Descrambler,0x00200000,1,1,,5.03.2600.5512

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,,
MSScreen encoder DMO,0x00600800,1,1,,
WMVideo9 Encoder DMO,0x00600800,1,1,,
MSScreen 9 encoder DMO,0x00600800,1,1,,
DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.2600.5512
ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.03.4524.0000
Indeoï½® video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.2600.5596
Nero Digital AVC Video Enc,0x00200000,1,2,NeNDVid.ax,3.02.0000.0015
Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel IndeoR Video 4.5,0x00200000,1,1,qcap.dll,6.05.2600.5512
IndeoR video 5.10,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel IYUV codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.2600.5512

Audio Compressors:
WMA Voice Encoder DMO,0x00600800,1,1,,
WMAudio Encoder DMO,0x00600800,1,1,,
IAC2,0x00200000,1,1,quartz.dll,6.05.2600.5596
IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.5596
PCM,0x00200000,1,1,quartz.dll,6.05.2600.5596
Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.5596
ACELP.net,0x00200000,1,1,quartz.dll,6.05.2600.5596
DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.2600.5596
Windows Media Audio V1,0x00200000,1,1,quartz.dll,6.05.2600.5596
Windows Media Audio V2,0x00200000,1,1,quartz.dll,6.05.2600.5596
GSM 6.10,0x00200000,1,1,quartz.dll,6.05.2600.5596
Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.2600.5596
CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.2600.5596
CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.2600.5596
MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.2600.5596

Audio Capture Sources:
Conexant HD Audio input,0x00200000,0,0,qcap.dll,6.05.2600.5512

Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.2600.5596
Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.2600.5596

WDM Streaming Capture Devices:
Conexant HD Audio input,0x00200000,1,1,,5.03.2600.5512
,0x00000000,0,0,,
Video WebCam,0x00200000,0,2,,5.03.2600.5512

WDM Streaming Rendering Devices:
,0x00000000,0,0,,
Conexant HD Audio output,0x00200000,1,1,,5.03.2600.5512

BDA Rendering Filters:
BDA IP Sink,0x00200000,1,1,,5.03.2600.5512

Video Capture Sources:
Video WebCam,0x00200000,0,2,,5.03.2600.5512

WDM Streaming Mixer Devices:
Microsoft Kernel Wave Audio Mixer,0x00000000,0,0,,

BDA CP/CA Filters:
Decrypt/Tag,0x00600000,1,0,encdec.dll,6.05.2600.5512
Encrypt/Tag,0x00200000,0,0,encdec.dll,6.05.2600.5512
XDS Codec,0x00200000,0,0,encdec.dll,6.05.2600.5512

WDM Streaming Communication Transforms:
Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.2600.5512

Audio Renderers:
Conexant HD Audio output,0x00200000,1,0,quartz.dll,6.05.2600.5596
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.2600.5596
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.2600.5596
DirectSound: Conexant HD Audio output,0x00200000,1,0,quartz.dll,6.05.2600.5596

WDM Streaming System Devices:
Conexant HD Audio input,0x00200000,1,1,,5.03.2600.5512
Conexant HD Audio output,0x00200000,4,1,,5.03.2600.5512

BDA Receiver Component:
BDA Slip De-Framer,0x00600000,1,1,,5.03.2600.5512


finalholylight

July 13, 2014, 05:01:00 am #17 Last Edit: July 13, 2014, 05:02:12 am by finalholylight
this is mine
Spoiler: ShowHide

------------------
System Information
------------------
Time of this report: 7/13/2014, 15:56:51
      Machine name: TAI-PC
  Operating System: Windows 7 Ultimate 32-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.120830-0333)
          Language: English (Regional Setting: English)
System Manufacturer: System manufacturer
      System Model: System Product Name
              BIOS: BIOS Date: 05/16/11 14:24:22 Ver: 08.00.14
         Processor: Intel(R) Core(TM)2 Duo CPU     E7200  @ 2.53GHz (2 CPUs), ~2.5GHz
            Memory: 2048MB RAM
Available OS Memory: 2048MB RAM
         Page File: 1387MB used, 2706MB available
       Windows Dir: C:\Windows
   DirectX Version: DirectX 11
DX Setup Parameters: Not found
  User DPI Setting: 108 DPI (112 percent)
System DPI Setting: 96 DPI (100 percent)
   DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode

------------
DxDiag Notes
------------
     Display Tab 1: No problems found.
       Sound Tab 1: No problems found.
       Sound Tab 2: No problems found.
         Input Tab: No problems found.

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

---------------
Display Devices
---------------
         Card name: NVIDIA GeForce GT 220
      Manufacturer: NVIDIA
         Chip type: GeForce GT 220
          DAC type: Integrated RAMDAC
        Device Key: Enum\PCI\VEN_10DE&DEV_0A20&SUBSYS_34D61458&REV_A2
    Display Memory: 1746 MB
  Dedicated Memory: 978 MB
     Shared Memory: 767 MB
      Current Mode: 1152 x 864 (32 bit) (75Hz)
      Monitor Name: Generic PnP Monitor
     Monitor Model: T713SH
        Monitor Id: GSM4448
       Native Mode: 1024 x 768(p) (84.997Hz)
       Output Type: HD15
       Driver Name: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
Driver File Version: 9.18.0013.3788 (English)
    Driver Version: 9.18.13.3788
       DDI Version: 10.1
      Driver Model: WDDM 1.1
 Driver Attributes: Final Retail
  Driver Date/Size: 5/20/2014 09:39:05, 14434704 bytes
       WHQL Logo'd: Yes
   WHQL Date Stamp:
 Device Identifier: {D7B71E3E-4960-11CF-2479-DB141FC2C435}
         Vendor ID: 0x10DE
         Device ID: 0x0A20
         SubSys ID: 0x34D61458
       Revision ID: 0x00A2
Driver Strong Name: oem26.inf:NVIDIA_SetA_Devices.NTx86.6.1:Section002:9.18.13.3788:pci\ven_10de&dev_0a20
    Rank Of Driver: 00E02001
       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_0887&SUBSYS_10438445&REV_1003
       Manufacturer ID: 1
            Product ID: 100
                  Type: WDM
           Driver Name: RTKVHDA.sys
        Driver Version: 6.00.0001.6251 (English)
     Driver Attributes: Final Retail
           WHQL Logo'd: Yes
         Date and Size: 11/23/2010 17:16:58, 3253352 bytes
           Other Files:
       Driver Provider: Realtek Semiconductor Corp.
        HW Accel Level: Basic
             Cap Flags: 0xF1F
   Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
             HW Memory: 0
      Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
  I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

           Description: Realtek Digital Output (Realtek High Definition Audio)
Default Sound Playback: No
Default Voice Playback: No
           Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0887&SUBSYS_10438445&REV_1003
       Manufacturer ID: 1
            Product ID: 100
                  Type: WDM
           Driver Name: RTKVHDA.sys
        Driver Version: 6.00.0001.6251 (English)
     Driver Attributes: Final Retail
           WHQL Logo'd: Yes
         Date and Size: 11/23/2010 17:16:58, 3253352 bytes
           Other Files:
       Driver Provider: Realtek Semiconductor Corp.
        HW Accel Level: Basic
             Cap Flags: 0xF1F
   Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
             HW Memory: 0
      Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
  I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

---------------------
Sound Capture Devices
---------------------
           Description: Microphone (Realtek High Definition Audio)
 Default Sound Capture: Yes
 Default Voice Capture: Yes
           Driver Name: RTKVHDA.sys
        Driver Version: 6.00.0001.6251 (English)
     Driver Attributes: Final Retail
         Date and Size: 11/23/2010 17:16:58, 3253352 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: ?
        Attached: 1
   Controller ID: 0x0
Vendor/Product ID: 0x03EE, 0x8801
       FF Driver: n/a

     Device Name: ?
        Attached: 1
   Controller ID: 0x0
Vendor/Product ID: 0x03EE, 0x8801
       FF Driver: n/a

Poll w/ Interrupt: No

-----------
USB Devices
-----------
+ USB Root Hub
| Vendor/Product ID: 0x8086, 0x27CB
| Matching Device ID: usb\root_hub
| Service: usbhub
| Driver: usbhub.sys, 3/25/2011 09:58:37, 258560 bytes
| Driver: usbd.sys, 3/25/2011 09:57:53, 5888 bytes

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

------------
PS/2 Devices
------------
+ HID Keyboard Device
| Vendor/Product ID: 0x03EE, 0x8801
| Matching Device ID: hid_device_system_keyboard
| Service: kbdhid
| Driver: kbdhid.sys, 11/21/2010 04:29:03, 28160 bytes
| Driver: kbdclass.sys, 7/14/2009 08:20:36, 42576 bytes
|
+ Terminal Server Keyboard Driver
| Matching Device ID: root\rdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
| Driver: i8042prt.sys, 7/14/2009 06:11:24, 80896 bytes
| Driver: kbdclass.sys, 7/14/2009 08:20:36, 42576 bytes
|
+ HID-compliant mouse
| Vendor/Product ID: 0x1C4F, 0x0034
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| Driver: mouhid.sys, 7/14/2009 06:45:08, 26112 bytes
| Driver: mouclass.sys, 7/14/2009 08:20:44, 41552 bytes
|
+ Terminal Server Mouse Driver
| Matching Device ID: root\rdp_mou
| Upper Filters: mouclass
| Service: TermDD
| Driver: termdd.sys, 11/21/2010 04:29:03, 53120 bytes
| Driver: sermouse.sys, 7/14/2009 06:45:08, 19968 bytes
| Driver: mouclass.sys, 7/14/2009 08:20:44, 41552 bytes

------------------------
Disk & DVD/CD-ROM Drives
------------------------
     Drive: C:
Free Space: 6.6 GB
Total Space: 29.8 GB
File System: NTFS
     Model: ST3160215AS ATA Device

     Drive: D:
Free Space: 9.1 GB
Total Space: 61.4 GB
File System: NTFS
     Model: ST3160215AS ATA Device

     Drive: E:
Free Space: 17.5 GB
Total Space: 61.4 GB
File System: NTFS
     Model: ST3160215AS ATA Device

     Drive: H:
Free Space: 13.0 GB
Total Space: 78.5 GB
File System: NTFS
     Model: Hitachi HDS721680PLA380 ATA Device

     Drive: F:
     Model: ASUS DVD-E818A7T   a ATA Device
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 108544 bytes

--------------
System Devices
--------------
    Name: High Definition Audio Controller
Device ID: PCI\VEN_8086&DEV_27D8&SUBSYS_84451043&REV_01\3&11583659&0&D8
  Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 108544 bytes

    Name: Intel(R) N10/ICH7 Family Serial ATA Storage Controller - 27C0
Device ID: PCI\VEN_8086&DEV_27C0&SUBSYS_81791043&REV_01\3&11583659&0&FA
  Driver: C:\Windows\system32\DRIVERS\intelide.sys, 6.01.7600.16385 (English), 7/14/2009 08:20:36, 15424 bytes
  Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (English), 7/14/2009 08:19:03, 42560 bytes
  Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 08:26:15, 21584 bytes
  Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 132992 bytes

    Name: Intel(R) N10/ICH7 Family PCI Express Root Port - 27D2
Device ID: PCI\VEN_8086&DEV_27D2&SUBSYS_81791043&REV_01\3&11583659&0&E1
  Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 153984 bytes

    Name: Intel(R) ICH7 Family LPC Interface Controller - 27B8
Device ID: PCI\VEN_8086&DEV_27B8&SUBSYS_81791043&REV_01\3&11583659&0&F8
  Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 08:20:43, 13888 bytes

    Name: Intel(R) N10/ICH7 Family PCI Express Root Port - 27D0
Device ID: PCI\VEN_8086&DEV_27D0&SUBSYS_81791043&REV_01\3&11583659&0&E0
  Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 153984 bytes

    Name: Intel(R) 82801 PCI Bridge - 244E
Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_81791043&REV_E1\3&11583659&0&F0
  Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 153984 bytes

    Name: Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC
Device ID: PCI\VEN_8086&DEV_27CC&SUBSYS_81791043&REV_01\3&11583659&0&EF
  Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7601.17586 (English), 3/25/2011 09:57:58, 43008 bytes
  Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:07, 284672 bytes
  Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:37, 258560 bytes

    Name: Atheros AR8131 PCI-E Gigabit Ethernet Controller (NDIS 6.20)
Device ID: PCI\VEN_1969&DEV_1063&SUBSYS_83FE1043&REV_C0\4&3AA6353D&0&00E1
  Driver: C:\Windows\system32\DRIVERS\L1C62x86.sys, 1.00.0002.0043 (English), 3/22/2011 12:44:50, 69232 bytes

    Name: Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB
Device ID: PCI\VEN_8086&DEV_27CB&SUBSYS_81791043&REV_01\3&11583659&0&EB
  Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7601.17586 (English), 3/25/2011 09:57:56, 24064 bytes
  Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:07, 284672 bytes
  Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:37, 258560 bytes

    Name: High Definition Audio Controller
Device ID: PCI\VEN_10DE&DEV_0BE2&SUBSYS_34D61458&REV_A1\4&323AECB5&0&0108
  Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 108544 bytes

    Name: Intel(R) 4 Series Chipset PCI Express Root Port - 2E31
Device ID: PCI\VEN_8086&DEV_2E31&SUBSYS_836D1043&REV_03\3&11583659&0&08
  Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 153984 bytes

    Name: Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA
Device ID: PCI\VEN_8086&DEV_27CA&SUBSYS_81791043&REV_01\3&11583659&0&EA
  Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7601.17586 (English), 3/25/2011 09:57:56, 24064 bytes
  Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:07, 284672 bytes
  Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:37, 258560 bytes

    Name: NVIDIA GeForce GT 220
Device ID: PCI\VEN_10DE&DEV_0A20&SUBSYS_34D61458&REV_A2\4&323AECB5&0&0008
  Driver: C:\Program Files\NVIDIA Corporation\Drs\dbInstaller.exe, 9.18.0013.3788 (English), 5/20/2014 09:39:05, 380872 bytes
  Driver: C:\Program Files\NVIDIA Corporation\Drs\nvdrsdb.bin, 5/20/2014 09:39:05, 1183672 bytes
  Driver: C:\Windows\System32\DriverStore\FileRepository\nv_disp.inf_x86_neutral_d0075816b3f2d059\NvCplSetupEng.exe, 1.00.0001.0000 (English), 5/20/2014 09:39:05, 30489496 bytes
  Driver: C:\Program Files\NVIDIA Corporation\license.txt, 5/20/2014 09:39:05, 21898 bytes
  Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL.dll, 1.00.0000.0000 (English), 5/20/2014 09:39:05, 52056 bytes
  Driver: C:\Windows\system32\DRIVERS\nvlddmkm.sys, 9.18.0013.3788 (English), 5/20/2014 09:39:05, 10533152 bytes
  Driver: C:\Windows\system32\NvFBC.dll, 6.14.0013.3788 (English), 5/20/2014 09:39:05, 861128 bytes
  Driver: C:\Windows\system32\NvIFR.dll, 6.14.0013.3788 (English), 5/20/2014 09:39:05, 866592 bytes
  Driver: C:\Windows\system32\nvapi.dll, 9.18.0013.3788 (English), 5/20/2014 09:39:05, 2730208 bytes
  Driver: C:\Windows\system32\nvcompiler.dll, 8.17.0013.3788 (English), 5/20/2014 09:39:05, 17559384 bytes
  Driver: C:\Windows\system32\nvcuda.dll, 8.17.0013.3788 (English), 5/20/2014 09:39:05, 9735256 bytes
  Driver: C:\Windows\system32\nvcuvenc.dll, 8.17.0013.3788 (English), 5/20/2014 09:39:05, 2413344 bytes
  Driver: C:\Windows\system32\nvcuvid.dll, 8.17.0013.3788 (English), 5/20/2014 09:39:05, 2953672 bytes
  Driver: C:\Windows\system32\nvd3dum.dll, 9.18.0013.3788 (English), 5/20/2014 09:39:05, 14434704 bytes
  Driver: C:\Windows\system32\nvinfo.pb, 5/20/2014 09:39:05, 20729 bytes
  Driver: C:\Windows\system32\nvoglv32.dll, 9.18.0013.3788 (English), 5/20/2014 09:39:05, 24024408 bytes
  Driver: C:\Windows\system32\nvopencl.dll, 8.17.0013.3788 (English), 5/20/2014 09:39:05, 9697640 bytes
  Driver: C:\Windows\system32\nvwgf2um.dll, 9.18.0013.3788 (English), 5/20/2014 09:39:05, 16003912 bytes
  Driver: C:\Windows\system32\nvdispco3233788.dll, 2.00.0040.0004 (English), 5/20/2014 09:39:05, 1056200 bytes
  Driver: C:\Windows\system32\nvdispgenco3233788.dll, 2.00.0019.0002 (English), 5/20/2014 09:39:05, 908744 bytes

    Name: Intel(R) 4 Series Chipset Processor to I/O Controller - 2E30
Device ID: PCI\VEN_8086&DEV_2E30&SUBSYS_836D1043&REV_03\3&11583659&0&00
  Driver: n/a

    Name: Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9
Device ID: PCI\VEN_8086&DEV_27C9&SUBSYS_81791043&REV_01\3&11583659&0&E9
  Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7601.17586 (English), 3/25/2011 09:57:56, 24064 bytes
  Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:07, 284672 bytes
  Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:37, 258560 bytes

    Name: Intel(R) ICH7 Family Ultra ATA Storage Controllers - 27DF
Device ID: PCI\VEN_8086&DEV_27DF&SUBSYS_81791043&REV_01\3&11583659&0&F9
  Driver: C:\Windows\system32\DRIVERS\intelide.sys, 6.01.7600.16385 (English), 7/14/2009 08:20:36, 15424 bytes
  Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (English), 7/14/2009 08:19:03, 42560 bytes
  Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 08:26:15, 21584 bytes
  Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7601.17514 (English), 11/21/2010 04:29:03, 132992 bytes

    Name: Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8
Device ID: PCI\VEN_8086&DEV_27C8&SUBSYS_81791043&REV_01\3&11583659&0&E8
  Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7601.17586 (English), 3/25/2011 09:57:56, 24064 bytes
  Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:07, 284672 bytes
  Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7601.17586 (English), 3/25/2011 09:58:37, 258560 bytes

------------------
DirectShow Filters
------------------

Nero Digital:
Nero Digital Renderer,0x00100000,1,0,NeroDigital.dll,5.05.0009.0009
Nero Digital MP4 Muxer,0x00100000,1,1,NeroDigital.dll,5.05.0009.0009
Nero Digital AAC Encoder,0x00100000,1,1,NeroDigital.dll,5.05.0009.0009
Subpic Encoder,0x00100000,1,3,NeroDigital.dll,5.05.0009.0009
Watermark,0x00200000,1,1,NeroDigital.dll,5.05.0009.0009
AMR Encoder,0x00100000,1,1,NeroDigital.dll,5.05.0009.0009
Nero Digital AVC Encoder,0x00100000,1,1,NeroDigital.dll,5.05.0009.0009
Media Type Adjustment,0x00200000,1,1,NeroDigital.dll,5.05.0009.0009
Nero Digital DMO Wrapper,0x00200000,1,1,NeroDigital.dll,5.05.0009.0009
Nero Digital SP/ASP Encoder,0x00100000,1,1,NeroDigital.dll,5.05.0009.0009
VideoTee,0x00200000,1,2,NeroDigital.dll,5.05.0009.0009
PreviewRenderer,0x00400000,1,0,NeroDigital.dll,5.05.0009.0009

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
Nero Digital Audio Encoder 8,0x00200000,1,2,NeNDAud.ax,5.05.0009.0009
Nero Digital Muxer 8,0x00200000,2,1,NeNDMux.ax,5.05.0009.0009
Nero Digital File Writer 8,0x00200000,1,0,NeNDMux.ax,5.05.0009.0009
Nero Digital Null Renderer 8,0x00200000,1,0,NeNDMux.ax,5.05.0009.0009
Nero Digital Subpicture Enc 8,0x00200000,1,0,NeNDMux.ax,5.05.0009.0009
Nero Digital Video Enc 8,0x00200000,1,2,NeNDVid.ax,5.05.0009.0009
SonyCDSrcWriter,0x00200000,1,0,SonyCDSrcWriter.ax,4.07.0000.12140
Nero Sound Switcher,0x00200000,1,1,NeSoundSwitch.ax,5.05.0009.0009
ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.02.4450.0000
Nero QuickTime(tm) Audio Decoder,0x00400000,1,1,NeQTDec.ax,5.05.0009.0009
Nero File Source (Async.),0x00400000,0,1,NeFileSourceAsync.ax,5.05.0009.0009
Nero Subpicture Decoder,0x00200000,1,1,NeSubpicture.ax,5.05.0009.0009
WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,16.04.3505.0912
Record Queue,0x00200000,1,1,WLXVAFilt.dll,16.04.3505.0912
WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,16.04.3505.0912
WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,16.04.3505.0912
WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,16.04.3505.0912
WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,16.04.3505.0912
WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,16.04.3505.0912
Nero Audio Decoder 2,0x00600000,1,1,NeAudio2.ax,5.05.0009.0009
ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.02.4450.0000
ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.02.4450.0000
ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.02.4450.0000
OpenMG Async. File Source,0x00400000,0,1,OmgAfs.ax,4.07.0000.12140
Nero AV Synchronizer,0x00200000,1,1,NeAVSync.ax,5.05.0009.0009
DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
Sony Audio CD Source Filter,0x00600000,0,1,cdsrc.ax,4.07.0000.12140
Nero Frame Capture,0x00200000,1,1,NeCapture.ax,5.05.0009.0009
Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
LAV Splitter,0x00400001,1,1,LAVSplitter.ax,0.50.0005.0000
WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
Nero Splitter,0x00600000,1,3,NeSplitter.ax,5.05.0009.0009
SAL Output Converter,0x00200000,1,0,saloconv.ax,4.07.0000.12140
AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
Nero Vobu Generator,0x00200000,1,0,NeroVobuGenerator.ax,5.05.0009.0009
RealVideo Decoder,0x00400000,1,1,RealMediaSplitter.ax,
Nero Audio Renderer,0x00200000,1,0,NeAudioRender.ax,5.05.0009.0009
Nero Subtitle,0x00200000,1,1,NeSubtitle.ax,5.05.0009.0009
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
Nero Teletext Decoder,0x00200000,1,1,NeTeletext.ax,5.05.0009.0009
Nero Video Processor,0x00200000,1,1,NeroVideoProc.ax,5.05.0009.0009
Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17715
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
DivX for Blizzard Decoder Filter,0x00800000,1,1,blizzard.ax,5.00.0002.0000
CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7601.17514
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
Nero DVD Navigator,0x00600000,0,14,NeDVD.ax,5.05.0009.0009
Video Grabber,0x00200000,1,0,grabfilt.ax,
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
DV Scenes,0x00200000,1,1,NVDV.dll,3.00.0007.0001
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
Nero Resize,0x00400000,1,1,NeResize.ax,5.05.0009.0009
SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
DV Source Filter,0x00400000,0,1,NVDV.dll,3.00.0007.0001
Nero Colorspace Converter,0x00200000,1,1,NeColorspace.ax,5.05.0009.0009
Nero Video Analyzer,0x00200000,2,0,NeVideoAnalyzer.ax,5.05.0009.0009
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
OmgGenericSrcFilter,0x00400000,0,1,OmgGenericSrcFilter.ax,4.07.0000.12140
Nero Audio CD Navigator,0x00200000,0,1,NeAudCD.ax,5.05.0009.0009
DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
Nero Video Renderer,0x00200000,1,0,NeVideoRenderer.ax,5.05.0009.0009
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17713
Nero Scene Detector 2,0x00200000,2,0,NeSceneDetector.ax,5.05.0009.0009
Nero FLV Splitter,0x00600000,1,1,NeFLVSplitter.ax,5.05.0009.0009
Nero Stream Buffer Sink,0x00200000,0,0,NeSBE.ax,5.05.0009.0009
Haali Media Splitter,0x00800001,0,1,splitter.ax,1.11.0288.0000
Haali Media Splitter (AR),0x00400000,1,1,splitter.ax,1.11.0288.0000
Nero PresentationGraphics Decoder,0x00600000,2,1,NeBDGraphic.ax,5.05.0009.0009
OmgDsee Filter,0x00200000,1,1,OmgDseeFilter.ax,
Nero MP2 Audio Encoder,0x00200000,1,1,NeMP2AudioEnc.ax,5.05.0009.0009
OmgPushSrc,0x00200000,0,1,OmgPushSrc.ax,4.07.0000.12140
Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
Nero Mpeg2 Encoder,0x00200000,2,1,NeVCR.ax,5.05.0009.0009
Nero HD Audio Mixer,0x00200000,3,1,NeHDAudioMixer.ax,5.05.0009.0009
Nero PS Muxer,0x00200000,1,1,NePSMuxer.ax,5.05.0009.0009
Nero Scene Detector,0x00200000,1,0,NeSceneDetector.ax,5.05.0009.0009
File Source (Monkey Audio),0x00400000,0,1,MonkeySource.ax,
RadLight OptimFROG DirectShow Filter,0x00600000,0,1,RLOFRDec.ax,1.00.0000.0001
ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
OMG Seamless,0x00200000,1,1,SeamlessFilter.ax,4.07.0000.12140
madFlac Decoder,0x00600000,1,1,madFlac.ax,1.10.0000.0000
Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
Nero Elementary Stream Parser,0x00200000,1,1,NeESParser.ax,5.05.0009.0009
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
SonyWavWriter,0x00200000,1,0,SONYWA~1.AX,2.10.0000.11020
Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17835
Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
Nero Audio Transcoder,0x00200000,1,1,NeTranscoder.ax,5.05.0009.0009
Nero Vcd Navigator,0x00600000,0,2,NeVCD.ax,5.05.0009.0009
OpenMG Audio Decrypt Splitter,0x00600000,1,1,omgdec.ax,4.07.0000.12140
Haali Video Renderer,0x00200000,1,0,dxr.dll,
RealMedia Source,0x00600000,0,0,RealMediaSplitter.ax,
File Writer,0x00200000,1,0,WLXVAFilt.dll,16.04.3505.0912
Nero Deinterlace,0x00200000,1,1,NeDeinterlace.ax,5.05.0009.0009
VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
Nero TS Muxer,0x00200000,1,1,NeTSMuxer.ax,5.05.0009.0009
Nero Framerate Converter,0x00200000,1,1,NeFramerate.ax,5.05.0009.0009
Nero DVD Decoder,0x00600000,2,1,NeVideo.ax,5.05.0009.0009
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
Nero Mpeg Video Encoder,0x00200000,1,1,NeMpegVideoEnc.ax,5.05.0009.0009
OpenMG OmgSource Filter,0x00600000,0,1,omgsrc.ax,4.07.0000.12140
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
Nero Video Decoder HD,0x00200000,1,2,NeVideoHD.ax,5.05.0009.0009
Haali Simple Media Splitter,0x00200000,0,1,splitter.ax,1.11.0288.0000
Nero QuickTime(tm) Video Decoder,0x00400000,1,1,NeQTDec.ax,5.05.0009.0009
DirectVobSub,0x00200000,2,1,vsfilter.dll,1.06.0002.4742
RealAudio Decoder,0x00400000,1,1,RealMediaSplitter.ax,
DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,1.06.0002.4742
OMG TRANSFORM,0x00600000,1,1,omgtrans.ax,4.07.0000.12140
DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17835
Nero Stream Buffer Source,0x00200000,0,0,NeSBE.ax,5.05.0009.0009
OmgMP4Decoder2,0x00600000,1,1,OmgMP4Decoder2.ax,4.07.0000.12140
Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7601.17715
Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17835
Nero Audio CD Filter,0x00200000,0,1,NeAudCD.ax,5.05.0009.0009
SonyMSAConverter,0x00200000,1,0,SonyMSAConverter3.ax,4.07.0000.12140
Nero MP3 Encoder,0x00200000,1,1,NeMp3Encoder.ax,5.05.0009.0009
Haali Matroska Muxer,0x00200000,1,0,splitter.ax,1.11.0288.0000
AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
Nero Audible Decoder,0x00200000,1,1,NeAudible.ax,5.05.0009.0009
RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
DC-Bass Source,0x00400000,0,1,DCBassSource.ax,1.03.0000.0000
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
Audio Grabber,0x00200000,1,0,audiograbber.ax,
DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.02.4450.0000
LAV Splitter Source,0x00400001,0,1,LAVSplitter.ax,0.50.0005.0000
SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
VP7 Decompressor,0x00800000,1,1,vp7dec.ax,7.00.0010.0000
madFlac Source,0x00600000,0,1,madFlac.ax,1.10.0000.0000
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
Nero VMR Modules Filter,0x00200000,1,0,NeroVMRModules.dll,5.05.0009.0009
StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17835
AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
Photodex NULL filter,0x00200000,1,0,nullfilter.ax,
NetBridge,0x00200000,2,0,netbridge.dll,6.01.7601.17514
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
Nero InteractiveGraphics Decoder,0x00600000,1,1,NeBDGraphic.ax,5.05.0009.0009
Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
Nero Photo Source,0x00200000,0,1,NePhotoSource.ax,5.05.0009.0009
Nero Thumbnail Decoder,0x00600000,1,1,NeBDThumbnail.ax,5.05.0009.0009
ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.02.4450.0000
madVR,0x00200000,1,0,madVR.ax,0.82.0005.0000
Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
RealMedia Splitter,0x00600000,1,1,RealMediaSplitter.ax,
StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17713
File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7601.17514
Nero Ogg Splitter,0x00400000,1,1,NeOggSplitter.ax,5.05.0009.0009
Nero MP4 Splitter,0x00600000,1,1,NeMP4Splitter.ax,5.05.0009.0009
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.50.0005.0000
LAV Video Decoder,0x00800003,1,1,LAVVideo.ax,0.50.0005.0000
Haali Video Sink,0x00200000,1,0,splitter.ax,1.11.0288.0000
Nero Sound Processor,0x00200000,1,1,NeSoundProc.ax,5.05.0009.0009
Video Grabber,0x00200000,1,0,videograbber.ax,
AC3File,0x00600000,0,1,ac3file.ax,
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
Nero Video Decoder,0x00600000,2,1,NeVideo.ax,5.05.0009.0009
Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
SAL Input Converter,0x00200000,0,1,saliconv.ax,4.07.0000.12140
BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
Nero DV Splitter,0x00200000,1,2,NeDVSplitter.ax,5.05.0009.0009
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713

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

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.02.4450.0000
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
ffdshow Video Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
Xvid MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
Xvid MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514

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

Audio Capture Sources:
Microphone (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7601.17514

PBDA CP Filters:
PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528

Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713

WDM Streaming Capture Devices:
Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

WDM Streaming Rendering Devices:
Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

BDA Network Providers:
Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514

Multi-Instance Capable VBI Codecs:
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514

BDA Transport Information Renderers:
BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514

BDA CP/CA Filters:
Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708

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

Audio Renderers:
Speakers (Realtek High Definiti,0x00200000,1,0,quartz.dll,6.06.7601.17713
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7601.17713

---------------
EVR Power Information
---------------
Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
 Quality Flags: 2576
   Enabled:
   Force throttling
   Allow half deinterlace
   Allow scaling
   Decode Power Usage: 100
 Balanced Flags: 1424
   Enabled:
   Force throttling
   Allow batching
   Force half deinterlace
   Force scaling
   Decode Power Usage: 50
 PowerFlags: 1424
   Enabled:
   Force throttling
   Allow batching
   Force half deinterlace
   Force scaling
   Decode Power Usage: 0


Sylphe

small bug, when I change my window then I go back to the game, often I can't use the keyboard, unless I click several times on the game ( in the rmxos connection menu it doesn't work when I click, I have to relaunch the game)
blindly follow his heart can lead to the loss

Sylphe, descendant of Zoldik Family.
Quote from: TedBearTRY KEEP UP

ForeverZer0

Just for a test, can you try clicking the title bar of the game window instead of anywhere on the window and see if works any better?
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.