Can I please get a Debug code compiles

The code below is supposed to use threads to get the checksum of two files chosen for Jfilechoosers and then compare there checksums and tell whether they are equal or not. I have all working but the values for the files individual checksums are not showing correctly because the threads are not completing before they are displayed. I have tried everything and I have even tried to implement code given to me from this forum but to no evail I have 15 Duke bucks left and they will go to the person who can give me a answer in code and where it is supposed to go plus a little explanation on why so I am not feeling as dumb as I do right now.
Along with the duke bucks a great apprecaition will come with this for you will have saved my but and my GPA.
here it is and THANKS to all.....
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
public class EFile extends JFrame
     private JButton buttons [];
     private JLabel labels [];
     private JTextField text[];
     private JPanel buttonPanel, labelPanel;
     private String bNames []= {"file1", "file2", "compare"};
     private String lNames []= {"1st file name", "2nd file name", "Checksum1", "Checksum2"};
     private File fileName, fileName2;
     private RandomAccessFile input;
     Checksums cksum1 = new Checksums();
     Checksums cksum2 = new Checksums();
     public EFile()
          super( " Eric's File Comparison " );
          Container c = getContentPane();
          c.setLayout(new BorderLayout(25,25));
          buttons = new JButton[3];
          labels = new JLabel[4];
          text = new JTextField[4];
          buttonPanel = new JPanel();
          buttonPanel.setLayout(new GridLayout(buttons.length,1));
          for ( int count = 0; count < buttons.length; count++)
               buttons[count]= new JButton(bNames[count]);
               buttonPanel.add(buttons[count]);
          labelPanel = new JPanel();
          labelPanel.setLayout(new GridLayout(labels.length,1));
          for (int count = 0; count < labels.length; count++)
               labels[count]=new JLabel(lNames[count]);
               text[count]=new JTextField(count);
               labelPanel.add(labels[count]);
               labelPanel.add(text[count]);
          buttons[0].addActionListener(
// anonymous inner class to handle openButton event
new ActionListener() {
// call openFile when button pressed
public void actionPerformed( ActionEvent event )
openFile();
} // end anonymous inner class
); // end call to addActionListener
     buttons[1].addActionListener(
// anonymous inner class to handle openButton event
new ActionListener() {
// call openFile when button pressed
public void actionPerformed( ActionEvent event )
openFile2();
} // end anonymous inner class
     buttons[2].addActionListener(
// anonymous inner class to handle openButton event
new ActionListener() {
// call openFile when button pressed
public void actionPerformed( ActionEvent event )
          //Checksums c1 = new Checksums();
                         cksum1.setFileName(fileName);
                         cksum2.setFileName(fileName2);
                         Thread t1 = new Thread(cksum1);
                         Thread t2 = new Thread(cksum2);
                         Thread t3 = new Thread();
                         t1.start();
                         t2.start();
                         t3.start();
                         int d = cksum1.getChecksum();
                         int e = cksum2.getChecksum();
                         text[2].setText("" + d);     
                         text[3].setText("" + e);
                         testChecksums(d,e);
} // end anonymous inner class
          c.add(buttonPanel, BorderLayout.WEST);
          c.add(labelPanel, BorderLayout.CENTER);
          setSize(600,400);
          setVisible(true);
     public void testChecksums(int d, int e)
          if (d == e)
               JOptionPane.showMessageDialog( this, "The checksums ARE equal",
               "Equal", JOptionPane.ERROR_MESSAGE);
          else
               JOptionPane.showMessageDialog( this, "The checksums are NOT equal",
               "Not Equal", JOptionPane.ERROR_MESSAGE);
     private void openFile()
// display file dialog so user can select file
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(
JFileChooser.FILES_ONLY );
int result = fileChooser.showOpenDialog( this );
// if user clicked Cancel button on dialog, return
if ( result == JFileChooser.CANCEL_OPTION )
return;
// obtain selected file
fileName = fileChooser.getSelectedFile();
// display error is file name invalid
if ( fileName == null ||
fileName.getName().equals( "" ) )
JOptionPane.showMessageDialog( this,
"Invalid File Name", "Invalid File Name",
JOptionPane.ERROR_MESSAGE );
else {
// open file
try {
input = new RandomAccessFile( fileName, "r" );
               text[0].setText(fileName.getName());
buttons[0].setEnabled( false );
buttons[1].setEnabled( true );
               buttons[2].setEnabled(true);
// catch exception while opening file
catch ( IOException ioException ) {
JOptionPane.showMessageDialog( this,
"File does not exist", "Invalid File Name",
JOptionPane.ERROR_MESSAGE );
} // end method openFile
private void openFile2()
// display file dialog so user can select file
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(
JFileChooser.FILES_ONLY );
int result = fileChooser.showOpenDialog( this );
// if user clicked Cancel button on dialog, return
if ( result == JFileChooser.CANCEL_OPTION )
return;
// obtain selected file
fileName2 = fileChooser.getSelectedFile();
// display error is file name invalid
if ( fileName2 == null ||
fileName2.getName().equals( "" ) )
JOptionPane.showMessageDialog( this,
"Invalid File Name", "Invalid File Name",
JOptionPane.ERROR_MESSAGE );
else {
// open file
try {
input = new RandomAccessFile( fileName2, "r" );
               text[1].setText(fileName2.getName());
buttons[0].setEnabled( false );
buttons[1].setEnabled( false );
               buttons[2].setEnabled(true);
// catch exception while opening file
catch ( IOException ioException ) {
JOptionPane.showMessageDialog( this,
"File does not exist", "Invalid File Name",
JOptionPane.ERROR_MESSAGE );
} // end method openFile
private void closeFile()
// close file and exit
try {
input.close();
System.exit( 0 );
// process exception while closing file
catch ( IOException ioException ) {
JOptionPane.showMessageDialog( this,
"Error closing file",
"Error", JOptionPane.ERROR_MESSAGE );
System.exit( 1 );
     public static void main(String args[])
          EFile e = new EFile();
          e.setDefaultCloseOperation(2);
class Checksums extends JFrame implements Runnable
     //Thread runner;
     public File fileName;
     public RandomAccessFile input;
     public int checkSum ;
     Checksums()
          super();
     public void setFileName(File name)
          fileName = name;          
     public int getChecksum()
          return checkSum;
     public void run()
          try
                    input = new RandomAccessFile( fileName, "r" );
                    byte[] chunk = new byte[100000];
                    int readFile;
                    while ((readFile = input.read(chunk)) != -1)
                         checkSum = (checkSum + readFile)%65535;
               catch ( IOException ioException)
                    JOptionPane.showMessageDialog( this, "Error opening file",
                    "Error", JOptionPane.ERROR_MESSAGE);
     } //end run
} // end Checksums

looking at the code below :
public void actionPerformed( ActionEvent event )
//Checksums c1 = new Checksums();
cksum1.setFileName(fileName);
cksum2.setFileName(fileName2);
Thread t1 = new Thread(cksum1);
Thread t2 = new Thread(cksum2);
// this thread appears redundant.  why is it here?
// Thread t3 = new Thread();
t1.start();
t2.start();
// t3.start();
int d = cksum1.getChecksum();
int e = cksum2.getChecksum();
text[2].setText("" + d);
text[3].setText("" + e);
testChecksums(d,e);what is happening, as you have stated, is a race condition when you are trying to get d and e. So, something like this might be in order:
public void actionPerformed( ActionEvent event )
//Checksums c1 = new Checksums();
cksum1.setFileName(fileName);
cksum2.setFileName(fileName2);
Thread t1 = new Thread(cksum1);
Thread t2 = new Thread(cksum2);
t1.start();
t2.start();
int d = 0;
int e = 0;
try {
  t1.join();
  d = cksum1.getChecksum();
} catch (InterruptedException e) {
  e.printStackTrace();
try {
  t2.join();
  e = cksum2.getChecksum();
} catch (InterruptedException e) {
  e.printStackTrace();
text[2].setText("" + d);
text[3].setText("" + e);
testChecksums(d,e);for information on Thread.join(), I point you to the Thread javadoc.
for what its worth, the design of your program is not ideal - an ideal design would remove any likelihood of this sort of race condition by not allowing access to the "checksums" before they'd been set by the threads, either through a synchronized() block or object, or through the use of the Observer / Observable pattern. Thread.join() is messy.
hope this helps
McFinnigan

Similar Messages

  • Can you please give me my code to be able do register Photoshop and Lightroom, I have now got a one month try out version of Photoshop. Can you also give me my log gin, I have two companies, so I my have mixed up the logins. Best R Leif O Pehrson  26 aug

    Can you please give me my code to be able do register Photoshop and Lightroom, I have now got a one month try out version of Photoshop.
    Can you also give me my log gin, I have two companies, so I my have mixed up the logins.
    Best R
    Leif O Pehrson
    26 aug 2014 kl. 14:08 skrev Adobe Creative Cloud <[email protected]>:
    I have a order number, do you want it ?

    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    http://www.adobe.com/products/creativecloud/faq.html
    http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall
    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    What it is http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html
    Cloud Getting Started https://helpx.adobe.com/creative-cloud.html

  • I have an iphone 4 and it will not boot. I've done everything except downgrade the firmware to 6.1.3 or 6.1.4... is this what needs to happen and if so can I please get a link to do so? thanks

    I have an iphone 4 and it will not boot. I've done everything except downgrade the firmware to 6.1.3 or 6.1.4... is this what needs to happen and if so can I please get a link to do so? thanks

    Hi JACOBfromINSIDEaLION,
    If you are unable to get your iPhone to restore, you will want to perform a restore from recovery mode, as explained in the following article:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

  • I bought Photoshop Elements 12 (box - CD) and threw away the box. I thought the serial number would be on the disc sleeve, but it was not. Now I can´t register the product. Is there something I can do to get the number/code to activate Photoshop Elements?

    I bought Photoshop Elements 12 (box - CD) and threw away the box. I thought the serial number would be on the disc sleeve, but it was not. Now I can´t register the product. Is there something I can do to get the number/code to activate Photoshop Elements? Thank you.

    My guess is that you won't be able to do much if you threw away the serial number before using it.  The serial number will not have been externally visible on the box though... doing that would make it available for use by anyone who sees the box in any store.
    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    If you remain unable to locate the serial number you might need to head back to wherever you purchased the product to confirm whether or not you might have thrown out the serial number or if it could even possibly have never been provided.
    Beyond that you need to resolve serial number issues with ASdobe Support directly.  Here is a link for chat:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Can we please get more Real Housewives?

    Can we please get more Real Housewives? There have been several shows on television already that have not been on the iTunes store, including Season 5 "The Real Housewives of New Jersey" and season 3 of "The Real Housewives of Miami." I work writing about these shows, so having them available in iTunes would definitely help out. Season passes for these seasons would be awesome.
    Also, the same thing for Rachel Zoe season 5.

    That's totally up to the owners of the rights to those shows. Contact them and urge them to work out whatever contractual difficulties are preventing them from offering those seasons through the iTunes Store.
    Regards.

  • X99S XPOWER AC - Can I please get a BIOS compatible with XP941 SSD

    I saw the x99s gaming 7 got some beta bios love and fixed the XP941. But I have the X99s spower AC and my XP941 is not showing in the BIOS. Can I please get a beta bios that fixes this? I want to install an OS to  it and boot from it

    I can't seem to edit my posts. Anyways, I tried installing anyways. Windows 8 saw the SSD and it was able to do the pre-install on it. After it reboots though, because the BIOS cannot see it, it cannot boot from it and continue installing. Also, I found a picture somewhere on these forums that shows to enable "pcie nand configuration" but there is no option for that in my bios, even after enabling windows 8 feature and fast foot and raid mode.
    Surely its a bios bug and i hope there is a fix already out there
    edit: Another thing that I found that I miss from my x79 big bang-xpower II motherboard is the failed OC recovery. If my OC fails on my X99S motherboard, there is no recovery. It just powers off and doesn't turn back on. If I try to turn it back on, it just turns off again after about 8 seconds. The only way to get back is to clear CMOS, which is very cumbersome. If I did the same on my old X79 board, it would revert to default settings temporarily so it could boot and would have the failed OC settings still showing in the OC options so you could quickly tweak them.
    i hope these 2 bugs/features are fixed/implemented soon. Until then, my PC cant work at its fullest potential.

  • I never  purchased an Adobe App and I'm being charged $89 for it?? Also there is a charge got $100 for storage icloud that I was OVER CHARGED for. Can someone please get in touch with me about these charges!!!  I've been waiting. Thx

    I never  purchased an Adobe App and I'm being charged $89 for it?? Also there is a charge got $100 for storage icloud that I was OVER CHARGED for. Can someone please get in touch with me about these charges!!!  I've been waiting. Thx

    Change your iTS password!!!!
    Are these charges from Adobe or Apple?
    Are these purchases from the App Store or iTunes Store?
    Contact your credit card company and dispute the charges. Apple and Adobe will do nothing for you - it is your CC issuer that can help.
    As noted these are user to user discussions. None of us here work for Apple or Adobe.
    Contact iTS Customer Service via these links - http://www.apple.com/support/itunes/
    MJ

  • Slow flash issue STILL OCCURRING. Can I please get a response?

    If you guys don't mind, can you please vote for the following issue below, so it can get more attention for the support team?
    https://bugbase.adobe.com/index.cfm?event=bug&id=3155813
    I've been experiencing this issue for almost 2 years now and so far, I've tried the latest Flash 11.3 beta build, but that did not solve the problem.
    Ever since I've upgraded to the latest flash player(11.2), for some reason, when I view certain flash videos online, the video moves really slow. The audio is fine, but the video frames doesn't seem to move normal and not sync correctly with the audio. This happens on both Fire Fox and Chrome while using
    Windows XP SP 3 Home Edition
    Steps I've tried:
    1. Reinstalling Fire Fox/Chrome
    2. Reinstalling Adobe Flash Player(Yes, I even followed the tutorials from this site)
    3. Reinstalling Shockwave Player
    4. Enabling/Disabling Hardware Acceleration on both Fire Fox/Chrome and the video settings.
    5. Increasing the webstorage for certain websites.
    6. Obtaining the latest drivers from my manufacture.
    None of those steps helped. This is most likely an issue on the new Flash Player version
    When I've ran a previous version, I never had this problem.
    The best thing I can do right now is wait for some more info from the bug report I submitted a long time ago.
    So I ask, how or when this can be fixed? I don't wish to downgrade to older flash versions, as it's too risky and there are some flash content I can't use.

    Both HTML and non HTML videos are playing slow for me. If a video is at 360p or above it will play slow unless it's at 240p. But I never came across this issue when I went back to an older version and used it for awhile. Any site that has a JWPlayer or Divx player are other examples.
    Here's my DxDiag text:
    System Information
    Time of this report: 3/20/2013, 21:47:05
           Machine name: OWNER-BB2B8431F
       Operating System: Windows XP Home Edition (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.130107-0416)
               Language: English (Regional Setting: English)
    System Manufacturer: Dell Computer Corporation
           System Model: Dimension 2400              
                   BIOS: Phoenix ROM BIOS PLUS Version 1.10 A05
              Processor: Intel(R) Celeron(R) CPU 2.40GHz
                 Memory: 510MB RAM
              Page File: 653MB used, 595MB 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: The file ac97ich4.sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Quality Labs (WHQL).  You may be able to get a WHQL logo'd driver from the hardware manufacturer.
              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: Intel(R) 82845G/GL/GE/PE/GV Graphics Controller
         Manufacturer: Intel Corporation
            Chip type: Intel(R) 82845G Graphics Controller
             DAC type: Internal
           Device Key: Enum\PCI\VEN_8086&DEV_2562&SUBSYS_01601028&REV_01
       Display Memory: 64.0 MB
         Current Mode: 1152 x 864 (32 bit) (72Hz)
              Monitor: Plug and Play Monitor
      Monitor Max Res: 1600,1200
          Driver Name: ialmrnt5.dll
       Driver Version: 6.14.0010.4342 (English)
          DDI Version: 9 (or higher)
    Driver Attributes: Final Retail
    Driver Date/Size: 6/21/2005 17:04:48, 38016 bytes
          WHQL Logo'd: Yes
      WHQL Date Stamp: n/a
                  VDD: n/a
             Mini VDD: ialmnt5.sys
        Mini VDD Date: 6/21/2005 17:12:34, 807998 bytes
    Device Identifier: {D7B78E66-6622-11CF-6E63-6A21A0C2CB35}
            Vendor ID: 0x8086
            Device ID: 0x2562
            SubSys ID: 0x01601028
          Revision ID: 0x0001
          Revision ID: 0x0001
          Video Accel:
    Deinterlace Caps: n/a
             Registry: OK
         DDraw Status: Enabled
           D3D Status: Enabled
           AGP Status: Not Available
    DDraw Test Result: Not run
    D3D7 Test Result: Not run
    D3D8 Test Result: Not run
    D3D9 Test Result: Not run
    Sound Devices
                Description: Intel(r) Integrated Audio
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: PCI\VEN_8086&DEV_24C5&SUBSYS_01601028&REV_01
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: ac97ich4.sys
             Driver Version: 5.10.0000.3552 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: No
              Date and Size: 8/13/2004 13:00:00, 107776 bytes
                Other Files:
            Driver Provider: Intel
             HW Accel Level: Full
                  Cap Flags: 0xB5B
        Min/Max Sample Rate: 8000, 48000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                   Registry: OK
          Sound Test Result: Not run
    Sound Capture Devices
                Description: Intel(r) Integrated Audio
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: ac97ich4.sys
             Driver Version: 5.10.0000.3552 (English)
          Driver Attributes: Final Retail
              Date and Size: 8/13/2004 13:00:00, 107776 bytes
                  Cap Flags: 0x41
               Format Flags: 0xCCC
    DirectMusic
            DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS
         DLS Version: 1.00.0016.0002
        Acceleration: n/a
               Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port
                      Intel(r) Integrated Audio, Software (Kernel Mode), Output, DLS, Internal
                      Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
                      Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
            Registry: OK
         Test Result: Not run
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x040B, 0x2000
            FF Driver: n/a
          Device Name: USB Keyboard
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x040B, 0x2000
            FF Driver: n/a
    Poll w/ Interrupt: No
             Registry: OK
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x24C7
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 4/14/2008 05:00:00, 59520 bytes
    | Driver: usbd.sys, 4/14/2008 05:00:00, 4736 bytes
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x040B, 0x2000
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 4/14/2008 00:09:50, 14592 bytes
    | Driver: kbdclass.sys, 4/14/2008 05:00:00, 24576 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: termdd.sys, 4/14/2008 05:43:22, 40840 bytes
    | Driver: kbdclass.sys, 4/14/2008 05:00:00, 24576 bytes
    |
    + PS/2 Compatible Mouse
    | Matching Device ID: *pnp0f13
    | Service: i8042prt
    | Driver: i8042prt.sys, 4/14/2008 05:00:00, 52480 bytes
    | Driver: mouclass.sys, 4/14/2008 05:00:00, 23040 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x040B, 0x2000
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouclass.sys, 4/14/2008 05:00:00, 23040 bytes
    | Driver: mouhid.sys, 8/17/2001 13:48:00, 12160 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 4/14/2008 05:43:22, 40840 bytes
    | Driver: mouclass.sys, 4/14/2008 05:00:00, 23040 bytes
    DirectPlay Service Providers
    DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.6311)
    DirectPlay8 Serial Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.6311)
    DirectPlay8 IPX Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.6311)
    DirectPlay8 TCP/IP Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.6311)
    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: COM3
    DirectPlay8 TCP/IP Service Provider: Local Area Connection - 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: 288.3 GB
    Total Space: 305.2 GB
    File System: NTFS
          Model: WDC WD3200AAJB-00J3A0
          Drive: D:
          Model: SAMSUNG CD-R/RW SW-252S
         Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 62976 bytes
    System Devices
         Name: Intel(R) 82845G/GL/GE/PE/GV Graphics Controller
    Device ID: PCI\VEN_8086&DEV_2562&SUBSYS_01601028&REV_01\3&172E68DD&0&10
       Driver: C:\WINDOWS\system32\DRIVERS\ialmnt5.sys, 6.14.0010.4342 (English), 6/21/2005 17:12:34, 807998 bytes
       Driver: C:\WINDOWS\system32\ialmrnt5.dll, 6.14.0010.4342 (English), 6/21/2005 17:04:48, 38016 bytes
       Driver: C:\WINDOWS\system32\ialmdnt5.dll, 6.14.0010.4342 (English), 6/21/2005 17:04:42, 108157 bytes
       Driver: C:\WINDOWS\system32\ialmdev5.dll, 6.14.0010.4342 (English), 6/21/2005 17:04:32, 178844 bytes
       Driver: C:\WINDOWS\system32\ialmdd5.dll, 6.14.0010.4342 (English), 6/21/2005 17:11:50, 879228 bytes
       Driver: C:\WINDOWS\system32\hccutils.dll, 3.00.0000.4342 (English), 6/21/2005 16:43:38, 118784 bytes
       Driver: C:\WINDOWS\system32\igfxsrvc.dll, 3.00.0000.4342 (English), 6/21/2005 16:44:12, 348160 bytes
       Driver: C:\WINDOWS\system32\igfxpph.dll, 3.00.0000.4342 (English), 6/21/2005 16:47:56, 225280 bytes
       Driver: C:\WINDOWS\system32\igfxeud.dll, 3.00.0000.4342 (English), 6/21/2005 16:47:28, 225280 bytes
       Driver: C:\WINDOWS\system32\igfxcpl.cpl, 3.00.0000.4342 (English), 6/21/2005 16:46:18, 94208 bytes
       Driver: C:\WINDOWS\system32\igfxcfg.exe, 3.00.0000.4342 (English), 6/21/2005 16:46:08, 503808 bytes
       Driver: C:\WINDOWS\system32\igfxdiag.exe, 3.00.0000.4342 (English), 6/21/2005 16:46:46, 151552 bytes
       Driver: C:\WINDOWS\system32\igfxdgps.dll, 3.00.0000.4342 (English), 6/21/2005 16:46:50, 45056 bytes
       Driver: C:\WINDOWS\system32\igfxdev.dll, 3.00.0000.4342 (English), 6/21/2005 16:43:32, 139264 bytes
       Driver: C:\WINDOWS\system32\igfxdo.dll, 3.00.0000.4342 (English), 6/21/2005 16:43:16, 86016 bytes
       Driver: C:\WINDOWS\system32\igfxrenu.lrc, 3.00.0000.4342 (English), 6/21/2005 16:43:44, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxhenu.lhp, 6/21/2005 16:49:16, 57801 bytes
       Driver: C:\WINDOWS\system32\igfxtray.exe, 3.00.0000.4342 (English), 6/21/2005 16:48:18, 155648 bytes
       Driver: C:\WINDOWS\system32\igfxzoom.exe, 3.00.0000.4342 (English), 6/21/2005 16:48:58, 114688 bytes
       Driver: C:\WINDOWS\system32\igfxhk.dll, 3.00.0000.4342 (English), 6/21/2005 16:44:22, 126976 bytes
       Driver: C:\WINDOWS\system32\hkcmd.exe, 3.00.0000.4342 (English), 6/21/2005 16:44:34, 126976 bytes
       Driver: C:\WINDOWS\system32\igfxress.dll, 3.00.0000.4342 (English), 6/21/2005 16:43:52, 1245184 bytes
       Driver: C:\WINDOWS\system32\igfxhara.lhp, 6/21/2005 16:49:06, 59200 bytes
       Driver: C:\WINDOWS\system32\igfxharb.lhp, 6/21/2005 16:49:06, 59200 bytes
       Driver: C:\WINDOWS\system32\igfxhchs.lhp, 6/21/2005 16:49:08, 58430 bytes
       Driver: C:\WINDOWS\system32\igfxhcht.lhp, 6/21/2005 16:49:10, 59354 bytes
       Driver: C:\WINDOWS\system32\igfxhdan.lhp, 6/21/2005 16:49:12, 60244 bytes
       Driver: C:\WINDOWS\system32\igfxhdeu.lhp, 6/21/2005 16:49:12, 62339 bytes
       Driver: C:\WINDOWS\system32\igfxheng.lhp, 6/21/2005 16:49:14, 58623 bytes
       Driver: C:\WINDOWS\system32\igfxhesp.lhp, 6/21/2005 16:49:16, 60786 bytes
       Driver: C:\WINDOWS\system32\igfxhfin.lhp, 6/21/2005 16:49:18, 62770 bytes
       Driver: C:\WINDOWS\system32\igfxhfra.lhp, 6/21/2005 16:49:18, 62454 bytes
       Driver: C:\WINDOWS\system32\igfxhfrc.lhp, 6/21/2005 16:49:20, 62740 bytes
       Driver: C:\WINDOWS\system32\igfxhheb.lhp, 6/21/2005 16:49:20, 59471 bytes
       Driver: C:\WINDOWS\system32\igfxhita.lhp, 6/21/2005 16:49:22, 59687 bytes
       Driver: C:\WINDOWS\system32\igfxhjpn.lhp, 6/21/2005 16:49:24, 62578 bytes
       Driver: C:\WINDOWS\system32\igfxhkor.lhp, 6/21/2005 16:49:26, 66013 bytes
       Driver: C:\WINDOWS\system32\igfxhnld.lhp, 6/21/2005 16:49:26, 60141 bytes
       Driver: C:\WINDOWS\system32\igfxhnor.lhp, 6/21/2005 16:49:28, 60085 bytes
       Driver: C:\WINDOWS\system32\igfxhplk.lhp, 6/21/2005 16:49:28, 63208 bytes
       Driver: C:\WINDOWS\system32\igfxhptb.lhp, 6/21/2005 16:49:30, 61839 bytes
       Driver: C:\WINDOWS\system32\igfxhptg.lhp, 6/21/2005 16:49:30, 62465 bytes
       Driver: C:\WINDOWS\system32\igfxhrus.lhp, 6/21/2005 16:49:32, 61414 bytes
       Driver: C:\WINDOWS\system32\igfxhsve.lhp, 6/21/2005 16:49:32, 63269 bytes
       Driver: C:\WINDOWS\system32\igfxhtha.lhp, 6/21/2005 16:49:34, 62836 bytes
       Driver: C:\WINDOWS\system32\igfxhcsy.lhp, 6/21/2005 16:49:10, 60659 bytes
       Driver: C:\WINDOWS\system32\igfxhell.lhp, 6/21/2005 16:49:14, 61831 bytes
       Driver: C:\WINDOWS\system32\igfxhhun.lhp, 6/21/2005 16:49:22, 68112 bytes
       Driver: C:\WINDOWS\system32\igfxhtrk.lhp, 6/21/2005 16:49:34, 64513 bytes
       Driver: C:\WINDOWS\system32\igfxrara.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:04, 159744 bytes
       Driver: C:\WINDOWS\system32\igfxrarb.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:06, 159744 bytes
       Driver: C:\WINDOWS\system32\igfxrchs.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:08, 143360 bytes
       Driver: C:\WINDOWS\system32\igfxrcht.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:08, 143360 bytes
       Driver: C:\WINDOWS\system32\igfxrdan.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:12, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxrdeu.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:12, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxreng.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:14, 159744 bytes
       Driver: C:\WINDOWS\system32\igfxresp.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:16, 172032 bytes
       Driver: C:\WINDOWS\system32\igfxrfin.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:16, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxrfra.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:18, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrfrc.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:20, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrheb.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:20, 159744 bytes
       Driver: C:\WINDOWS\system32\igfxrita.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:22, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrjpn.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:24, 151552 bytes
       Driver: C:\WINDOWS\system32\igfxrkor.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:24, 147456 bytes
       Driver: C:\WINDOWS\system32\igfxrnld.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:26, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrnor.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:26, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxrplk.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:28, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrptb.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:30, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrptg.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:30, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrrus.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:32, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrsve.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:32, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxrtha.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:34, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxrcsy.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:10, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrell.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:14, 172032 bytes
       Driver: C:\WINDOWS\system32\igfxrhun.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:22, 167936 bytes
       Driver: C:\WINDOWS\system32\igfxrtrk.lrc, 3.00.0000.4342 (English), 6/21/2005 16:49:34, 163840 bytes
       Driver: C:\WINDOWS\system32\igfxext.exe, 3.00.0000.4342 (English), 6/21/2005 16:48:26, 106496 bytes
       Driver: C:\WINDOWS\system32\igfxexps.dll, 3.00.0000.4342 (English), 6/21/2005 16:48:28, 36864 bytes
       Driver: C:\WINDOWS\system32\ialmrem.dll, 6.14.0010.4342 (English), 6/21/2005 17:04:44, 49152 bytes
       Driver: C:\WINDOWS\system32\ialmgicd.dll, 6.14.0010.4342 (English), 6/21/2005 16:55:24, 2289664 bytes
       Driver: C:\WINDOWS\system32\ialmgdev.dll, 6.14.0010.4342 (English), 6/21/2005 16:57:12, 516096 bytes
       Driver: C:\WINDOWS\system32\iAlmCoIn_v4342.dll, 1.00.1000.0001 (English), 6/21/2005 17:04:44, 61440 bytes
         Name: Intel(R) 82845G/GL/GE/PE/GV/E Processor to I/O Controller - 2560
    Device ID: PCI\VEN_8086&DEV_2560&SUBSYS_00000000&REV_01\3&172E68DD&0&00
       Driver: n/a
         Name: Intel(R) 82801DB/DBM USB 2.0 Enhanced Host Controller - 24CD
    Device ID: PCI\VEN_8086&DEV_24CD&SUBSYS_01601028&REV_01\3&172E68DD&0&EF
       Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 30208 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 22:42:10, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 59520 bytes
       Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 7168 bytes
         Name: Intel(R) 82801DB Ultra ATA Storage Controller - 24CB
    Device ID: PCI\VEN_8086&DEV_24CB&SUBSYS_01601028&REV_01\3&172E68DD&0&F9
       Driver: C:\WINDOWS\system32\DRIVERS\intelide.sys, 5.01.2600.5512 (English), 4/13/2008 17:10:30, 5504 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 24960 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 96512 bytes
         Name: Intel(R) 82801DB/DBM USB Universal Host Controller - 24C7
    Device ID: PCI\VEN_8086&DEV_24C7&SUBSYS_01601028&REV_01\3&172E68DD&0&EA
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 22:42:10, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 59520 bytes
         Name: Intel(r) 82801DB/DBM/DA AC '97 Audio Controller
    Device ID: PCI\VEN_8086&DEV_24C5&SUBSYS_01601028&REV_01\3&172E68DD&0&FD
       Driver: C:\WINDOWS\system32\ksuser.dll, 5.03.2600.5512 (English), 4/14/2008 05:41:58, 4096 bytes
       Driver: C:\WINDOWS\system32\ksproxy.ax, 5.03.2600.5512 (English), 4/14/2008 05:42:44, 129536 bytes
       Driver: C:\WINDOWS\system32\drivers\ks.sys, 5.03.2600.5512 (English), 4/14/2008 00:46:38, 141056 bytes
       Driver: C:\WINDOWS\system32\drivers\drmk.sys, 5.01.2600.5512 (English), 4/14/2008 00:15:16, 60160 bytes
       Driver: C:\WINDOWS\system32\drivers\portcls.sys, 5.01.2600.5512 (English), 4/14/2008 00:49:42, 146048 bytes
       Driver: C:\WINDOWS\system32\drivers\stream.sys, 5.03.2600.5512 (English), 4/14/2008 00:15:16, 49408 bytes
       Driver: C:\WINDOWS\system32\wdmaud.drv, 5.01.2600.5512 (English), 4/14/2008 05:42:46, 23552 bytes
       Driver: C:\WINDOWS\system32\drivers\ac97ich4.sys, 5.10.0000.3552 (English), 8/13/2004 13:00:00, 107776 bytes
         Name: Intel(R) 82801DB/DBM USB Universal Host Controller - 24C4
    Device ID: PCI\VEN_8086&DEV_24C4&SUBSYS_01601028&REV_01\3&172E68DD&0&E9
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 22:42:10, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 59520 bytes
         Name: Intel(R) 82801DB/DBM SMBus Controller - 24C3
    Device ID: PCI\VEN_8086&DEV_24C3&SUBSYS_01601028&REV_01\3&172E68DD&0&FB
       Driver: n/a
         Name: Intel(R) 82801DB/DBM USB Universal Host Controller - 24C2
    Device ID: PCI\VEN_8086&DEV_24C2&SUBSYS_01601028&REV_01\3&172E68DD&0&E8
       Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 20608 bytes
       Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 143872 bytes
       Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/13/2008 22:42:10, 74240 bytes
       Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 59520 bytes
         Name: Intel(R) 82801DB LPC Interface Controller - 24C0
    Device ID: PCI\VEN_8086&DEV_24C0&SUBSYS_00000000&REV_01\3&172E68DD&0&F8
       Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 37248 bytes
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_00000000&REV_81\3&172E68DD&0&F0
       Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 05:00:00, 68224 bytes
         Name: Intel(R) 537EP V9x DF PCI Modem
    Device ID: PCI\VEN_8086&DEV_1080&SUBSYS_10001028&REV_04\4&3B1CAF2B&0&28F0
       Driver: C:\WINDOWS\system32\DRIVERS\IntelC51.sys, 2.15.0036.0000 (English), 3/5/2004 22:14:42, 1233525 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\IntelC52.sys, 4.58.0005.0000 (English), 3/5/2004 22:15:34, 647929 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\IntelC53.sys, 2.15.0036.0000 (English), 3/5/2004 22:13:52, 60949 bytes
       Driver: C:\WINDOWS\system32\DRIVERS\mohfilt.sys, 7.11.0000.0000 (English), 3/5/2004 22:13:38, 37048 bytes
       Driver: C:\WINDOWS\system32\intelmoh.dll, 1.00.0000.0000 (English), 3/5/2004 22:13:26, 172032 bytes
       Driver: C:\WINDOWS\system32\mhwt.dll, 1.00.0000.0000 (English), 3/5/2004 22:13:12, 53248 bytes
       Driver: C:\WINDOWS\system32\IntelCci.dll, 5.00.0000.0000 (English), 3/5/2004 22:12:56, 34293 bytes
         Name: Broadcom 440x 10/100 Integrated Controller
    Device ID: PCI\VEN_14E4&DEV_4401&SUBSYS_81271028&REV_01\4&3B1CAF2B&0&48F0
       Driver: C:\WINDOWS\system32\DRIVERS\bcm4sbxp.sys, 4.60.0000.0000 (English), 11/21/2006 04:25:44, 45568 bytes
    DirectX Components
       ddraw.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 279552 bytes
    ddrawex.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 27136 bytes
       dxapi.sys: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 10496 bytes
        d3d8.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 1179648 bytes
    d3d8thk.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 8192 bytes
        d3d9.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 1689088 bytes
       d3dim.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 436224 bytes
    d3dim700.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 824320 bytes
    d3dramp.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 590336 bytes
       d3drm.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 350208 bytes
      d3dxof.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 47616 bytes
    d3dpmesh.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 34816 bytes
       dplay.dll: 5.00.2134.0001 English Final Retail 4/14/2008 05:00:00 33040 bytes
      dplayx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 229888 bytes
    dpmodemx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 23552 bytes
    dpwsock.dll: 5.00.2134.0001 English Final Retail 4/14/2008 05:00:00 42768 bytes
    dpwsockx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 57344 bytes
    dplaysvr.exe: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 29696 bytes
      dpnsvr.exe: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 17920 bytes
       dpnet.dll: 5.03.2600.6311 English Final Retail 11/1/2012 19:02:42 375296 bytes
    dpnlobby.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 3072 bytes
    dpnaddr.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 3072 bytes
    dpvoice.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 212480 bytes
    dpvsetup.exe: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 83456 bytes
      dpvvox.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 116736 bytes
      dpvacm.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 21504 bytes
    dpnhpast.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 35328 bytes
    dpnhupnp.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 60928 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 4/14/2008 05:00:00 53520 bytes
      dinput.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 158720 bytes
    dinput8.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 181760 bytes
       dimap.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 44032 bytes
    diactfrm.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 394240 bytes
         joy.cpl: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 68608 bytes
       gcdef.dll: 5.01.2600.0000 English Final Retail 4/14/2008 05:00:00 76800 bytes
         pid.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 35328 bytes
      dsound.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 367616 bytes
    dsound3d.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 1293824 bytes
      dswave.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 19456 bytes
       dsdmo.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 181248 bytes
    dsdmoprp.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 71680 bytes
      dmusic.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 104448 bytes
      dmband.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 28672 bytes
    dmcompos.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 61440 bytes
       dmime.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 181248 bytes
    dmloader.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 35840 bytes
    dmstyle.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 105984 bytes
    dmsynth.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 103424 bytes
    dmscript.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 82432 bytes
      system.dll: 1.01.4322.2502 English Final Retail 1/9/2013 04:04:44 1232896 bytes
       dx7vb.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 619008 bytes
       dx8vb.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 1227264 bytes
    dxdiagn.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 2113536 bytes
       mfc40.dll: 4.01.0000.6151 English Beta Retail 9/17/2010 23:53:25 954368 bytes
       mfc42.dll: 6.02.8081.0000 English Final Retail 2/8/2011 06:33:55 978944 bytes
    wsock32.dll: 5.01.2600.5512 English Final Retail 4/14/2008 05:00:00 22528 bytes
    amstream.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 70656 bytes
    devenum.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 59904 bytes
      dxmasf.dll: 6.04.0009.1133 English Final Retail 4/14/2008 05:00:00 498742 bytes
    mciqtz32.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 35328 bytes
    mpg2splt.ax: 6.05.2600.6333 English Final Retail 1/1/2013 23:49:10 148992 bytes
       msdmo.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 14336 bytes
      encapi.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 20480 bytes
        qasf.dll: 11.00.5721.5145 English Final Retail 10/18/2006 21:47:18 211456 bytes
        qcap.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 192512 bytes
         qdv.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 279040 bytes
        qdvd.dll: 6.05.2600.6169 English Final Retail 11/3/2011 08:28:36 386048 bytes
       qedit.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 562176 bytes
    qedwipes.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 733696 bytes
      quartz.dll: 6.05.2600.6333 English Final Retail 1/1/2013 23:49:10 1292288 bytes
    strmdll.dll: 4.01.0000.3938 English Final Retail 8/26/2009 01:00:21 247326 bytes
    iac25_32.ax: 2.00.0005.0053 English Final Retail 4/14/2008 05:00:00 199680 bytes
      ir41_32.ax: 4.51.0016.0003 English Final Retail 4/14/2008 05:00:00 848384 bytes
    ir41_qc.dll: 4.30.0062.0002 English Final Retail 4/14/2008 05:00:00 120320 bytes
    ir41_qcx.dll: 4.30.0064.0001 English Final Retail 4/14/2008 05:00:00 338432 bytes
    ir50_32.dll: 5.2562.0015.0055 English Final Retail 4/14/2008 05:00:00 755200 bytes
    ir50_qc.dll: 5.00.0063.0048 English Final Retail 4/14/2008 05:00:00 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English Final Retail 4/14/2008 05:00:00 183808 bytes
       ivfsrc.ax: 5.10.0002.0051 English Final Retail 4/14/2008 05:00:00 154624 bytes
    mswebdvd.dll: 6.05.2600.5857 English Final Retail 8/5/2009 02:01:48 204800 bytes
          ks.sys: 5.03.2600.5512 English Final Retail 4/14/2008 00:46:38 141056 bytes
      ksproxy.ax: 5.03.2600.5512 English Final Retail 4/14/2008 05:42:44 129536 bytes
      ksuser.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:41:58 4096 bytes
      stream.sys: 5.03.2600.5512 English Final Retail 4/14/2008 00:15:16 49408 bytes
    mspclock.sys: 5.03.2600.5512 English Final Retail 4/14/2008 00:09:52 5376 bytes
       mspqm.sys: 5.01.2600.5512 English Final Retail 4/14/2008 00:09:52 4992 bytes
    mskssrv.sys: 5.03.2600.5512 English Final Retail 4/14/2008 00:09:54 7552 bytes
      swenum.sys: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 4352 bytes
    mpeg2data.ax: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 118272 bytes
    msvidctl.dll: 6.05.2600.5512 English Final Retail 4/14/2008 05:00:00 1428992 bytes
      vbisurf.ax: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 30208 bytes
       msyuv.dll: 5.03.2600.5908 English Final Retail 11/27/2009 10:11:44 17920 bytes
    wstdecod.dll: 5.03.2600.5512 English Final Retail 4/14/2008 05:00:00 50688 bytes
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,,
    WMAPro over S/PDIF DMO,0x00600800,1,1,,
    WMA Voice Decoder DMO,0x00600800,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00800001,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    Mpeg43 Decoder DMO,0x00800001,1,1,,
    Mpeg4 Decoder DMO,0x00800001,1,1,,
    WMT MuxDeMux Filter,0x00200000,0,0,wmm2filt.dll,2.01.4026.0000
    Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.2600.6333
    DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.5512
    Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.6333
    WM ASF Reader,0x00400000,0,0,qasf.dll,11.00.5721.5145
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,11.00.5721.5145
    AVI Splitter,0x00600000,1,1,quartz.dll,6.05.2600.6333
    WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.6333
    Indeo® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
    Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,8.00.0000.4487
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.2600.6333
    WMT Format Conversion,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.05.2600.6076
    WMT Black Frame Generator,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.6333
    Indeo® video 5.10 Decompression Filter,0x00640000,1,1,ir50_32.dll,5.2562.0015.0055
    WMT Screen Capture filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    Microsoft Screen Video Decompressor,0x00800000,1,1,msscds32.ax,8.00.0000.4487
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.2600.6333
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.6333
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.06.0000.0052
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.2600.6333
    ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.2600.6333
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.2600.6333
    File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,11.00.5721.5145
    WMT Import Filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    DV Splitter,0x00600000,1,2,qdv.dll,6.05.2600.5512
    Bitmap Generate,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,8.00.0000.4487
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.05.2600.6333
    Windows Media Video Decoder,0x00800000,1,1,wmv8ds32.ax,8.00.0000.4000
    WMT VIH2 Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Record Queue,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    HP VTK MPEG-1 Encoder,0x00200000,3,3,hpqvtk01.dll,100.00.0128.0000
    Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASX file Parser,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145
    NSC file Parser,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.2600.6333
    Windows Media source filter,0x00600000,0,2,wmpasf.dll,11.00.5721.5145
    Video Renderer,0x00800001,1,0,quartz.dll,6.05.2600.6333
    Frame Eater,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.05.2600.6076
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.2600.6169
    Video Port Manager,0x00600000,2,1,quartz.dll,6.05.2600.6333
    WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.2600.5512
    Video Renderer,0x00400000,1,0,quartz.dll,6.05.2600.6333
    HP VTK Rotate Filter,0x00200000,1,1,hpqvtk01.dll,100.00.0128.0000
    WM ASF Writer,0x00400000,0,0,qasf.dll,11.00.5721.5145
    WMT Sample Information Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.03.2600.5512
    Microsoft MPEG-4 Video Decompressor,0x00800000,1,1,mpg4ds32.ax,8.00.0000.4504
    File writer,0x00200000,1,0,qcap.dll,6.05.2600.5512
    WMT Log Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Virtual Renderer,0x00200000,1,0,wmm2filt.dll,2.01.4026.0000
    DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.2600.6169
    Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.2600.6169
    AVI Draw,0x00600064,9,1,quartz.dll,6.05.2600.6333
    .RAM file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145
    WMT DirectX Transform Wrapper,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    G.711 Codec,0x00200000,1,1,g711codc.ax,5.01.2600.0000
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.2600.6333
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.2600.5512
    Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
    Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,11.00.5721.5145
    ASF DIB Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASF ACM Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASF ICM Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASF URL Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
    9x8Resize,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WIA Stream Snapshot Filter,0x00200000,1,1,wiasf.ax,1.00.0000.0000
    HP VTK Frame Grabber Filter,0x00200000,1,1,hpqvtk01.dll,100.00.0128.0000
    Allocator Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.05.2600.5512
    Null Renderer,0x00200000,1,0,qedit.dll,6.05.2600.5512
    WMT Virtual Source,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    WMT Interlacer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.05.2600.6076
    Smart Tee,0x00200000,1,2,qcap.dll,6.05.2600.5512
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.2600.6169
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.6333
    Uncompressed Domain Shot Detection Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.2600.6333
    QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.2600.6333
    Wave Parser,0x00400000,1,1,quartz.dll,6.05.2600.6333
    MIDI Parser,0x00400000,1,1,quartz.dll,6.05.2600.6333
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.2600.6333
    File stream renderer,0x00400000,1,1,quartz.dll,6.05.2600.6333
    XML Playlist,0x00400000,1,0,wmpasf.dll,11.00.5721.5145
    HP VTK Resize Filter,0x00200000,1,1,hpqvtk01.dll,100.00.0128.0000
    AVI Mux,0x00200000,1,0,qcap.dll,6.05.2600.5512
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.2600.6333
    File Source (Async.),0x00400000,0,1,quartz.dll,6.05.2600.6333
    File Source (URL),0x00400000,0,1,quartz.dll,6.05.2600.6333
    WMT DV Extract,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Switch Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Volume,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Stretch Video,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.2600.5512
    QT Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.6333
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.2600.6333
    Indeo® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003
    Indeo® video 4.4 Compression Filter,0x00200000,1,1,ir41_32.ax,4.51.0016.0003
    WDM Streaming Data Transforms:
    Microsoft Kernel Acoustic Echo Canceller,0x00000000,0,0,,
    Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.2600.5512
    Microsoft Kernel DLS Synthesizer,0x00200000,1,1,,5.03.2600.5512
    Microsoft Kernel DRM Audio Descrambler,0x00200000,1,1,,5.03.2600.5512
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,,
    MSScreen encoder DMO,0x00600800,1,1,,
    WMVideo9 Encoder DMO,0x00600800,1,1,,
    MSScreen 9 encoder DMO,0x00600800,1,1,,
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.2600.5512
    Indeo® video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.2600.6333
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Intel Indeo® Video 4.5,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.2600.5512
    Audio Compressors:
    WMA Voice Encoder DMO,0x00600800,1,1,,
    WM Speech Encoder DMO,0x00600800,1,1,,
    WMAudio Encoder DMO,0x00600800,1,1,,
    IAC2,0x00200000,1,1,quartz.dll,6.05.2600.6333
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.6333
    PCM,0x00200000,1,1,quartz.dll,6.05.2600.6333
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.6333
    ACELP.net,0x00200000,1,1,quartz.dll,6.05.2600.6333
    DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.2600.6333
    Windows Media Audio V1,0x00200000,1,1,quartz.dll,6.05.2600.6333
    Windows Media Audio V2,0x00200000,1,1,quartz.dll,6.05.2600.6333
    GSM 6.10,0x00200000,1,1,quartz.dll,6.05.2600.6333
    Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.2600.6333
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.2600.6333
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.2600.6333
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.2600.6333
    Audio Capture Sources:
    Intel(r) Integrated Audio,0x00200000,0,0,qcap.dll,6.05.2600.5512
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.2600.6333
    Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.2600.6333
    WDM Streaming Capture Devices:
    Intel(r) Integrated Audio,0x00200000,2,2,,5.03.2600.5512
    WDM Streaming Rendering Devices:
    Intel(r) Integrated Audio,0x00200000,2,2,,5.03.2600.5512
    WDM Streaming Mixer Devices:
    Microsoft Kernel Wave Audio Mixer,0x00000000,0,0,,
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,0,encdec.dll,6.05.2600.6161
    Encrypt/Tag,0x00200000,0,0,encdec.dll,6.05.2600.6161
    XDS Codec,0x00200000,0,0,encdec.dll,6.05.2600.6161
    Audio Renderers:
    Intel(r) Integrated Audio,0x00200000,1,0,quartz.dll,6.05.2600.6333
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.2600.6333
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.2600.6333
    DirectSound: Intel(r) Integrated Audio,0x00200000,1,0,quartz.dll,6.05.2600.6333
    WDM Streaming System Devices:
    Intel(r) Integrated Audio,0x00200000,10,3,,5.03.2600.5512

  • I have purchased a Mac book pro and when I opened i tunes the songs that I previously purchased started to download.  I closed it and went to bed only to wake up to no songs in my i tuners account.  Can I please get these songs on my MAC back

    So I was so stoked to get my songs, I had windows on my old pc and upgraded my life with mac book pro.  When i got into my i tunes account it automatically startesd [pulling the songs I purchased.  I was amazaed jumping around like a kid,  I'm 39.  I was working on a project and purchased a couple songs that night to use in my movie.  I closed out everything and shut down the computer, Only to awaken to have it all taken away from me.  Why?   Can you please help me?

    Your music will only be where you put it.
    Copy it from your old computer, or your backup copy of your old computer.
    If for some reason you have failed to backup and you do not have the old computer, not good, then you can redownload some itunes purchases in some countries.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Can I still get  Photoshop 11 code to work on my new computer?

    Last year when Adobe migrated from Photoshop.com to Revel, Adobe gave me a free code to upgrade from Photoshop 9 to 11.  I used it and had no difficulty.  In April I bought a new Windows * computer, and tried to use the same code, but found it had expired in july, 2013.  I have installed the free 30 day trial for Photoshop 12, but would certainly prefer my free permanent old version of Photoshop 11.  can I get another free code for either version of Photoshop 11 or 12? Thanks.

    You are correct that I was provided with a serial number to upgrade from the Photoshop 11 trial software to the full version of Photoshop 11.  However that upgrade offer expired on July 30, 2013, and the serial number no longer works.

  • Can I please get some help!

    Hey everyone, I recently purchased a Linksy's router (WRT 54G V8), I have a few questions and I'm hoping someone can help. 1) What exactly does the Cisco button on the front do, it's usually orange, but when I press the button it turns white? 2) When I first hooked it up (hard wired it to my desktop PC), it worked great, I disabled wireless in the routers settings since I won't be using it, however I did not create a password for wifi protection simply because I disabled it. Anyways after about a few hours I couldn't connect to the internet. If I disconnect the router and use just my cable modem I have internet, but not when the router is connected. I have no idea why it initially worked and now it doesnt, all lights are lit up, the router doesn't seem to be a lemon, but now I can't even get into the routers settings. I've tried resetting the router but it still won't allow me to get into the router to change anything. Someone suggested I might have to enable DHCP in the router or make some other changes, I would like to try and get this router working again but I have no idea how to get into the settings, I have no idea why the first time I hooked it up the router worked but after a few hours it wouldn't allow me to get online. I can't do ipconfig /release or renew because nothing comes up when the router is connected, it only works when the router is not connected. Anyways this seems to be a problem with many people, I'm runng Win XP Pro sp2 and if I can't get into teh router then I'm not sure what I need to do. If there's any advice please post a reply, thank you.
    Message Edited by sayers on 07-01-2007 08:53 AM

    1) That button is for the easy link option when you try to connect wireless devices.
    2) Do a hard rest on your router by pushing/holding the small reset button on the back panel for at least 30 seconds then release it.  Wait 2 - 3 minutes and unplug/replug the power cord.  Then connect a PC only to the router with a Ethernet cable. Then open your browser and type in http://192.168.1.1 into the address bar.  That should open your routers log on window to you routers user interface and by default the user is left blank and the password is admin.  That should get you into your routers settings and since you have a cable modem make sure it is set to Obtain IP Automatically and the DHCP is enabled with the IP range large enough to support all your PC's plus 2 or 3 for future additions.  Then the most important hit the save settings on each page after any changes are made to that page.  Then since you said you are not going to use the wireless go to the wireless tab and change the SSID to something other then linksys and disable Broadcast SSID.  Then make sure your router has the latest firmware installed and if not download and install the latest version.  If you do flash the firmware go back and do everything over like you did above except the hard reset.  Also, you should change the routers password to something you can remember or write it down in a save  place.
    Here is a link to the web page with the information on your router.
    http://www.linksys.com/servlet/Satellite?c=L_Product_C2&childpagename=US%2FLayout&cid=1149562300349&...
    Message Edited by Ikester on 07-01-2007 10:26 AM
    Richard Aichner (Ikester)

  • Adobe - Can you please get your code straight before releasing it !

    The Adobe Creative Cloud CC version is the drop that makes the water in the glass spill over...
    The Creative Cloud App is not at all reflecting anything current etc.. and one has to sign out all the time.
    This is baby-code !
    Lightroom 5 is about the most erratic software I have ever worked with...
    1) Constant Freezes
    2) New Version 5.2 NOT showing in Creative Cloud App
    3) When trying to download manually - ACC app opens and nothing happens
    4) If one selects 2500 Photos in Lightroom and reply a preset to all the images at one WHILE the previews are being updated) LR WILL freeze
    etc etc etc etc
    You really should be testing you software before you release it to the public. You code has been disintegrating the past years and I ann many of the co-workers
    are just waiting for other apps to emerge. What happened to the old adobe ? The quality-makers ????
    I'm on OS X 10.8 and have NO idea what it looks like in the windows world. But I know that you have completely LOST any control over your own apps on OS X!
    I am a very unhappy camper and if this does not change in the near future you are going to have people that littel cure adobe river !

    Hi ;-)
    1) I have used LR since V1 and since V4 this software along with ALL adobes software has been fiercely deteriorating.
    2) Adobe according to themselves ARE reading and responding to these forums... Unless they support pages are as bull as their "alleged" real human behind a chat ;-)
    3) I process around 30,000 images per week in Lightroom (paid work) and let me tell you at that amount of images... This app is not in the pro league... BUT it COULD be... If only adobe would test their software prior to embarkin on the PAYING public... Perhaps because so manu are using pirated versions of adobes software, they have stopped caring.. As a long time paying client I feel *****-slapped !@
    I do NOT beta test for adobe ! If they wanna get rid of their bugs, all they need to do is to contact me and add me to the list.. That will fix at least 100 bugs currently IN the ware... But I highly doubt that they beta test this software... If they do, they should REALLY skim thru their testers and relieve them of their duty - No personal offence meant !

  • Can I please get an email, when you guys finally release a 64-bit version of Firefox?

    Here's what I posted on the Firefox Developer site, after spending enough time there to get a sense of what they're doing, and why they have totally failed to issue a 64-bit version of Firefox.
    So, my question is: where can I register an email address, to make sure I get notified when Firefox issues a 64-bit version?
    I think I'm starting to see why the "developer community" for Firefox has failed to grasp the NEED to issue a 64-bit version. It clearly has become a very cozy and comfortable group of insiders, who can all feel comfortable with the tech-nerd level of the group, and don't want to be bothered by us outsiders who don't belong to developer groups.
    Meanwhile, the fact that Java compatibility, across different 32-versus-64 bit browsers, is causing us outsiders lots of problems, is driving outsiders like me to say, "To hell with those nerds. If they can't find some way to issue a modern version of Firefox, I'm deleting it, and going to Chrome, instead, as my main alternative to IE".
    You guys provided a real nice bridge, over the past few years, which really did help force Microsoft make IE a whole lot better.
    But, you got just too incestuous, and inbred, and you failed to see what was going on outside your little club.
    Please send me an email, if you ever issue a 64-bit Firefox. I like Firefox a lot, and would love to use it again, some day.

    Let me also copy and repeat -- since the developers' club apparently has chosen to not give it any weight or credibility -- a comment by a completely different user, in a different thread:
    "I am using the 64-bit nightly, and it is FAR faster than any release in 32-bit, and I have 2GB of ram. Usually the addon compatibility thing takes minutes, when with the nightly 64-bit, I was done in a matter of seconds. also, I notice that it is faster, pages load faster, there is less lag, and it all around seems better than 32-bit in every aspect, even though it is just automatically compiled and not tweaked."
    So, the developer's club position remains, "there really isn't much need for a 64-bit version", despite comments like that. Hmmm . . .
    Are you SURE you want to stand directly behind that answer, while people shoot at it?

  • Apple, can we please get an option to disable coverflow?

    I have been lurking on these forums for About a month now. Patiently, hoping for Apple to release an option to disable coverflow. I´ve been loyal. I´ve been patient, but still not software update to fix this horrid feature. So far, one of the biggest and most voiced complaints has been on this coverflow feature. People Want -- no, need -- the option to disable it. And that is my only problem with the device.
    APPLE, please give us a software fix pronto. As a software developer, I do not understand why this would take so long to do. Can anybody from Apple, who reads this forum, confirm that a software fix will be coming? I know there has been mention of it, but I have seen nothing official from Apple.
    If there isn´t a software fix to allow us to turn coverflow off, I plan on getting rid of this device for a Sansa Clip. I bought this device for working out and being on the go, I cannot workout and be on the go, and use this device effectively when I have to constantly take it out of my pocket to adjust the volume. And putting the hold switch on to make sure it does not go into coverflow mode is extremely annoying. I want to be able to adjust it while it is in my pocket. There have been multiple threads on this. Can we have a fix already? And if not, just tell us. I will gladly get another device and hawk this thing on Amazon or Ebay or just flat out return it.
    If a fix is coming, somebody from Apple should indicate this, because for me, personally, I am tired of waiting for something that should have been implemented right out of the gates. I can understand if they missed it, but it should have been fixed quickly.
    What´s more, coverflow ruins the battery life. Is this just some plot to get the batteries to drain quicker or what? I would bet that Apple´s top selling Ipod is, in fact, the nano, and to not fix this problem might get loyal people like me to thinking, well, ¨Hey, maybe they want people´s batteries to run out quicker so they will buy a new one quicker, no?¨ Perhaps a little too tin foilish on my part, but you have to wonder. To me, the lack of contact regarding it in these forums and the lack of fix has got me to thinking that, and has me seriously considering dropping Apple´s digital media player lineup. It is a simple software fix, is it not?
    Honestly, I could understand if this fix was something more complicated, like implementing a codec that needed hardware decoding. I could understand if it would take longer. But what we are talking about here is something to turn the coverflow off. This shouldnt be too difficult. After all, the firmware for the new nano does, in fact, allow us to tirn off shake to shuffle. Why not coverflow?
    And, if it is not, if this option cannot be implemented because of some wierd thing with the hardware -- please explain that to us, Apple. I could have easily bought a Zune, or something from Sansa to go workout, but I stuck with Apple because I am loyal and usually the products are good, but this is absurd.
    So apple, will there fix a software fix coming shortly?
    Or will it be several months down the line (in which case, I will get rid of it)
    What is the holdup?
    Can somebody from Apple please reply?
    An ipod Nano owner. (but for how long?)

    Dude, your annoying. I was answering a question, so it would say I have 0 unresolved questions. What if a google search pulled up my question, though not as popular as the original coverflow thread? I know Apple already fixed this issue, but I wanted to make my question answered. A) because it could be helpful, if google pulled up my specific thread and B) I was tired of having an unresolved question in my menu whenever I logged on.
    Think about it before you post something idiotic and rude.
    If you work for Apple, I am sure you could appreciate this, but probably not.

  • HT4993 I would like to cancel my Icloud account.  Can I please get some assistance?

    I would like to cancel my ICLOUD account as I no longer have an Iphone. 

    If you didn't purchase additional storage you don't need to do anything.
    If you have additional storage, the following is from Manage your iCloud storage
    If you need more iCloud storage, you can purchase additional iCloud storage from your iOS device, Mac, or PC. Learn more about your iCloud storage plan. If you don't need the additional storage that you purchased, you can downgrade your storage.
    Get help resolving storage issues.
    For a full refund, contact iCloud Support within 15 days of an upgrade or within 45 days after a yearly payment. Partial refunds are available where required by law.

Maybe you are looking for

  • How to change line color in line graph

    Hi, I have one 'on change of' field and has  three 'show value' fields. Crystal has assigned default colors for  these 3 lines..but i want to assign my own colors..is this possible? and can we adjust the line thickness? I am using crystal 2008 comple

  • Communicate using libusb0.dll

    Hello, I have to develop an application in LabVIEW witch manage the MOWAY robot. I communicate with a RC USB Key so i have to handle with the libusb0.dll. My problem is the "usb_device *dev" used to open every function of the Dll and this type is def

  • IPhone 3G - OS 4.0.1 tested

    Tested and it's perfect full operator signal full wifi signal and software response time too fast. Thank you apple you are the best keep it up.

  • Disable autocorrect and spelling/grammar check features with Computer GPO

    We have two classrooms that need to have all the autocorrect and spelling and grammar check disabled.  I know there is a way to do it by a user GPO, but is it possible to do it by computer (with a registry change, etc)?  We can't do it by user becaus

  • Image Stacks (Photoshop Extended)

    This question was posted in response to the following article: http://help.adobe.com/en_US/photoshop/cs/using/WS1E389632-4B37-425e-8EAB-1384C0B432D3a.htm l