Adding global system properties

Hello,
I know that there are some system properties that are available by default via the System.getProperty method. I also know that I can programatically add my own properties to that list.
My question is...Is there some way for an admin to add custom properties to that list through the Visual Administrator or Configuration Manager?
The reason I ask is because we want to have some properties that will have the same name on each runtime environment but different values. For example, let's say we have a property named NOTES_CONTENT_SERVER which will contain a different server name on DEV, QA and PROD.
Please ask if this question is not clear.
Thanks in advance for any help.
David.

Start the config tool, then in the tree structure in the left hand pane navigate to: cluster-data > instance_XXXXX > server_IDXXXXX (highlight this node).
In the General tab that will appear in the right hand pane you will see a label titled "Java parameters:" with a corresponding text field where you can enter all your JVM parameters. Add your global parameter like so "-Dmy.global.prop=blah".
Save your settings, and restart the cluster, you can then lookup the property in your code: System.getProperty("my.global.prop");
Of cousre you could have learned how to set JVM properties with the config tool on the SAP help site here:
http://help.sap.com/saphelp_nw2004s/helpdata/en/4e/d1cf8d09a94ae79319893c2537d3a0/frameset.htm

Similar Messages

  • How to set JVM system properties in Oracle Portal ??

    Hello Guys,
    I want to set javax.net.ssl.trustStore="path to keystore" ,JVM system properties on oracle portal,
    Like i want to configure my keystore with oracle portal so that my application can make a success full connection with back end using https.
    i read the following note from one of the Oracle tech note,which says that
    It is important that this system property is passed as a command line option to Oracle Application Server Containers for J2EE (OC4J). Setting the property in oc4j.properties will not help because the system property is read first before OC4J reads this file. Therefore, it is best to modify the <java-option> line in the OC4J_portal section of ORACLE_HOME/opmn/conf/opmn.xml.
    So, i made the required changes to OC4J_portal section of opmn.xml file as below
    added value is shown in bold
    <data id="java-options" value="-server -Xrs -Djava.security.policy=C:\oracle\OraPortal\j2ee\OC4J_Portal\config\java2.policy -Djava.awt.headless=true -Xmx256m -Djavax.net.ssl.trustStrore=C:\keystore1 -Djavax.net.ssl.trustStrorePassword=password1"/>
    Even after making these changes, my application not able to make connection using https.
    Could u guys explain me, what things are going wrong or somethings else i need to do to make it work.
    Any thoughts would be highly appreciated.
    Thanks
    <Neeraj Sidhaye/>
    http://ExtremePortal.blog.co.uk

    Hello Guys,
    I want to set javax.net.ssl.trustStore="path to
    keystore" ,JVM system properties on oracle
    portal,
    -Xmx256m -Djavax.net.ssl.trustStrore=C:\keystore1
    -Djavax.net.ssl.trustStrorePassword=password1"/>Hi,
    if the above is an exact copy of the values you inserted then it looks like you have two typos in the command line parameters.
    -Djavax.net.ssl.trustStrore -> trustStore
    -Djavax.net.ssl.trustStrorePassword -> trustStorePassword

  • How do I set System properties within WL6.0?

    I am setting WL6.0 up to have a startup class, but this class needs to
    read system properties which have not yet been set. How do I set these
    up within weblogic? I was able to get the startup class set up, but it
    needs these system properties to continue.
    gmo

    Correct on all points. The one advantage of doing this in java is that you can more easily do more
    complex things like accessing configuration information from a remote data store (like a database).
    Dimitri Rakitine wrote:
    These are not needed if you simply replace java ...lots of options... weblogic.Server with
    java ...lots of options... startmyWLS in the script which starts WebLogic, but, on the other
    hand, this solution is no different from simply adding -DmyProperty=myValue to the startup script
    (I think that the ultimate goal is the ability to deploy(and redeploy!) components,
    without any mods to the particular vendor's startup scripts of anything of that nature).
    Kumar Allamraju <[email protected]> wrote:
    Thanks to robert for a quick workaround..
    I tried to start the WLS with the following piece of code and actually i need to set
    some additional properties
    for successful server startup.
    Here it is
    import java.util.Properties;
    public class startmyWLS
    public static void main(String[] args)
    Properties props = System.getProperties();
    props.put("myProperty", "myValue");
    props.put("bea.home", "E:\\bea");
    props.put("weblogic.Domain", "mydomain");
    props.put("weblogic.Name", "myserver");
    props.put("java.security.policy",
    "E:\\bea\\wlserver6.0\\lib\\weblogic.policy");
    System.setProperties(props);
    weblogic.Server.main(args);
    Make sure you run this from E:\bea\wlserver6.0., as it tries to read config.xml
    config\[your-domain-name] from this
    directory.
    Kumar
    Robert Patrick wrote:
    import java.util.Properties;
    public class StartMyWebLogicServer
    public static void main(String[] args)
    Properties props = System.getProperties();
    props.put("myProperty", "myValue")
    System.setProperties(props);
    weblogic.Server.main(args);
    gmo wrote:
    That won't work since it has to be 'outside' of the code. It's a service, and
    services are started when weblogic is started up, not when I call a bean.
    And it has to be dynamic, since the properties will vary on evry installation.
    Robert Patrick wrote:
    You can also use System.setProperty() or a combination of
    System.getProperties() followed by a System.setProperties()...
    gmo wrote:
    They are not normal system properties. I'm using some open source code, and
    it requires settings to be system properties, but they are specific to the
    application, which means that they are not already in the system
    properties. I know how to get them, and after some more research, you can
    set them on the command line when starting up weblogic. However, is this
    the best way to set system properties?
    Robert Patrick wrote:
    What "system properties" are you trying to find?
    gmo wrote:
    I am setting WL6.0 up to have a startup class, but this class needs to
    read system properties which have not yet been set. How do I set these
    up within weblogic? I was able to get the startup class set up, but it
    needs these system properties to continue.
    gmo
    Dimitri

  • System.properties (what is the scope in memory)

    Does each JVM have it's own System properties? Hence calls from one JVM System.getProperty() or System.setProperty() should be within each individual JVM? Also I need to know this so that I can gurantee that using the System properties for private information won't be accessed by anyone else on the system... Any input?

    System properties are unique for each VM, they are therefore visible to all code running in the VM.
    This seems like a good thing to use for storing things like passwords because of the global visibility however using the System properties for storing such things has to be considered as being insecure.
    System properties should be regarded as a place to read data from that is relevant for either the Java runtime environment or for setting component specific properties, XML Parsers make use of this for example. Using System properties as an in memory database is neither secure nor sensible. Careless selection of keys for the properties you wish to store can have unexpected results if you accidentally overwrite a property that is used for other purposes.
    I would use a separate Properties instance that has nothing to do with the System properties and I would also recommend the encryption of sensitive data like passwords.

  • Setting System properties and classpath at boot

    Hi all,
    I'm pretty new to weblogic and I'd need to set some system properties and classpath definitions for my servers at boot. Can I set them via the Administration console or just adding them to the startWeblogic/startManagedWeblogic using the standard -cp and -D flags ?
    I've found in the Console, there's the Server Boot properties. However adding them there didn't work. Correct me if I'm wrong, this option can be used ONLY when starting the servers from the Node Manager ?
    Thanks
    Frank

    Hi Frank,
    You are right!!!!
    But you can set them with in setDomainEnv file under java_option.
    Please set under
    Unix
    JAVA_OPTION = "${JAVA_OPTION} -DXXXXX"
    In Windows
    set JAVA_OPTION = %JAVA_OPTION% -DXXXXX
    Hope this will help you.
    Regards,
    Kal

  • Getting Error: cluster ip address not added to tcpip properties

    I have 2 2008 R2 physical servers on the same subnet and they have been using NLB for the past 1.5 years.  We had a firewall issue and I took one of the servers out of the cluster to do testing, while the other main server (priority 1) was left serving
    up the virtual IPs. The main server continues to work properly.
    The servers have 2 NICs, one for NLB and one just for regular traffic.  The NICs also have their own IP addresses and then there is a cluster IP and 2 virtual IPs.
    Error:
    When I try and add the second server to the cluster, I first connect to existing cluster which works fine.  Then I do a Add Host to Cluster, and type the name of the server and select the NLB NIC.  It sees the other server and it seems to start
    the process, however soon after the NLB NIC goes to having internet access to a "enabled" state and the gateway gets taken out of the settings.  I try to add it back, but as soon as I get out of the settings it disappears again.  NLB manager
    tells me: cluster ip address (192.#.#.#) not added to tcpip properties.  It lists this error 4 times, once for each IP (2 virtual, 1 cluster, and then once for the dedicated NLB NIC IP).  I have also tried adding all virtual IPs to the NLB NIC's
    settings and still same exact error.  Registry: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Parameters\Interfaces    -even reg looks good.
    Any help would be appreciated.  If I can't get any resolution my next step is going to be to delete the NLB cluster on the main server and recreate it....but this requires downtime and got to make sure it comes back up!

    Hi,
    You can find out the log of the event, then refer the following KB to future troubleshoot.
    Network Adapter Functionality
    http://technet.microsoft.com/en-us/library/cc726411.aspx
    More information:
    Dual-NIC NLB Configuration with Windows Server 2008 NLB Clusters
    http://blogs.technet.com/b/networking/archive/2008/11/20/balancing-act-dual-nic-configuration-with-windows-server-2008-nlb-clusters.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • URGENT: Passing system properties to individual thread processes

    Hi:
    I'm trying to invoke multiple java Servers from a Controller class to enable starting all the servers in a single JVM. The code is shown below:
    public class Controller {
    /** Creates new Controller */
    public Controller() {
    * @param args the command line arguments
    public static void main(String args[]) {
    (new Thread(new Runnable() {
    public void run() {
    ChatServerRMI.Server.main(null);
    })).start();
    (new Thread(new Runnable() {
    public void run() {
    LoginService.LoginServerBaseImpl.main(null);
    })).start();
    However I want to pass system properties/arguments to each main() call. Can someone please explain me how this can be done.....ur help will be appreciated with D$s!
    Thanks in advance.

    If by "system properties" you mean the system properties accessible by System.getProperty("user.dir") and the like, you don't have to do anything to make those available to the threads. They are global and any piece of code can access them.
    If you want to pass arguments to the various "main" methods as if they had been typed at the command line, you just make an array of strings with those arguments and use it as the parameter. For example:ChatServerRMI.Server.main(new String[] {"-port" "2023"});And if you don't want to pass any parameters, do it like this:String[] nothing = new String[0];
    LoginService.LoginServerBaseImpl.main(nothing);

  • How to find out System properties are available

    Hello,
    Is there a way to get a list of the properties that are available 'out-of-the-box' on Netweaver via the System.getProperty("xxx") method?
    In other words, can I get a list of the possible values for "xxx"?
    I know I can add my own properties but I'm more interested in finding out what is available to me by default. What I'm looking for may already be there. Plus, this list would tell me what constant NOT to use if I'm adding my own property.
    Thanks in advance for any help.
    David.

    David, System class has method getProperties which returns instance of Properties (http://java.sun.com/j2se/1.4.2/docs/api/java/util/Properties.html). Iterate through it using propertyNames() and you will get all system properties available.
    Best regards, Maksim Rashchynski.

  • Where do I read in the documentation the list of the system properties?

    Yep. Sounds stupid. But it's true. I read in all these forums where and how to set the truststore and so on but it would be beautiful to understand it my own.
    1. First I read setting the -Djavax.net.ssl.trustStore in the VM arguments.
    2. Then I find out the the -D is just for setting something like a static property.
    3. Next I want to read about the system properties. Who, what and where the Java tries to get this system property. I do not find it.
    What I find is great help in these forums and solving this kind of problems seems easy... I googled and the only place I found info about this is in a boulder.ibm.com site:
    http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzaha/sysprop2.htm
    http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzaha/rzahajssesysprops.htm
    I also found some info on a sun tutorial but not an official documentation. Do you know where to find it? It seems that my learning is always about finding the right place to find information and not guessing and trying.
    Thanks!!

    Thanks for your soon reply. Yeah, I found that but I really was expecting a more serious documentation.
    I have to admit that it is documented. Yes. But I didn't expect to find that in middle of a guide. But more in a reference or in a specification document. It's inside the "Customization" and in a table, yes... But it's a guide!!
    I like Java but something to worry about is the "too many - too less" documentation. Documentation is not clear enough and all the hundreds of options you have can make the programming with Java no good. It would sound like a good thing have a lot of choices and hundreds of places to look info for but I am a bit disappointed with that. It's not clear enough to find the right info.
    Anyway, thanks a lot for your help!! I will have to live with that.
    Guide: http://java.sun.com/j2se/1.5.0/docs/guide/security/jsse/JSSERefGuide.html

  • Error while trying to open an added backend system in portal

    Hi All,
    I need one help.
    I have added our Backend SAP SRM system in the Enterprise portal and it worked good.
    But now if I try to open the added SRM system in the below path
    System Administration à System Configuration à System Landscape -> portal contents -> system backends -> MY SRM(added system)
    I am facing the error page cannot be displayed error as below
    The page cannot be displayed
    Explanation: There is a problem with the page you are trying to reach and it cannot be displayed.
    Try the following:
    u2022     Refresh page: Search for the page again by clicking the Refresh button. The timeout may have occurred due to Internet congestion.
    u2022     Check spelling: Check that you typed the Web page address correctly. The address may have been mistyped.
    u2022     Access from a link: If there is a link to the page you are looking for, try accessing the page from that link.
    Technical Information (for support personnel)
    u2022     Error Code: 500 Internal Server Error. The request was rejected by the HTTP filter. Contact the server administrator. (12217)
    Please help me to solve it, Thanks a advance.
    Thanks,
    Senthil

    Hi,
    Are you using any webdispatcher or some proxy? Is there any URL filter configured in between?
    If yes then I think you have to allow these pages.
    Regards,
    Vamshi.

  • System Properties user.timzone different between dev. and prod. system

    Hi all,
    I am facing the following issue:
    In our development system I get in http://<server:port>/sap/monitoring/SystemProperties -> dispatcher -> system properties a Europe/Berlin for user.timezone.
    In our productive system I get in http://<server:port>/sap/monitoring/SystemProperties -> dispatcher -> system properties a GMT for user.timezone.
    Can anybody explain which system property is requested by the J2EE-engine when calling this property?
    I ask, because I wrote a small programm requesting the user.property via java (expecting j2ee-engine would do that too) an got back an empty string (on both systems).
    So, how/where can I change the parameter, so that the development system uses GMT, too?
    I already checked the spro settings in sap, they are identical. System -> status showes the same for both systems, too.
    I hope for your help.
    Thanks and regards
    Christian

    Hello Chris,
    I checked the system variables with TA SM51 ->goto -> server -> information -> environment.
    There is nothing like the TZ variable on both systems (we use Linux).
    Do you have an other idea?
    How can I change the user.timezone shown in Java system properties?
    Regards
    Christian

  • How to access System properties in xml file

    hi,
    i want to read system properties in my xml file using ${} .
    I tried it but did not find any way.But when i use log4j if i set some variable in
    System properties that properties is read by the log4j.properties .
    I am writing a simple program that read a xml properties file file
    try {
                props   = new Properties();
                fis     = new FileInputStream(xmlFile);
                props.loadFromXML(fis);
    }before reading this file i set some properties and accessing this properties from that xml .but i cant.
    Thanks

    sabre150 wrote:
    fun_with_java wrote:
    can you give some example?Not really - I would have to write the code for you and I'm not getting paid for writing your code.Thanks for your kindness.
    I dont ask you to write the code.Need some help to start it .Actually i dont have knowledge that
    whether xml file automatically read it or i have prase the system property manually. Now i got the way to
    access system property in xml..
    Ok thanks again..
    Thanks & Regards

  • How are the java system properties loaded into the Oracle 8.1.7

    I have listed the java system properties both standalone and in the Oracle database. The standard list of system properties is quite extensive and informative. But the list of system properties from the Oracle database is severely truncated.
    I expect these properties are initialized on database startup.
    If that is the case, I expect there to be a file and initialization parameters that define where the information is kept and there values.
    Can anyone give me some guidance?

    System*.properties file should be located in the $ORACLE_HOME/javavm/jahome directory
    I have listed the java system properties both standalone and in the Oracle database. The standard list of system properties is quite extensive and informative. But the list of system properties from the Oracle database is severely truncated.
    I expect these properties are initialized on database startup.
    If that is the case, I expect there to be a file and initialization parameters that define where the information is kept and there values.
    Can anyone give me some guidance?

  • Java system properties in the command line...

    Is it possible to know (at run-time) which system properties have been specified in the command line (using the -Dprop=value argument)?
    Actually I would like to avoid people running the JVM and using my program overwriting the user.name property.
    Thanks
    Lionel

    Why use JNI? That's a little overkill. Just use args[] in main.
    public static void main( String args[] ) {
    for( int i = 0; i < args.length; i++ ) {
    if( args.startsWith("-Duser.name=") ) {
    System.out.println( "Well " + args[i].substring("-Duser.name=".length) + " you're not who you say you are!" );
    System.exit(-1);

  • RAM not showing up in system properties

    I have 3GB installed on my OLD Windows XP
    I have noticed lately that when I checked my System Properties it only says 2GB.
    But HWINFO32 shows 3GB
    I ran memtest86 to see if my ram was failing but it passed.
    Any ideas on why it only shows 2GB.
    I have an Nvidia 9800 1024MB graphics card if for some reason that is subtracting from my total.
    Thanks:  GLenn

    I have saved the DXDIAG file and uploaded it.
    Does anyone think I should replace the CMOS battery ?
    I have not had any problems with my time not working or it turning off and no warnings ?
    Also, I have ordered 4 new 1GB Ram sticks so they are all the same speed.
    My 2 512's are the slowest and the new ones will be faster then the 2 1GB ones I have there now.
    I will pick up a can of air and clean out the unit too since its been over a year since I dusted it off.
    Thanks:  GLenn
    I will paste the info below too.
    System Information
    Time of this report: 2/17/2010, 10:58:48
           Machine name: BODY-2720725174
       Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.091208-2036)
               Language: English (Regional Setting: English)
    System Manufacturer: Dell Inc.               
           System Model: Dimension XPS               
                   BIOS: Phoenix ROM BIOS PLUS Version 1.10 A07
              Processor: Intel(R) Pentium(R) 4 CPU 3.40GHz (2 CPUs)
                 Memory: 2048MB RAM
              Page File: 703MB used, 3239MB 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: NVIDIA GeForce 9800 GT
         Manufacturer: NVIDIA
            Chip type: GeForce 9800 GT
             DAC type: Integrated RAMDAC
           Device Key: Enum\PCI\VEN_10DE&DEV_0605&SUBSYS_0606196E&REV_A2
       Display Memory: 1024.0 MB
         Current Mode: 1600 x 900 (32 bit) (60Hz)
              Monitor: Dell S2209W(Digital)
      Monitor Max Res: 1920,1080
          Driver Name: nv4_disp.dll
       Driver Version: 6.14.0011.9621 (English)
          DDI Version: 9 (or higher)
    Driver Attributes: Final Retail
    Driver Date/Size: 1/11/2010 20:03:33, 6359168 bytes
          WHQL Logo'd: Yes
      WHQL Date Stamp: n/a
                  VDD: n/a
             Mini VDD: nv4_mini.sys
        Mini VDD Date: 1/11/2010 20:03:33, 10276768 bytes
    Device Identifier: {D7B71E3E-4545-11CF-4B5F-0D2603C2CB35}
            Vendor ID: 0x10DE
            Device ID: 0x0605
            SubSys ID: 0x0606196E
          Revision ID: 0x00A2
          Revision ID: 0x00A2
          Video Accel: ModeMPEG2_C ModeMPEG2_D
    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
                       {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,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,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)=(YV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,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)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                       {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
             Registry: OK
         DDraw Status: Enabled
           D3D Status: Enabled
           AGP Status: Enabled
    DDraw Test Result: Not run
    D3D7 Test Result: Not run
    D3D8 Test Result: Not run
    D3D9 Test Result: Not run
    Sound Devices
                Description: SB Audigy 2 ZS Audio [C8C0]
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: PCI\VEN_1102&DEV_0004&SUBSYS_20061102&REV_04
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: ctaud2k.sys
             Driver Version: 6.00.0001.1241 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 4/10/2007 03:20:38, 520488 bytes
                Other Files:
            Driver Provider: Creative
             HW Accel Level: Full
                  Cap Flags: 0xF5F
        Min/Max Sample Rate: 4000, 192000
    Static/Strm HW Mix Bufs: 64, 61
    Static/Strm HW 3D Bufs: 64, 61
                  HW Memory: 0
           Voice Management: Yes
    EAX(tm) 2.0 Listen/Src: Yes, Yes
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                   Registry: OK
          Sound Test Result: Not run
    Sound Capture Devices
                Description: AK5370         
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: usbaudio.sys
             Driver Version: 5.01.2600.5512 (English)
          Driver Attributes: Final Retail
              Date and Size: 4/13/2008 10:45:12, 60032 bytes
                  Cap Flags: 0x41
               Format Flags: 0x444
                Description: SB Audigy 2 ZS Audio [C8C0]
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: ctaud2k.sys
             Driver Version: 6.00.0001.1241 (English)
          Driver Attributes: Final Retail
              Date and Size: 4/10/2007 03:20:38, 520488 bytes
                  Cap Flags: 0x41
               Format Flags: 0xFFF
    DirectMusic
            DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS
         DLS Version: 1.00.0016.0002
        Acceleration: Enabled
               Ports: SB Audigy 2 ZS DirectMusic Synthesizer [C8C0], Hardware (Kernel Mode), Output, DLS, Internal, Default Port
                      SB Audigy 2 ZS Audio [C8C0], Software (Kernel Mode), Output, DLS, Internal
                      Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
                      SB Audigy 2 ZS Synth A [C8C0] [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
                      SB Audigy 2 ZS Synth B [C8C0] [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
                      SB Audigy 2 ZS MIDI IO [C8C0] [Emulated], Hardware (Not Kernel Mode), Output, No DLS, External
                      Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
                      SB Audigy 2 ZS MIDI IO [C8C0] [Emulated], Hardware (Not Kernel Mode), Input, No DLS, External
                      Microsoft Synthesizer, Software (Not Kernel Mode), Output, 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
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC509
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC509
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC509
            FF Driver: n/a
          Device Name: Lycosa Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x0109
            FF Driver: n/a
          Device Name: Lycosa Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x0109
            FF Driver: n/a
    Poll w/ Interrupt: No
             Registry: OK
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x265B
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 4/13/2008 10:45:38, 59520 bytes
    | Driver: usbd.sys, 8/10/2004 04:00:00, 4736 bytes
    Gameport Devices
    + Intel(R) 82801 PCI Bridge - 244E
    | Location: PCI bus 0, device 30, function 0
    | Matching Device ID: pci\ven_8086&dev_244e
    | Service: pci
    | Driver: pci.sys, 4/13/2008 10:36:44, 68224 bytes
    |
    +-+ Creative Game Port
    | | Location: PCI bus 4, device 1, function 1
    | | Matching Device ID: pci\ven_1102&dev_7003&subsys_00401102
    | | Service: gameenum
    | | Driver: gameenum.sys, 4/13/2008 10:45:29, 10624 bytes
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC509
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 4/13/2008 10:39:48, 14592 bytes
    | Driver: kbdclass.sys, 4/13/2008 10:39:47, 24576 bytes
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x0109
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 4/13/2008 10:39:48, 14592 bytes
    | Driver: kbdclass.sys, 4/13/2008 10:39:47, 24576 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: termdd.sys, 4/13/2008 16:13:20, 40840 bytes
    | Driver: kbdclass.sys, 4/13/2008 10:39:47, 24576 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC509
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouclass.sys, 4/13/2008 10:39:47, 23040 bytes
    | Driver: mouhid.sys, 8/10/2004 04:00:00, 12160 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 4/13/2008 16:13:20, 40840 bytes
    | Driver: mouclass.sys, 4/13/2008 10:39:47, 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: Intel(R) 537EP V9x DF PCI Modem
    DirectPlay8 Serial Service Provider: COM1
    DirectPlay8 TCP/IP Service Provider: Local Area Connection 3 - 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: 899.0 GB
    Total Space: 953.9 GB
    File System: NTFS
          Model: WDC WD1001FALS-00J7B0
          Drive: F:
    Free Space: 114.2 GB
    Total Space: 476.9 GB
    File System: NTFS
          Model: WDC WD5000AAKS-00YGA0
          Drive: G:
    Free Space: 154.0 GB
    Total Space: 305.2 GB
    File System: NTFS
          Model: WDC WD3200KS-00PFB0
          Drive: D:
          Model: HL-DT-ST CD-RW GCE-8483B
         Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/13/2008 10:40:46, 62976 bytes
          Drive: E:
          Model: _NEC DVD+-RW ND-3450A
         Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/13/2008 10:40:46, 62976 bytes
    System Devices
         Name: Intel(R) 82801FB/FBM Ultra ATA Storage Controllers - 266F
    Device ID: PCI\VEN_8086&DEV_266F&SUBSYS_01761028&REV_03\3&172E68DD&0&F9
       Driver: C:\WINDOWS\system32\DRIVERS\pciide.sys, 5.01.2600.0000 (English), 8/17/2001 12:51:52, 3328 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.5512 (English), 4/13/2008 10:40:30, 24960 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.5512 (English), 4/13/2008 10:40:30, 96512 bytes
         Name: Intel(R) 82801FB/FBM SMBus Controller - 266A
    Device ID: PCI\VEN_8086&DEV_266A&SUBSYS_01761028&REV_03\3&172E68DD&0&FB
       Driver: n/a
         Name: Intel(R) 82801FB/FBM PCI Express Root Port - 2662
    Device ID: PCI\VEN_8086&DEV_2662&SUBSYS_00000000&REV_03\3&172E68DD&0&E1
       Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/13/2008 10:36:44, 68224 bytes
         Name: Intel(R) 82801FB/FBM PCI Express Root Port - 2660
    Device ID: PCI\VEN_8086&DEV_2660&SUBSYS_00000000&REV_03\3&172E68DD&0&E0
       Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/13/2008 10:36:44, 68224 bytes
         Name: Intel(R) 82801FB/FBM USB2 Enhanced Host Controller - 265C
    Device ID: PCI\VEN_8086&DEV_265C&SUBSYS_01761028&REV_03\3&172E68DD&0&EF
       Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 30208 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 16:12:08, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:38, 59520 bytes
       Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.5512 (English), 4/13/2008 16:11:54, 7168 bytes
         Name: Intel(R) 82801FB/FBM USB Universal Host Controller - 265B
    Device ID: PCI\VEN_8086&DEV_265B&SUBSYS_01761028&REV_03\3&172E68DD&0&EB
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 16:12:08, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:38, 59520 bytes
         Name: Intel(R) 82801FB/FBM USB Universal Host Controller - 265A
    Device ID: PCI\VEN_8086&DEV_265A&SUBSYS_01761028&REV_03\3&172E68DD&0&EA
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 16:12:08, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:38, 59520 bytes
         Name: Intel(R) 82801FB/FBM USB Universal Host Controller - 2659
    Device ID: PCI\VEN_8086&DEV_2659&SUBSYS_01761028&REV_03\3&172E68DD&0&E9
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 16:12:08, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:38, 59520 bytes
         Name: Intel(R) 82801FB/FBM USB Universal Host Controller - 2658
    Device ID: PCI\VEN_8086&DEV_2658&SUBSYS_01761028&REV_03\3&172E68DD&0&E8
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:36, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 16:12:08, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:38, 59520 bytes
         Name: Intel(R) 82801FR SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_2652&SUBSYS_01761028&REV_03\3&172E68DD&0&FA
       Driver: C:\WINDOWS\system32\DRIVERS\iaStor.sys, 5.00.0001.1001 (English), 4/25/2005 08:28:14, 871040 bytes
         Name: Intel(R) 82801FB LPC Interface Controller - 2640
    Device ID: PCI\VEN_8086&DEV_2640&SUBSYS_00000000&REV_03\3&172E68DD&0&F8
       Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.5512 (English), 4/13/2008 10:36:42, 37248 bytes
         Name: Intel(R) 925X/XE PCI Express Root Port - 2585
    Device ID: PCI\VEN_8086&DEV_2585&SUBSYS_00000000&REV_04\3&172E68DD&0&08
       Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/13/2008 10:36:44, 68224 bytes
         Name: Intel(R) 925X/XE Memory Controller Hub - 2584
    Device ID: PCI\VEN_8086&DEV_2584&SUBSYS_00000000&REV_04\3&172E68DD&0&00
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_00000000&REV_D3\3&172E68DD&0&F0
       Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/13/2008 10:36:44, 68224 bytes
         Name: Intel(R) 537EP V9x DF PCI Modem
    Device ID: PCI\VEN_8086&DEV_1080&SUBSYS_10001028&REV_04\4&10416D21&0&18F0
       Driver: C:\WINDOWS\system32\DRIVERS\IntelC51.sys, 2.15.0025.0000 (English), 11/20/2003 14:13:40, 1232741 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\IntelC52.sys, 4.58.0005.0000 (English), 11/20/2003 14:14:28, 646825 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\IntelC53.sys, 2.15.0025.0000 (English), 11/20/2003 14:12:56, 59717 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\mohfilt.sys, 7.11.0000.0000 (English), 11/20/2003 14:12:42, 37048 bytes
       Driver: C:\WINDOWS\system32\intelmoh.dll, 1.00.0000.0000 (English), 11/20/2003 14:12:28, 172032 bytes
       Driver: C:\WINDOWS\system32\mhwt.dll, 1.00.0000.0000 (English), 11/20/2003 14:12:14, 53248 bytes
       Driver: C:\WINDOWS\system32\IntelCc2.dll, 2.02.0000.0002 (English), 11/20/2003 14:11:58, 32725 bytes
         Name: Broadcom NetXtreme Gigabit Ethernet
    Device ID: PCI\VEN_14E4&DEV_1677&SUBSYS_167714E4&REV_00\4&1D7EFF9E&0&00E0
       Driver: n/a
         Name: Creative Game Port
    Device ID: PCI\VEN_1102&DEV_7003&SUBSYS_00401102&REV_04\4&10416D21&0&09F0
       Driver: C:\WINDOWS\system32\drivers\gameenum.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:29, 10624 bytes
         Name: OHCI Compliant IEEE 1394 Host Controller
    Device ID: PCI\VEN_1102&DEV_4001&SUBSYS_00101102&REV_04\4&10416D21&0&0AF0
       Driver: C:\WINDOWS\system32\DRIVERS\ohci1394.sys, 5.01.2600.5512 (English), 4/13/2008 10:46:18, 61696 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\1394bus.sys, 5.01.2600.5512 (English), 4/13/2008 10:46:18, 53376 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\nic1394.sys, 5.01.2600.5512 (English), 4/13/2008 10:51:25, 61824 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\arp1394.sys, 5.01.2600.5512 (English), 4/13/2008 10:51:25, 60800 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\enum1394.sys, 5.01.2600.0000 (English), 8/17/2001 05:46:40, 6400 bytes
         Name: Creative SB Audigy 2 ZS (WDM)
    Device ID: PCI\VEN_1102&DEV_0004&SUBSYS_20061102&REV_04\4&10416D21&0&08F0
       Driver: C:\WINDOWS\system32\ksuser.dll, 5.03.2600.5512 (English), 4/13/2008 16:11:56, 4096 bytes
       Driver: C:\WINDOWS\system32\ksproxy.ax, 5.03.2600.5512 (English), 4/13/2008 16:12:42, 129536 bytes
       Driver: C:\WINDOWS\system32\drivers\ks.sys, 5.03.2600.5512 (English), 4/13/2008 11:16:36, 141056 bytes
       Driver: C:\WINDOWS\system32\drivers\drmk.sys, 5.01.2600.5512 (English), 4/13/2008 10:45:14, 60160 bytes
       Driver: C:\WINDOWS\system32\drivers\portcls.sys, 5.01.2600.5512 (English), 4/13/2008 11:19:42, 146048 bytes
       Driver: C:\WINDOWS\system32\drivers\stream.sys, 5.03.2600.5512 (English), 4/13/2008 10:45:16, 49408 bytes
       Driver: C:\WINDOWS\system32\wdmaud.drv, 5.01.2600.5512 (English), 4/13/2008 16:12:45, 23552 bytes
       Driver: C:\WINDOWS\system32\drivers\ctac32k.sys, 6.00.0001.1241 (English), 4/10/2007 03:19:30, 511272 bytes
       Driver: C:\WINDOWS\system32\drivers\ctaud2k.sys, 6.00.0001.1241 (English), 4/10/2007 03:20:38, 520488 bytes
       Driver: C:\WINDOWS\system32\drivers\ctoss2k.sys, 6.00.0001.1241 (English), 4/10/2007 04:59:04, 126760 bytes
       Driver: C:\WINDOWS\system32\drivers\ctprxy2k.sys, 6.00.0001.1241 (English), 4/10/2007 03:25:46, 14632 bytes
       Driver: C:\WINDOWS\system32\drivers\ctsfm2k.sys, 6.00.0001.1241 (English), 4/10/2007 05:00:24, 157480 bytes
       Driver: C:\WINDOWS\system32\drivers\emupia2k.sys, 6.00.0001.1241 (English), 4/10/2007 03:28:36, 92968 bytes
       Driver: C:\WINDOWS\system32\drivers\ha10kx2k.sys, 6.00.0001.1241 (English), 4/10/2007 03:29:10, 797992 bytes
       Driver: C:\WINDOWS\system32\drivers\haP16v2k.sys, 6.00.0001.1241 (English), 4/10/2007 03:31:18, 163112 bytes
       Driver: C:\WINDOWS\system32\drivers\haP17v2k.sys, 6.00.0001.1241 (English), 4/10/2007 03:32:06, 189736 bytes
       Driver: C:\WINDOWS\system32\drivers\ha20x2k.sys, 5.12.0001.1241 (English), 4/10/2007 05:03:12, 1164072 bytes
       Driver: C:\WINDOWS\system32\drivers\pfmodnt.sys, 3.00.0000.0012 (English), 4/10/2007 03:32:34, 16168 bytes
       Driver: C:\WINDOWS\system32\ctdlang.dat, 11/25/2003 20:29:54, 127226 bytes
       Driver: C:\WINDOWS\system32\ctdnlstr.dat, 4/9/2007 11:24:30, 46273 bytes
       Driver: C:\WINDOWS\system32\ctstatic.dat, 4/9/2007 11:19:20, 313207 bytes
       Driver: C:\WINDOWS\system32\ctdaught.dat, 4/9/2007 11:19:20, 53932 bytes
       Driver: C:\WINDOWS\system32\ctzapxx.ini, 4/9/2007 11:55:14, 54 bytes
       Driver: C:\WINDOWS\system32\instwdm.ini, 4/9/2007 11:55:14, 97785 bytes
       Driver: C:\WINDOWS\system32\kill.ini, 10/2/2006 08:25:18, 307 bytes
       Driver: C:\WINDOWS\system32\CT1MGM.ROM, 2/25/2000 03:49:36, 1048576 bytes
       Driver: C:\WINDOWS\system32\CT2MGM.SF2, 9/22/1999 14:18:38, 2167684 bytes
       Driver: C:\WINDOWS\system32\default4.sfm, 1/3/2002 06:44:16, 59 bytes
       Driver: C:\WINDOWS\system32\default8.sfm, 1/3/2002 06:44:16, 59 bytes
       Driver: C:\WINDOWS\system32\default.sfm, 1/3/2002 06:44:16, 59 bytes
       Driver: C:\WINDOWS\Temp\ctpxinst.exe, , 0 bytes
       Driver: C:\WINDOWS\Temp\cttele.dll, , 0 bytes
       Driver: C:\WINDOWS\system32\COMMONFX.DLL, 6.00.0001.1241 (English), 4/18/2007 07:59:40, 98600 bytes
       Driver: C:\WINDOWS\system32\CTAUDFX.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:16, 546048 bytes
       Driver: C:\WINDOWS\system32\CTSBLFX.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:16, 560384 bytes
       Driver: C:\WINDOWS\system32\CTEAPSFX.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:18, 168192 bytes
       Driver: C:\WINDOWS\system32\CTEDSPFX.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:20, 280320 bytes
       Driver: C:\WINDOWS\system32\CTERFXFX.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:20, 94976 bytes
       Driver: C:\WINDOWS\system32\CTEDSPIO.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:22, 128768 bytes
       Driver: C:\WINDOWS\system32\CTEDSPSY.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:22, 323328 bytes
       Driver: C:\WINDOWS\system32\CTEXFIFX.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:24, 1317632 bytes
       Driver: C:\WINDOWS\system32\CT20XUT.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:26, 164608 bytes
       Driver: C:\WINDOWS\system32\CTHWIUT.DLL, 6.00.0001.1241 (English), 4/12/2007 07:10:26, 66816 bytes
       Driver: C:\WINDOWS\system32\regplib.exe, 4/9/2007 11:21:44, 48128 bytes
       Driver: C:\WINDOWS\system32\a3d.dll, 80.00.0000.0003 (English), 4/9/2007 11:32:58, 34816 bytes
       Driver: C:\WINDOWS\system32\ac3api.dll, 6.00.0001.1242 (English), 4/9/2007 11:32:46, 27648 bytes
       Driver: C:\WINDOWS\system32\ctosuser.dll, 6.00.0001.1241 (English), 4/9/2007 11:21:50, 137728 bytes
       Driver: C:\WINDOWS\system32\ctemupia.dll, 6.00.0001.1241 (English), 4/9/2007 11:24:06, 110080 bytes
       Driver: C:\WINDOWS\system32\piaproxy.dll, 6.00.0001.1241 (English), 4/9/2007 11:21:42, 81920 bytes
       Driver: C:\WINDOWS\system32\ctdproxy.dll, 6.00.0001.1241 (English), 4/9/2007 11:22:00, 76800 bytes
       Driver: C:\WINDOWS\system32\ctagent.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:30, 8704 bytes
       Driver: C:\WINDOWS\system32\ctasio.dll, 6.00.0001.1241 (English), 4/9/2007 11:22:02, 79872 bytes
       Driver: C:\WINDOWS\system32\ctedasio.dll, 6.00.0001.1241 (English), 4/9/2007 11:22:04, 50176 bytes
       Driver: C:\WINDOWS\system32\ct_oal.dll, 6.00.0001.1241 (English), 4/9/2007 11:22:04, 205312 bytes
       Driver: C:\WINDOWS\system32\OALInst.exe, 1.09.0009.0000 (English), 11/22/2006 23:55:48, 782336 bytes
       Driver: C:\WINDOWS\system32\ctpxinst.exe, 1.01.0000.0058 (English), 11/14/2006 08:01:30, 58104 bytes
       Driver: C:\WINDOWS\system32\AddCat.exe, 0.00.0000.0001 (English), 4/9/2007 10:25:36, 48400 bytes
       Driver: C:\WINDOWS\system32\CTAPO32.UDA, 4/10/2007 05:11:58, 8009 bytes
       Driver: C:\WINDOWS\system32\APOMgrH.dll, 1.00.0020.0001 (English), 4/12/2007 07:10:28, 105728 bytes
       Driver: C:\WINDOWS\system32\ctthxcal.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:24, 69632 bytes
       Driver: C:\WINDOWS\system32\CTxfiBtn.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:34, 35840 bytes
       Driver: C:\WINDOWS\system32\CTxfiSpk.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:34, 46592 bytes
       Driver: C:\WINDOWS\system32\Ct20xspi.dll, 6.00.0001.1242 (English), 4/9/2007 11:29:30, 10752 bytes
       Driver: C:\WINDOWS\system32\CTxfispi.exe, 6.00.0001.1242 (English), 4/9/2007 11:29:28, 934400 bytes
       Driver: C:\WINDOWS\system32\Ctxfihlp.exe, 6.00.0001.1241 (English), 4/9/2007 11:32:32, 19968 bytes
       Driver: C:\WINDOWS\system32\Ctxfireg.exe, 6.00.0001.1242 (English), 4/9/2007 11:29:30, 43520 bytes
       Driver: C:\WINDOWS\system32\devreg.dll, 6.00.0001.1242 (English), 4/9/2007 11:19:02, 48640 bytes
       Driver: C:\WINDOWS\system32\eaxac3.dll, 1.01.0002.0000 (English), 7/11/2001 01:51:00, 77824 bytes
       Driver: C:\WINDOWS\system32\killapps.exe, 1.00.0000.0001 (English), 4/9/2007 11:19:16, 10240 bytes
       Driver: C:\WINDOWS\system32\ctpres.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:24, 9216 bytes
       Driver: C:\WINDOWS\system32\inres.dll, 1.00.0009.0000 (English), 4/9/2007 11:33:38, 11776 bytes
       Driver: C:\WINDOWS\system32\ctdcres.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:20, 10240 bytes
       Driver: C:\WINDOWS\system32\enlocstr.exe, 4/9/2007 11:19:18, 5120 bytes
       Driver: C:\WINDOWS\system32\psconv.exe, 4/9/2007 11:32:32, 37888 bytes
       Driver: C:\WINDOWS\system32\readreg.exe, 6.00.0001.1241 (English), 4/9/2007 11:32:36, 38400 bytes
       Driver: C:\WINDOWS\system32\ctmmep.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:28, 12800 bytes
       Driver: C:\WINDOWS\system32\ctmmactl.dll, 1.00.0001.0122 (English), 6/16/2005 09:17:16, 71680 bytes
       Driver: C:\WINDOWS\system32\CTpcmcia.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:30, 56832 bytes
       Driver: C:\WINDOWS\system32\CTBurst.dll, 1.00.0000.0024 (English), 4/9/2007 11:33:50, 43520 bytes
       Driver: C:\WINDOWS\system32\ctscal.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:22, 78336 bytes
       Driver: C:\WINDOWS\system32\ctspkhlp.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:30, 45568 bytes
       Driver: C:\WINDOWS\system32\ctdc0000.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:20, 227840 bytes
       Driver: C:\WINDOWS\system32\ctdc0001.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:22, 335872 bytes
       Driver: C:\WINDOWS\system32\ctdcifce.dll, 6.00.0001.1241 (English), 4/9/2007 11:32:22, 131072 bytes
       Driver: C:\WINDOWS\system32\CtHelper.exe, 6.00.0001.1241 (English), 4/9/2007 11:32:32, 19456 bytes
       Driver: C:\WINDOWS\system32\sfman32.dll, 6.00.0001.1241 (English), 4/9/2007 11:21:48, 22528 bytes
       Driver: C:\WINDOWS\system32\sfms32.dll, 6.00.0001.1241 (English), 4/9/2007 11:21:46, 130048 bytes
       Driver: C:\WINDOWS\system32\data\CT0060W.DAT, 4/9/2007 11:19:28, 235142 bytes
       Driver: C:\WINDOWS\system32\data\ctd20x.dat, 4/9/2007 11:19:20, 26783 bytes
       Driver: C:\WINDOWS\system32\data\CTEAPSW.DAT, 4/9/2007 11:19:36, 201502 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSP2W.DAT, 4/9/2007 11:19:58, 374041 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPHW.DAT, 4/9/2007 11:20:00, 348425 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPKW.DAT, 4/9/2007 11:19:58, 294775 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPLW.DAT, 4/9/2007 11:19:58, 294775 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPPW.DAT, 4/9/2007 11:20:00, 330665 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPTW.DAT, 4/9/2007 11:20:00, 270927 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPUW.DAT, 4/9/2007 11:20:00, 270927 bytes
       Driver: C:\WINDOWS\system32\data\CTEDSPW.DAT, 4/9/2007 11:19:50, 374041 bytes
       Driver: C:\WINDOWS\system32\data\CTP017AW.DAT, 4/9/2007 11:19:32, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017BW.DAT, 4/9/2007 11:19:34, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017CW.DAT, 4/9/2007 11:19:34, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017DW.DAT, 4/9/2007 11:19:34, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017EW.DAT, 4/9/2007 11:19:34, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017FW.DAT, 4/9/2007 11:19:34, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017GW.DAT, 4/9/2007 11:19:36, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP017HW.DAT, 4/9/2007 11:19:36, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTP046AW.DAT, 4/9/2007 11:21:30, 263802 bytes
       Driver: C:\WINDOWS\system32\data\CTP046BW.DAT, 4/9/2007 11:21:30, 263802 bytes
       Driver: C:\WINDOWS\system32\data\CTP046CW.DAT, 4/9/2007 11:21:30, 263802 bytes
       Driver: C:\WINDOWS\system32\data\CTP055AW.DAT, 4/9/2007 11:21:32, 264060 bytes
       Driver: C:\WINDOWS\system32\data\CTP0060W.DAT, 4/9/2007 11:19:28, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0061W.DAT, 4/9/2007 11:19:30, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0070W.DAT, 4/9/2007 11:19:38, 289409 bytes
       Driver: C:\WINDOWS\system32\data\CTP073AW.DAT, 4/9/2007 11:21:32, 265966 bytes
       Driver: C:\WINDOWS\system32\data\CTP0073W.DAT, 4/9/2007 11:19:38, 289409 bytes
       Driver: C:\WINDOWS\system32\data\CTP0090W.DAT, 4/9/2007 11:19:38, 276738 bytes
       Driver: C:\WINDOWS\system32\data\CTP0091W.DAT, 4/9/2007 11:19:42, 275169 bytes
       Driver: C:\WINDOWS\system32\data\CTP0092W.DAT, 4/9/2007 11:19:40, 276738 bytes
       Driver: C:\WINDOWS\system32\data\CTP0095W.DAT, 4/9/2007 11:19:44, 274587 bytes
       Driver: C:\WINDOWS\system32\data\CTP0100W.DAT, 4/9/2007 11:19:28, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0101W.DAT, 4/9/2007 11:19:30, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0102W.DAT, 4/9/2007 11:19:30, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0103W.DAT, 4/9/2007 11:19:32, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0105W.DAT, 4/9/2007 11:19:32, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0150W.DAT, 4/9/2007 11:19:26, 232158 bytes
       Driver: C:\WINDOWS\system32\data\CTP0161W.DAT, 4/9/2007 11:19:40, 275427 bytes
       Driver: C:\WINDOWS\system32\data\CTP0162W.DAT, 4/9/2007 11:19:40, 276738 bytes
       Driver: C:\WINDOWS\system32\data\CTP0170W.DAT, 4/9/2007 11:19:32, 235259 bytes
       Driver: C:\WINDOWS\system32\data\CTP0191W.DAT, 4/9/2007 11:19:40, 275169 bytes
       Driver: C:\WINDOWS\system32\data\CTP0192W.DAT, 4/9/2007 11:19:40, 276738 bytes
       Driver: C:\WINDOWS\system32\data\CTP0221W.DAT, 4/9/2007 11:19:30, 236189 bytes
       Driver: C:\WINDOWS\system32\data\CTP0222W.DAT, 4/9/2007 11:19:30, 236189 bytes
       Driver: C:\WINDOWS\system32\data\CTP0230W.DAT, 4/9/2007 11:19:42, 277159 bytes
       Driver: C:\WINDOWS\system32\data\CTP0231W.DAT, 4/9/2007 11:19:42, 275816 bytes
       Driver: C:\WINDOWS\system32\data\CTP0232W.DAT, 4/9/2007 11:19:42, 277159 bytes
       Driver: C:\WINDOWS\system32\data\CTP0238W.DAT, 4/9/2007 11:19:42, 275517 bytes
       Driver: C:\WINDOWS\system32\data\CTP0240W.DAT, 4/9/2007 11:19:44, 319070 bytes
       Driver: C:\WINDOWS\system32\data\CTP0242W.DAT, 4/9/2007 11:19:46, 319730 bytes
       Driver: C:\WINDOWS\system32\data\CTP0243W.DAT, 4/9/2007 11:19:46, 318800 bytes
       Driver: C:\WINDOWS\system32\data\CTP0244W.DAT, 4/9/2007 11:19:46, 319730 bytes
       Driver: C:\WINDOWS\system32\data\CTP0245W.DAT, 4/9/2007 11:19:46, 318254 bytes
       Driver: C:\WINDOWS\system32\data\CTP0246W.DAT, 4/9/2007 11:19:48, 319730 bytes
       Driver: C:\WINDOWS\system32\data\CTP0249W.DAT, 4/9/2007 11:19:48, 318341 bytes
       Driver: C:\WINDOWS\system32\data\CTP0280W.DAT, 4/9/2007 11:19:48, 318254 bytes
       Driver: C:\WINDOWS\system32\data\CTP0320W.DAT, 4/9/2007 11:19:50, 318254 bytes
       Driver: C:\WINDOWS\system32\data\CTP0350W.DAT, 4/9/2007 11:19:50, 323640 bytes
       Driver: C:\WINDOWS\system32\data\CTP0352W.DAT, 4/9/2007 11:19:50, 321529 bytes
       Driver: C:\WINDOWS\system32\data\CTP0355W.DAT, 4/9/2007 11:19:54, 322194 bytes
       Driver: C:\WINDOWS\system32\data\CTP0358W.DAT, 4/9/2007 11:19:52, 321552 bytes
       Driver: C:\WINDOWS\system32\data\CTP0359W.DAT, 4/9/2007 11:19:52, 320622 bytes
       Driver: C:\WINDOWS\system32\data\CTP0360W.DAT, 4/9/2007 11:19:52, 320076 bytes
       Driver: C:\WINDOWS\system32\data\CTP0380W.DAT, 4/9/2007 11:19:54, 320076 bytes
       Driver: C:\WINDOWS\system32\data\CTP0400W.DAT, 4/9/2007 11:19:56, 319757 bytes
       Driver: C:\WINDOWS\system32\data\CTP0460W.DAT, 4/9/2007 11:21:28, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0462W.DAT, 4/9/2007 11:21:32, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0463W.DAT, 4/9/2007 11:21:28, 264060 bytes
       Driver: C:\WINDOWS\system32\data\CTP0464W.DAT, 4/9/2007 11:21:30, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0465W.DAT, 4/9/2007 11:21:30, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0466W.DAT, 4/9/2007 11:21:28, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0468W.DAT, 4/9/2007 11:21:30, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0469W.DAT, 4/9/2007 11:21:30, 264130 bytes
       Driver: C:\WINDOWS\system32\data\CTP0530L.DAT, 4/9/2007 11:20:44, 232116 bytes
       Driver: C:\WINDOWS\system32\data\CTP0530W.DAT, 4/9/2007 11:20:02, 321377 bytes
       Driver: C:\WINDOWS\system32\data\CTP0531L.DAT, 4/9/2007 11:21:28, 232116 bytes
       Driver: C:\WINDOWS\system32\data\CTP0531W.DAT, 4/9/2007 11:20:46, 321377 bytes
       Driver: C:\WINDOWS\system32\data\CTP0550W.DAT, 4/9/2007 11:21:28, 264388 bytes
       Driver: C:\WINDOWS\system32\data\CTP0600W.DAT, 4/9/2007 11:19:56, 319757 bytes
       Driver: C:\WINDOWS\system32\data\CTP0610W.DAT, 4/9/2007 11:19:56, 319757 bytes
       Driver: C:\WINDOWS\system32\data\CTP0669W.DAT, 4/9/2007 11:19:58, 319757 bytes
       Driver: C:\WINDOWS\system32\data\CTP0678W.DAT, 4/9/2007 11:21:32, 345761 bytes
       Driver: C:\WINDOWS\system32\data\CTP0679W.DAT, 4/9/2007 11:21:28, 345761 bytes
       Driver: C:\WINDOWS\system32\data\CTP0730W.DAT, 4/9/2007 11:21:30, 265966 bytes
       Driver: C:\WINDOWS\system32\data\CTP0760W.DAT, 4/9/2007 11:21:30, 263543 bytes
       Driver: C:\WINDOWS\system32\data\CTP0773W.DAT, 4/9/2007 11:21:32, 269402 bytes
       Driver: C:\WINDOWS\system32\data\CTP0930W.DAT, 4/9/2007 11:21:32, 268778 bytes
       Driver: C:\WINDOWS\system32\data\CTP1140W.DAT, 4/9/2007 11:19:22, 233684 bytes
       Driver: C:\WINDOWS\system32\data\CTP4620W.DAT, 4/9/2007 11:19:20, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4670W.DAT, 4/9/2007 11:19:22, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4760W.DAT, 4/9/2007 11:19:22, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4780W.DAT, 4/9/2007 11:19:24, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4790W.DAT, 4/9/2007 11:19:26, 232158 bytes
       Driver: C:\WINDOWS\system32\data\CTP4820W.DAT, 4/9/2007 11:19:38, 267599 bytes
       Driver: C:\WINDOWS\system32\data\CTP4830W.DAT, 4/9/2007 11:19:24, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4831W.DAT, 4/9/2007 11:19:24, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4832W.DAT, 4/9/2007 11:19:26, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4840W.DAT, 4/9/2007 11:19:26, 232158 bytes
       Driver: C:\WINDOWS\system32\data\CTP4850W.DAT, 4/9/2007 11:19:22, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4870W.DAT, 4/9/2007 11:19:22, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4871W.DAT, 4/9/2007 11:19:24, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4872W.DAT, 4/9/2007 11:19:24, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4875W.DAT, 4/9/2007 11:19:24, 233024 bytes
       Driver: C:\WINDOWS\system32\data\CTP4890W.DAT, 4/9/2007 11:19:26, 232158 bytes
       Driver: C:\WINDOWS\system32\data\CTP4891W.DAT, 4/9/2007 11:19:28, 232158 bytes
       Driver: C:\WINDOWS\system32\data\CTP4893W.DAT, 4/9/2007 11:19:28, 232158 bytes
       Driver: C:\WINDOWS\system32\data\CTPDXW.DAT, 4/9/2007 11:19:30, 235142 bytes
       Driver: C:\WINDOWS\system32\data\CTPM002W.DAT, 4/9/2007 11:19:22, 233684 bytes
       Driver: C:\WINDOWS\system32\data\cts20x.dat, 4/9/2007 11:19:20, 2091 bytes
       Driver: C:\WINDOWS\system32\data\CTXFIGM.RFX, 7/28/2006 01:31:44, 41320 bytes
       Driver: C:\WINDOWS\system32\data\CTXFIEM.RFX, 7/28/2006 01:31:42, 41788 bytes
       Driver: C:\WINDOWS\system32\data\CTXFICM.RFX, 7/28/2006 01:31:40, 41624 bytes
       Driver: C:\WINDOWS\system32\data\CTXFICBM.RFX, 6/22/2005 21:58:50, 7352 bytes
       Driver: C:\WINDOWS\system32\ctbas2w.dat, 4/9/2007 11:21:28, 149838 bytes
       Driver: C:\WINDOWS\system32\ctsbas2w.dat, 4/9/2007 11:19:44, 274587 bytes
       Driver: C:\WINDOWS\system32\SBAudigy.ico, 8/17/2001 03:42:28, 7406 bytes
       Driver: C:\WINDOWS\system32\Audigy.bmp, 11/13/2001 00:48:20, 1912 bytes
       Driver: C:\WINDOWS\system32\ctcoinst.dll, 3.00.0002.0039 (English), 4/9/2007 11:33:36, 86016 bytes
       Driver: C:\WINDOWS\system32\ctdvinst.dll, 0.05.0000.0039 (English), 4/9/2007 11:33:36, 163328 bytes
       Driver: C:\WINDOWS\system32\ctsfinst.dll, 1.00.0000.0005 (English), 6/30/2005 06:24:14, 121856 bytes
       Driver: C:\WINDOWS\system32\drivers\ctdvda2k.sys, 5.13.0001.0461 (English), 4/10/2007 03:21:06, 347128 bytes
       Driver: C:\WINDOWS\system32\CTAPO32.dll, 1.00.0000.0151 (English), 4/9/2007 10:25:04, 444928 bytes
       Driver: C:\WINDOWS\system32\ctppld.dll, 1.00.0000.0151 (English), 4/9/2007 10:25:26, 45568 bytes
       Driver: C:\WINDOWS\CTDVAUDY.CDF, 1/3/2005 03:18:12, 4958588 bytes
       Driver: C:\WINDOWS\CTDV10K1.CDF, 6/25/2004 01:47:10, 3377466 bytes
       Driver: C:\WINDOWS\CTDV10K2.CDF, 11/15/2001 06:25:52, 3735544 bytes
         Name: NVIDIA GeForce 9800 GT
    Device ID: PCI\VEN_10DE&DEV_0605&SUBSYS_0606196E&REV_A2\4&16EC1A1&0&0008
       Driver: C:\WINDOWS\system32\DRIVERS\nv4_mini.sys, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 10276768 bytes
       Driver: C:\WINDOWS\system32\OpenCL.dll, 1.00.0000.0000 (English), 1/11/2010 20:03:33, 61440 bytes
       Driver: C:\WINDOWS\system32\nv4_disp.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 6359168 bytes
       Driver: C:\WINDOWS\system32\nvapi.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 1081344 bytes
       Driver: C:\WINDOWS\system32\nvcompiler.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 11632640 bytes
       Driver: C:\WINDOWS\system32\nvcuda.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 4104192 bytes
       Driver: C:\WINDOWS\system32\nvcuvenc.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 4077672 bytes
       Driver: C:\WINDOWS\system32\nvcuvid.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 2259560 bytes
       Driver: C:\WINDOWS\system32\nvdata.bin, 1/11/2010 20:03:33, 2283526 bytes
       Driver: C:\WINDOWS\system32\nvinfo.pb, 1/11/2010 20:03:33, 9047 bytes
       Driver: C:\WINDOWS\system32\nvoglnt.dll, 6.14.0011.9621 (English), 1/11/2010 20:03:33, 14458880 bytes
       Driver: C:\Program Files\NVIDIA Corporation\Uninstall\nvdisp.nvu, 1/11/2010 20:03:33, 25699 bytes
       Driver: C:\Program Files\NVIDIA Corporation\Uninstall\nvudisp.exe, 1.10.0052.0030 (English), 1/11/2010 20:03:33, 592488 bytes
       Driver: C:\WINDOWS\system32\nvcod.dll, 1.07.0008.0073 (English), 11/20/2009 18:34:54, 182888 bytes
       Driver: C:\WINDOWS\system32\nvcodins.dll, 1.07.0008.0073 (English), 1/11/2010 20:03:33, 182888 bytes
         Name: Texas Instruments OHCI Compliant IEEE 1394 Host Controller
    Device ID: PCI\VEN_104C&DEV_8024&SUBSYS_01761028&REV_00\4&10416D21&0&38F0
       Driver: C:\WINDOWS\system32\DRIVERS\ohci1394.sys, 5.01.2600.5512 (English), 4/13/2008 10:46:18, 61696 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\1394bus.sys, 5.01.2600.5512 (English), 4/13/2008 10:46:18, 53376 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\nic1394.sys, 5.01.2600.5512 (English), 4/13/2008 10:51:25, 61824 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\arp1394.sys, 5.01.2600.5512 (English), 4/13/2008 10:51:25, 60800 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\enum1394.sys, 5.01.2600.0000 (English), 8/17/2001 05:46:40, 6400 bytes
    DirectX Components
       ddraw.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:51 279552 bytes
    ddrawex.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:51 27136 bytes
       dxapi.sys: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 10496 bytes
        d3d8.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:51 1179648 bytes
    d3d8thk.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:51 8192 bytes
        d3d9.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:51 1689088 bytes
       d3dim.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 436224 bytes
    d3dim700.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:51 824320 bytes
    d3dramp.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 590336 bytes
       d3drm.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 350208 bytes
      d3dxof.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 47616 bytes
    d3dpmesh.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 34816 bytes
       dplay.dll: 5.00.2134.0001 English Final Retail 8/10/2004 04:00:00 33040 bytes
      dplayx.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 229888 bytes
    dpmodemx.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 23552 bytes
    dpwsock.dll: 5.00.2134.0001 English Final Retail 8/10/2004 04:00:00 42768 bytes
    dpwsockx.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 57344 bytes
    dplaysvr.exe: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:17 29696 bytes
      dpnsvr.exe: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:17 17920 bytes
       dpnet.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 375296 bytes
    dpnlobby.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:09:20 3072 bytes
    dpnaddr.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:09:19 3072 bytes
    dpvoice.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 212480 bytes
    dpvsetup.exe: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:18 83456 bytes
      dpvvox.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 116736 bytes
      dpvacm.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 21504 bytes
    dpnhpast.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 35328 bytes
    dpnhupnp.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 60928 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 8/10/2004 04:00:00 53520 bytes
      dinput.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 158720 bytes
    dinput8.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 181760 bytes
       dimap.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 44032 bytes
    diactfrm.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 394240 bytes
         joy.cpl: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:41 68608 bytes
       gcdef.dll: 5.01.2600.0000 English Final Retail 8/10/2004 04:00:00 76800 bytes
         pid.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:02 35328 bytes
    gameenum.sys: 5.01.2600.5512 English Final Retail 4/13/2008 10:45:29 10624 bytes
      dsound.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 367616 bytes
    dsound3d.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 1293824 bytes
      dswave.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 19456 bytes
       dsdmo.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 181248 bytes
    dsdmoprp.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 71680 bytes
      dmusic.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 104448 bytes
      dmband.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 28672 bytes
    dmcompos.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 61440 bytes
       dmime.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 181248 bytes
    dmloader.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 35840 bytes
    dmstyle.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 105984 bytes
    dmsynth.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 103424 bytes
    dmscript.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 82432 bytes
      system.dll: 1.00.3705.6018 English Final Retail 4/19/2009 06:48:18 1179648 bytes
      system.dll: 1.01.4322.2443 English Final Retail 10/14/2009 02:03:04 1232896 bytes
       dx7vb.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 619008 bytes
       dx8vb.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 1227264 bytes
    dxdiagn.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:52 2113536 bytes
       mfc40.dll: 4.01.0000.6140 English Final Retail 8/10/2004 04:00:00 924432 bytes
       mfc42.dll: 6.02.4131.0000 English Final Retail 4/13/2008 16:11:56 1028096 bytes
    wsock32.dll: 5.01.2600.5512 English Final Retail 4/13/2008 16:12:10 22528 bytes
    amstream.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:11:49 70656 bytes
    devenum.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:11:51 59904 bytes
      dxmasf.dll: 6.04.0009.1133 English Final Retail 4/13/2008 16:11:52 498742 bytes
    mciqtz32.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:11:56 35328 bytes
    mpg2splt.ax: 6.05.2600.5512 English Final Retail 4/13/2008 16:12:42 148992 bytes
       msdmo.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:11:59 14336 bytes
      encapi.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:53 20480 bytes
        qasf.dll: 10.00.0000.3646 English Final Retail 8/10/2004 04:00:00 221184 bytes
        qcap.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:12:03 192512 bytes
         qdv.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:12:03 279040 bytes
        qdvd.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:12:03 386048 bytes
       qedit.dll: 6.05.2600.5512 English Final Retail 4/13/2008 16:12:03 562176 bytes
    qedwipes.dll: 6.05.2600.5512 English Final Retail 4/13/2008 09:21:32 733696 bytes
      quartz.dll: 6.05.2600.5908 English Final Retail 11/27/2009 09:11:44 1291776 bytes
    strmdll.dll: 4.01.0000.3938 English Final Retail 8/26/2009 00:00:21 247326 bytes
    iac25_32.ax: 2.00.0005.0053 English Final Retail 4/13/2008 16:12:42 199680 bytes
      ir41_32.ax: 4.51.0016.0003 English Final Retail 4/13/2008 16:12:42 848384 bytes
    ir41_qc.dll: 4.30.0062.0002 English Final Retail 4/13/2008 16:11:55 120320 bytes
    ir41_qcx.dll: 4.30.0064.0001 English Final Retail 4/13/2008 16:11:55 338432 bytes
    ir50_32.dll: 5.2562.0015.0055 English Final Retail 4/13/2008 16:11:55 755200 bytes
    ir50_qc.dll: 5.00.0063.0048 English Final Retail 4/13/2008 16:11:55 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English Final Retail 4/13/2008 16:11:55 183808 bytes
       ivfsrc.ax: 5.10.0002.0051 English Final Retail 4/13/2008 16:12:42 154624 bytes
    mswebdvd.dll: 6.05.2600.5857 English Final Retail 8/5/2009 01:01:48 204800 bytes
          ks.sys: 5.03.2600.5512 English Final Retail 4/13/2008 11:16:36 141056 bytes
      ksproxy.ax: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:42 129536 bytes
      ksuser.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:11:56 4096 bytes
      stream.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:45:16 49408 bytes
    mspclock.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:39:50 5376 bytes
       mspqm.sys: 5.01.2600.5512 English Final Retail 4/13/2008 10:39:51 4992 bytes
    mskssrv.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:39:52 7552 bytes
      swenum.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:39:53 4352 bytes
       mstee.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:39:50 5504 bytes
       ipsink.ax: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:42 16384 bytes
    mpeg2data.ax: 6.05.2700.2180 English Final Retail 8/10/2004 04:00:00 62976 bytes
      ndisip.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:22 10880 bytes
    streamip.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:22 15232 bytes
    msvidctl.dll: 6.05.2700.2180 English Final Retail 8/10/2004 04:00:00 1616384 bytes
        slip.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:24 11136 bytes
    nabtsfec.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:26 85248 bytes
    ccdecode.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:24 17024 bytes
      vbisurf.ax: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:42 30208 bytes
       msyuv.dll: 5.03.2600.5908 English Final Retail 11/27/2009 09:11:44 17920 bytes
    kstvtune.ax: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:42 61952 bytes
       ksxbar.ax: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:42 43008 bytes
    kswdmcap.ax: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:42 91136 bytes
    vfwwdm32.dll: 5.01.2600.5512 English Final Retail 4/13/2008 16:12:08 53760 bytes
    wstcodec.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:24 19200 bytes
    wstdecod.dll: 5.03.2600.5512 English Final Retail 4/13/2008 16:12:10 50688 bytes
        msdv.sys: 5.03.2600.5512 English Final Retail 4/13/2008 10:46:10 51200 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,,
    WMSpeech Decoder DMO,0x00600800,1,1,,
    Canon G.726 DMO Decoder,0x00000000,1,1,,
    WMVideo Advanced Decoder DMO,0x00800001,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00800001,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    WMV9 Advanced Profile Decoder,0x00600800,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.00.0005.2052
    Creative LiveRecording Filter,0x00400000,0,1,LiveRec.ax,2.01.0001.0000
    Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.2600.5908
    Gretech ASF Source Filter,0x00200000,0,1,GSFU.ax,
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.00.0005.2052
    RealPlayer Video Filter,0x00200000,1,1,rdsf3260.dll,6.00.0013.0447
    Gretech MPEG Source Filter,0x00200000,0,1,GSFU.ax,
    CT Upsampler filter,0x00100000,1,1,Upsample.ax,2.00.0000.0003
    ffdshow Audio Decoder,0x3fffffff,1,1,ffdshow.ax,1.00.0005.2052
    Creative Wave Writer,0x00200000,1,0,WavWrite.ax,3.00.0003.0000
    WST Renderer,0x00800000,1,1,WSTRenderer.ax,6.05.2700.2180
    DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.5512
    Creative MLP Source Filter,0x00400000,0,1,MlpSrc.ax,3.00.0000.0000
    Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.5908
    WM ASF Reader,0x00400000,0,0,qasf.dll,10.00.0000.3646
    Creative NVF Filter,0x00400000,0,1,NvfSrc.ax,3.00.0000.0000
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,10.00.0000.3646
    AVI Splitter,0x00600000,1,1,quartz.dll,6.05.2600.5908
    BPM Metadata,0x001fffff,1,1,MetaBPM.ax,1.00.0004.0000
    WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.5908
    Sonic Audio Depth Converter (Symphony),0x00200000,1,1,AudioDepthConverterS.ax,5.00.0000.0001
    Indeo® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
    "MainConcept (Adobe2) AAC Decoder",0x00600000,1,1,ad2daac.ax",
    Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,8.00.0000.4487
    RealVideo Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.00.0001.0002
    "MainConcept (Adobe2) MPEG Splitter",0x005fffff,1,2,ad2mcspmpeg.ax",
    "MainConcept (Adobe2) MPEG Audio Decoder",0x005fffff,1,1,ad2mcdsmpeg.ax",
    "MainConcept (Adobe2) MPEG Video Decoder",0x005fffff,1,1,ad2mcdsmpeg.ax",
    "MainConcept (Adobe2) MPEG Encoder",0x00200000,2,1,ad2mcesmpeg.ax",
    "MainConcept (Adobe2) MPEG Video Encoder",0x00200000,1,1,ad2mcevmpeg.ax",
    "MainConcept (Adobe2) MPEG Audio Encoder",0x00200000,1,1,ad2mceampeg.ax",
    "MainConcept (Adobe2) MPEG Multiplexer",0x00200000,1,1,ad2mcmuxmpeg.ax",
    Creative Still Picture MPEG1 Splitter,0x00600000,1,2,CTspf.ax,1.00.0003.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.2600.5512
    DvPlayTee,0x00200000,1,2,DXDVSupport.dll,4.02.0001.0000
    WMT Format Conversion,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    CT Time-Scaling filter,0x00100000,1,1,TimeScal.ax,2.02.0000.0000
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.05.2700.2180
    WMT Black Frame Generator,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5908
    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
    SVM Metadata,0x001fffff,1,1,MetaSVM.ax,1.00.0006.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.5908
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.5908
    Essien R&D MPEG Writer Filter,0x00200000,2,0,mpgfiltr.ax,2.05.0001.0000
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.05.2700.2180
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.05.0000.0050
    MPC - MPEG-2 Video Decoder (Gabest),0x00500001,1,1,Mpeg2DecFilter.ax,1.01.0796.0000
    MPEG-2 Splitter,0x005ffff

Maybe you are looking for