256MB RAM in System Properties but 512MB in Sys Information

Hi. I just bought Athlon64 3500+ 939 socket system. Mobo is MSI Neo2 K8T MS-6702E.RAM is 512 MB DDR 400 Mhz one.The problem is when I right click "My Computer" and go to Properties , its showing as 256 MB. Even I changed another RAM but still its showing same 256 MB !
But when I go to System Information under System Tools its displayed as Total Physical Memory as 512.00 MB. Even I tried changing Memclock value to [DDR400] under DRAM Configuration. But still its showing as 256 MB after booting Win xp and going to System Properties. But when I try to load default values and start booting its showing as 512 MB ! But then after restarting again its going back to 256 MB.
I did memtest and these were the results
Memtest-86 v3.2
AMD Athlon 64 220 Mhz
L1 Cache: 128 18031 MB/S
L2 Cache: 512K 4480 MB/S
Memory: 256M 1535 MB/S
Chipset: VIA K8T800Pro (ECC: Disabled)
Settings: RAM: 200Mhz(DDR400) / CAS: 3-3-3-8 / Single Channel(64 bits)
WallTIme Cached RsvdMem Memcap Cache Ecc Test Pass Errors EccErrs
0:02:20 256M 104K e820-std on off std 0 2 0
And also when I restarted the system its not starting (i mean no signal power to monitor). And when I did reset that bios by using that jumper and then restarted, it did. This problem is happening many times
Please help me. Thanks.
EDIT: Though now this last problem is solved. I mean power coming to monitor is solved. Atleast I am happy in this. But please why is that memory problem? Any setting I have to change in BIOS? Did anyone else also incurred this problem other than both of us?

;-((I have the same issue. Please help!
MSI K8T NEO2-FIR Socket 939
AMD Athlon(tm) 64 3500+
BIOS  Name : Version 07.00T
          Manufacturer : American Megatrends Inc.
          Version : AMIINT - 10
          ReleaseDate : 04 / 02 / 2001
Seagate SATA 2x160GB RAID 0
ATI Radeon 9800 Pro 128MB
ZALMAN ZM400A-APF
Plextor PX-712A DVD±R/RW
KingMax 2x512MB DDR400
Samsung SyncMaster 700NF(T)
Windows XP Professional SP1

Similar Messages

  • 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?

  • 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

  • Can i get the system properties(urgent)

    Sir
    i want to get the following properties of the system
    1.What type of operating system install e.g win Xp or 98
    2.How many hard disk are in the system
    OR how many Partions of the system
    3.Search the particular folder in the computer.
    i study the System Class but these types of information
    not available.Please Help me with Example.

    Java Developer's Almanac 1.4:
    // Get all system properties
    Properties props = System.getProperties();
    // Enumerate all system properties
    Enumeration enum = props.propertyNames();
    while(enum.hasMoreElements())
    // Get property name
    String propName = (String)enum.nextElement();
    // Get property value
    String propValue = (String)props.get(propName);
    What's there, is there, what isn't, isn't. I believe there are many clues to what operating system you're on.
    -Jason Thomas.

  • 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

  • Missing Remote Desktop Dialog Box in System Properties Running Under Windows 7 Ultimate SP1 But I Can Still See Remote Assistance Dialog Box

    Hello to everyone i am using Win 7 Ultimate SP 1 and when i go to system properties -> remote settings all i get is the remote assistance dialog box and i can't find the remote desktop dialog box. I can see the remote assistance dialog box but i
    can't see at all my remote desktop dialog box. Does anyone has any idea???????
    i have tried almost anything. I have opened exceptions in windows firewall for remote desktop. I started the remote desktop services manually but nothing happend, i still can't see the remote desktop dialog box and that's odd because i can see my remote
    assistance dialog box in system properties-> under the remote tab but as i said i can not see my remote desktop settings.
    Plz help.....
    Thanks in advance!

    Hi,
    First, please try the SFC command to check if you any corrupted system files:
    How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on
    Windows 7
    If this issue persists, it is recommended to perform system restore to get back to a previous time point to check what the result is:
    System Restore - Windows 7 features - Microsoft Windows
    Hope it helps.
    Alex Zhao
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Unreadable Ram after system update

    I have a problem with my tiger it's a long story anyway I delete it, and use my 12" PB restore CD which have Panther, I used Panther for maybe 3 weeks and it reads my rams as 768 Which is 256mb (built-in) + 512mb, today I installed Tiger but unfortunatley it read only 256mb ram I don't know why, I tried opening the case and removing and putting the ram again but no luck, I tried downloading the latest system upgrades but also no luck. Can any body help me ???

    Yes, it must be the older version of OSX you have, DO NOT attempt to repair the drive with it.
    A new Mini might be what is needed, but...
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 4GB at least, more if you can afford it)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/
    It's been pulled from the online store & Apple Stores, so you have to call Apple to buy it, last I heard.
    Call Apple Sales...in the US: 1-800-MY-APPLE. Or Support... 1-800-275-2273
    Other countries...
    http://support.apple.com/kb/HE57

  • 256mb RAM

    I have 256mb RAM, it is too slown as you can Imagine...I didn't know ...
    1) how much ram does the operating sistem that came with the mac take...?
    2) I would like to change it to more ram:
    a) can I ad ram to my 256 or do I have to get a new one of 512 or 1gb?
    b)how much would it cost me512or 1gb?
    c)can I order it in the apple store and put it in myself? (PS: I don't care if that takes me off the one year garncy because I bought it in the US and I live in Italy)
    thank you.

    Tiger doesn't require a specific amount of RAM - it generally tailors use to the amount available. The less RAM installed in the system the more it uses virutal memory, an area of the hard driver set aside for 'pages' that MacOS moves from real RAM to virtual store and then back again. Since access to data on the hard drive is slower than from memory, this means that the less RAM the system has installed, the slower it will tend to run because more of what MacOS needs will come from paged store on the drive than from RAM.
    How much memory you need depends on what you're doing. Most users find 512Mb entirely satisfactory, but if you're using applications such as Photoshop, more would certainly be better.
    You can't 'add' more memory - the mini has only one RAM slot, which means that the stick you have in there at present will need to be removed and replaced.
    Since you're happy to do the RAM install yourself, you might try looking at www.crucial.com or www.newegg.com for RAM prices - from such sources a 1Gb stick would cost little more than an Apple-sourced 512Mb module. Just make sure that whatever supplier you buy from will exchange the RAM if you have any problems with it.

  • Running iTunes7 on a 800Mhz iMac G4 (256mb Ram)

    Hi,
    i have an iMac G4 Flat panel (800Mhz-256mb Ram) and after hearing some people complaining on these boards of not being able to run iTunes7 properly on macs with a similar spec as mine i have decided for the time being not to upgrade from iTunes6.
    Is there anyone on here who is running iTunes7 successfully with less than a 1Ghz. What limitations can i expect from iTunes7 on my iMac.
    Thanks

    I'm sure you will benefit by adding more RAM.
    It will decrease disk access, which slows down the system.
    About Cover Flow:
    The first time I used it, it behaved rather slow and jerky.
    Of course iTunes had to get all the artwork from the song files, which meant a lot of disk activity.
    iTunes then stores the albumart in .itc files in ./Users/Username/Music/iTunes/album artwork/Local.
    I guess this is done for faster access of the pictures.
    The next time, I slowly flipped through Cover Flow to enable iTunes to pick up all artwork.
    This morning, when I ran iTunes, and browsed through Cover Flow, it behaved somehow jerky (a lot of disk access), but after that it worked rather smooth.
    I could only hear occasional disk access, so iTunes must have stored most pictures in RAM.
    One more thing. I recently replaced the HD by a larger and faster one (200 GB Maxtor) which also speeds things up (reading/writing at least twice as fast than the 'old' drive). That also helps a bit.
    Long story short:
    Add more RAM. I'm sure you will not be disappointed by that investment.
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.4.7)   iTunes 7.0

  • Successful install of 8.1.7 on Solaris 8 with more than 256Mb RAM

    To all who have struggled with this one, like me. You owe me a bottle of Rogaine.... but I will accept a bottle of Jack instead.
    It appears that the kernel parameters published in the Install Guide are only good for Solaris 8 with up to 256Mb RAM
    If dbassist craters at around 80% in OUI with a "Can't connect to Oracle" and you have more than 256Mb on board
    DOUBLE the kernel parameters !!!
    shmmni = 200
    shmseg = 20
    semmns = 400
    semmni = 200
    semmls =200
    semopm =200
    touch /reconfigure (they don't mention that in the Guide)
    reboot
    If someone out there can isolate which actual damn kernel parameter is the culprit, I will gladly share some Jack with you.
    Otherwise an email to [email protected] with a comment or three will suffice.
    Cheers

    Sorry to ask a dumb question, but want to be precise, whn you say touch/reconfigure, do you mean touch system.
    WHat is the reconfigure?

  • Running Appserver 9.1 with 256mb ram?

    Hi there,
    i tried to install the Appserver 9.1 on a machine with only 256mb ram. I think thats the cause why starting the server results in:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.Is there somewhere an option to set the heapsize down, so that the server can start?
    (I know that the minimum requirement is 512mb ram, but performance doesn't matter in this case)
    Bye
    schuhu
    Edited by: schuhu on Nov 4, 2007 8:53 AM

    You will need an OS 9.1 or higher full installer CD. You may find them on eBay or at FastMac.com. Be sure to get a full retail installer CD, not an upgrade disc.
    You can install OS 9 directly on the hard drive without disturbing your OS X installation. Just be careful to avoid any alerts from the installer asking to format or check the hard drive. If you see such alerts (and you will) during installation simply skip or cancel them.
    Now, your hard drive must have been formatted with the Install Mac OS Drivers option checked when you partitioned the drive if you want to boot OS 9 directly. This is not required to use Classic from OS X.

  • 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

  • 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

  • Holding down the option key when booting my iMac lo longer shows me my bootable external drives, the system just boots up to the main system. Also, holding down command, option,P,R no longer zaps the p-ram. the system just boots up.

    Holding down the option key when booting my iMac lo longer shows me my bootable external drives, the system just boots up to the main system. Also, holding down command, option,P,R no longer zaps the p-ram. the system just boots up normally. Why do these key fonctions no longer work?

    It could be your timing if on a bluetooth keyboard.  I find it best to hit the keys as soon as i hear the chime, release and hit them again but this time holding them before the chime ends....like a fake pump in football.
    But....you can always open up system preferences, startup disk, and select your bootable clone for booting.  If it doesn't show up there, the Mac doesn't think it's bootable.

  • I have a late 2008, aluminum body macbook.  I'm told 4GB is the most RAM it will take, but DMS says it will take 6GB.  Can anyone clarify?  Thnx

    I have a late 2008, aluminum body macbook.  I'm told 4GB is the most RAM it will take, but DMS says it will take 6GB.  Can anyone clarify?  Thnx

    This one http://www.everymac.com/systems/apple/macbook/stats/macbook-core-2-duo-2.4-alumi num-13-late-2008-unibody-specs.html ?
    Quote:
    "Apple officially supports a maximum of 4 GB of RAM. Originally, this model was only unofficially capable of stably supporting 6 GB of RAM, but as confirmed by site sponsor OWC, it is capable of supporting 8 GB of RAM if updated to Boot ROM Version MB51.007D.B03 and running MacOS X 10.6 "Snow Leopard" or higher."
    Stefan

Maybe you are looking for