Just purchaed a xi-fi extreme gamer and having problems getting drivers to insta

Just bought an extreme gamer and tried to install under win xp pro. I can get the system to recognize the card but when I either try and apply the drivers from the disk or updated drivers from the web the systems then reboots into and endless loop or safe mode? Any ideas? Other than the drivers are bad? ? I have physically re-installing the card. AMD Athlon 64 3400+.5 gig ramNvidia 7600Gt

Go into the motherboard BIOS and turn off things you do not use, like serial and parallel ports.Free up IRQsTry changing the Plug and Play setting, if currently "Yes" switch to "no".Did you turn off the motherboards built in Sound?Or were you using some other?add on?sound card?

Similar Messages

  • I'm running iTunes 10.5 on my Macbook Pro and software 4.1 on my 2g iPod touch and having problems getting photo's to sync. Same error iPod can't be synced req'd file can't be found. Tried deleting the photo cache, restoring the iPod etc but to no avail.

    I'm running iTunes 10.5 on my Macbook Pro and software 4.1 on my 2g iPod touch and having problems getting photo's to sync. Same error, "iPod can't be synced req'd file can't be found". Tried deleting the photo cache, restoring the iPod etc but to no avail.

    Try here:
    iTunes: Unable to sync photos
    Usually deleting the iPod Photo Cache Folder works. Note that if you sync via the folder method, make sure you dlete all the ifolders since :
    The iPod Photo Cache stores the photos that are optimized for display on your iPod, iPad, or iPhone. The location of this folder depends on the syncing options you select. In iTunes, if you change the selection in the “Sync Photos From” pop-up menu, a new iPod Photo Cache folder will be created (and the previous folder will remain).

  • New to this iPOD game, and having problems! Please help!

    So I finally got my hands on a Nano yesterday, and ever since then some odd things have been happening. I would appreciate any help to the following questions/problems I've been having, because the applecare stuff does not seem to really be either helping or addressing my issues.
    1. When starting iTunes, I was told (once it reconized my nano) that I neeed to install the new software for the nano, i expected this and downloaded it, and followed the directions. As soon as I did that though I started getting "Corrupted Error" messages in iTunes. To get this to stop I just reinstalled iTunes...I was able to transfer things now, but now the system does not seem to reconize that the nano has the new software, and asks if I want to install it, and when I do...(again) I start getting those corrupt errors again.
    2. I will move some songs from my iTunes library, to my nano, and it says they transfer over. I then eject my nano from iTunes, wait for the "do not disconnect" to go away, and unplug it, and sometimes, my newly transfered songs are no longer on my nano. Am I doing something wrong?
    3. I went to update my iPod with some playlists from my library, I went to the options, and said "only update from these lists" It updated my ipod...and deleted everything else off of it, and to add insult to injury, it only added the title of the play list, and NOT the actual song files
    I know this is a lot, but I'm really frustrated, so any help would be appreciated.
    Thank you so much for your time.

    Hi,
    Read this link if it happens again: iPod: What to do if Windows displays an "itunes.exe - Corrupt File" message
    There is another post I think it is in the User Tips Library that goes into more detail as well.
    Regards
    Colin R.

  • Just upgraded to the latest device software and having problems

    Hello Everyone,
    I received an email from RIM telling me that I needed to upgrade my phone's (Blackberry Curve 8310) software. I went through the process and now all of my contacts are re-arranged. Before the upgrade I had all of my contacts listed as such: Name of contact; Mobile No.; Home No. etc... Now there is a new contact for each additional number that I have for each contact. Has anyone else experienced this? Anyone know a fix?
    Also, my internet browser is gone. I don't have a goto button or anything. Bookmarks are gone... (*slight cursing*). Can anyone help me get my phone back to where it was prior to the update?
    Thanks
    TexSbennett

    please read this article from the public knowledge base :
    http://www.blackberry.com/btsc/KB03710
    Browser icon does not appear on the BlackBerry smartphone
    The upgrade forgot to put the browser back. it is cause 5.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • How can I get itunes to download on my PC. I just got an ipod classic for Christmas and can not get Itunes to download. Website goes to downloaded page but i never get a downloading popup. I even turned off my popup blocker.

    How can I get itunes to download on my PC. I just got an ipod classic for Christmas and can not get Itunes to download. Website goes to downloaded page but i never get a downloading popup. I even turned off my popup blocker.

    Make an appointment at the genius bar.
    If you went without an appointment, then it would make sense that you could be turned away.

  • I just had major issues with my Mac and had to get a new logic board. When I got the computer back and tried to reinstall Photoshop- it says error 6. What do I do?

    I just had major issues with my Mac and had to get a new logic board. When I got the computer back and tried to reinstall Photoshop- it says error 6. What do I do? It is impossible to get any phone number for adobe.

    Try these solutions: Error "Licensing has stopped working" | Mac OS

  • Just activated BlueAnt S4 with my iPhone4 and having an issue with the Phone Commands

    Just activated BlueAnt S4 with my iPhone4 and having an issue with the Phone Commands - as I have multiple numbers for people (ie: iPhone, Work, Home), is it the BlueAnt that is having the issues or the iPhone? Tried to eliminate info on my partner's contact in with only 2 contact numbers (iPhone, Home) and one or the other is totally screwing up. Seems, from BlueAnt website, that it would be the iPhone contacts...and the guessing begins?!! Anyone else have similar issues when BlueAnt S4 was paired and giving 'Phone Commands'?? Any suggestions would be beneficial as I've spent way too much time on the web looking for a good fix/answer. Thanks.

    On your new phone: Settings>General>Reset>Erase All Content & Settings. Start over, this time using your new ID.

  • Just purchased Wndows Vista and having problems with the port for Palm 125

    I just purchased a Windows Vista computer and having problems with getting my Palm 125 to sync with the desktop.  I get an error message saying:  "Com1 not available"  What do I do?
    Thanks,
    Frustrated
    Post relates to: Palm m125
    This question was solved.
    View Solution.

    Sorry, that didn't work.  I get no drop down menu from the Hot Sync Manager for the Serial Port.  What comes up often is:  "The selected port, COM1, is not available at this time.  Hot Sync Manager will open the port when it becomes available." 
    Could it be the Norton Antivirus Firewall that is preventing the Hot Sync Manager to open the Serial Port?  Just a thought.  Thanks for your help.
    Post relates to: Palm m125

  • I just bought a iPod nano 7th gen and having issues with clear radio channels. Please help.

    I just bought a iPod nano 7th gen and having issues with clear radio channels. Please help.

    You can send it in to them: https://expresslane.apple.com/GetproductgroupList.action?PRKEYS=PF3

  • I have just brought home a new ipad 2 and i cant get it to my itunes to recognise it, my pc was picking it up as a camera but i have stopped that .  I cant sync it with itunes

    i have just bought a brand new ipad 2 and i cant get it to sync with itunes on my pc, running windows vista.  Tried all the stuff on the itunes diagnostics but still cant get itunes to pick it up.  Any ideas.

    Try both of these -
    Connect your iPad to your computer
    Open My computer / Computer
    Locate the Apple camera icon
    Right click on it and go to Properties
    There should be a place to set what will happen each time the device is connected, set it to do nothing.
    http://support.apple.com/kb/TS1538

  • Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    We aren't Apple, just users like you volunteering to help other users with problems. Threatening to go to Samsung doesn't mean anything to us. What troubleshooting have you tried so far?

  • I have bought Adobe Photoshop Elements 10 last August 2013 and having problems with installing it on Windows 8.1?

    I have bought Adobe Photoshop Elements 10 last August 2013 and having problems with installing it on Windows 8.1.  Why am I having this problem?

    You can check you Adobe account online to see if the serial number is registered under your account.  If not then your only option will likely be to contact Adobe Support directly thru chat to see if they can provide you with a/the serial number. For them to do so will require you being able to prove ownership.
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Having problems getting podcast on iTunes, tried to resubmit and got an already submitted error

    Having problems getting podcast on iTunes, tried to resubmit and got an already submitted error. How can I get the podcast on iTunes?

    You didn't need to get it removed: you can make any changes to a feed that you want, changing, adding or deleting episodes, and iTunes will pick them up.
    However, in the present situation you have fallen over a bug in the submissions process. The workaround is changing the title; as this hasn't worked you need to change the feed URL if possible, and also you could change the contents of the 'link' tag.
    If you can't get it sorted you could try emailing Support at podcasts 'at' apple.com and asking them to reinstate you (give them all the details) - their responses are a bit variable, but they may help you.

  • I have iPod touch 5 and having problems

    I have iPod touch 5 and having problems with charging(data cable is ok), when I have contacted support in my country, they would like to have recieve and warranty letter that I do not have. What should I do?

    Unfortunately I am not in US(.
    Ukrainian Apple Authorized Service Provider tells me to bring it, but iPod was purchased in US)

Maybe you are looking for

  • OTHER TABLE FIELD

    Hi all i am compiling the below code am getting evrything fine but am not able to get the G/L account description from the table SKAT.The other firlds that am accessing from BSEG table are getting through.Please help with regards vijay REPORT  ZGLACC

  • Solaris 10 09/10 fails to start X with NVidia card

    Hi folks, I've just set up a new workstation for Solaris 10 x86, but I can't seem to get X to start. I've got two NVidia 6200 cards on PCI (as the board doesn't have PCIe yet) which should be fairly mainstream. However, on startup I get in the syslog

  • Why Logic Express 9.1.6 (64bit) crash in 10.6.8?

    I never had any crashes in Logic Express before. I lost some great irreplaceable recordings I made because Logic Express 9.1.6 (64bit) crashes a lot in 10.6.8. Please help.                                                                              

  • Page faults trying to generate results to text file

    I am on Developer 6.0 and when I click on the menu > FILE > Generate to file > Text -- I get an illegal operation message box Stating "RWRBE60 caused an invalid page fault in module CA60.dll at 017f:67f30cb3." Friends in other companies also experien

  • Aperture cant find master yet the image is showing up but i cant edit it

    pls help i had some hot images of for my clients port while doin some transfering aperture closed down not it say that some of the images are not readable format and the others that show up have a sliced rectangle badge in the corner but the image is