Can't get a USB Connection

I have a BB 8330, which my computer has been able to detect in the past, but can't now. The computer is an HP EliteBook 6930p running Windows XP Service Pack 2. For what it's worth, I'm using a new USB cable, but the BB is drawing power through it, so I think the connection is being made.
I upgraded my Desktop manager software to Version 4.7
I tried going through the procedure here:
http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB02640&sliceId=SAL_Pub...
and ran into a problem. Task 3 calls for updating the USB driver. I opened the device manager. There was no "Unknown Device" or "Other Device". However, when I went to USB controllers, there was no RIM Handheld option. I ultimately found the RimUsb.sys file in C:\Program Files\Common Files\Research In Motion\USB Drivers, but the system doesn't seem to detect it.  I even copied it to C:\WINDOWS\system32\drivers and restarted, but it made no difference.
What should I try next?
Solved!
Go to Solution.

I just tried a different USB cable and it works. Must be a problem with my cable.

Similar Messages

  • Hi I changed my pass code and can't remember it and now my phone is saying connect to iTunes but I can't get it to connect could you help pls

    Hi I changed my pass code and can't remember it and now my phone is saying connect to iTunes but I can't get it to connect could you help pls

    Hi
    Have you tried different USB ports and different cables just to rule out all the variables?
    See here for forgotton passcodes:
    http://support.apple.com/kb/ht1212
    Hope this helps

  • Hey my brother just got an ipod touch and i can't get it to connect to itunes what to i do he's really excited HELP!! :)

    hey my lil brother just got an ipod touch and its saying connect to itunes and its plugged into my computer and im at the itunes website but i can't get it to connect can anyone HELP ME??!! my mom said that she wants his ipod to be connected so that its on my itunes account so i can see if he buys anything.
                                       PLEASE HELP ME !!!
    ~Maddie

    iOS: Device not recognized in iTunes for Windows
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    If you  have iTunes 11 turn on the Sidebar.  Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar

  • Just brought home my IPad. I have the MIFI on and it is bringing in a signal to my IMAC but I can't get it to connect to my IPad. Any suggestions?

    I just brought my IPad home but can't get it to connect to my MIFI. The MIFI is on and working as it's sending a signal to my IMac. How do I get it to recognize the MIFI so I can go online with my IPad?

    Does your iPad see you network?  If no, are you broadcasting its SSID?

  • I'm staying at my house in Peru, South America. From my PC laptop I can see my neighbor's wifi service network, but I also have my mini iPad and I can not figure out why I can't get any wifi connection from my area. Is there a setting I need to do?

    I'm staying at my house in Peru, South America. From my PC laptop I can see my neighbor's wifi service network, but I also have my mini iPad and I can not figure out why I can't get any wifi connection from my area. Is there a setting I need to do?

    Yes, I did try to go on my settings>wifi and was waiting for any wifi signals to pick up, but nothing shows up. But on my PC I get a whole list of networks to choose from. Regarding my neighbor, I already have her password that is why I was able to get it on my PC, the problem is that the mini Ipad is not picking any signal neither can it locate me when I go to maps.

  • Bought a new Ipod touch and the WiFi does not connect.  Tried Reset and total Restore, does not connect to Router on DHCP, tried Static manually and still can not get it to connect even though it registers as connected.

    Bought a new Ipod touch and the WiFi does not connect.  Tried Reset and total Restore, does not connect to Router on DHCP, tried Static IP, Subnet, Router and DNS manually and still can not get it to connect even though it registers as connected.  Using Airport for router, latest firmware, no problems with Iphone 4 or Macbook Pro or any other internet devices.  After total Restore (factory settings) tried again, showed connected to router, but does not display "check" next to router but little rotating icon even though the wifi range signal shows connected at full strength and it says it is connected.  Just can't seem to get it to generate an IP.  Any solutions other than turning it on and off again?  Not a Merry Christmas morning.

    Ok, so, a couple of things:  Denisefromwaleska and I have the exact same size/type/color iPod.  Now wishing I'd bought the black one maybe...
    Second, Airport is an Express and I have a second one that I carry with me when I travel.  Tried to connect my Airport Express to the internet and could not although the iPod did recognize the router and tried to connect to the internet for some time, unlike my previous problem.  Updated firmware on my travel router, still could not connect to the internet.  Going to try to set up a manual Static IP on the travel router here in a few and conect through it although I predict the problem will persist. Back on the Christmas Present Airport Express router, it is back in play and working fine for all devices save the iPod. 
    Thanks again for all your help, hopefully I can get a solution in place soon,

  • I can't get a database connection.

    Background: I've already built two sites with databases using DW CS6, PHPMySQL, and the same hosting company, so I know they allow remote connections. (I'm developing using the remote host because I've never found a tutorial for how to move it all from local XAMPP to my host - but hey, it's been working fine so far.)
    I set up the database using CPanel Databases, added the user and password, no problem. Went into PHP MySQL and added a table, logged out and back in, the table is there as defined.
    In DW, I double-checked the testing server, tested the connection, and it connected successfully.
    Then I opened a page for editing and added a database connection (all as I had done on the previous two sites that work fine). I named the connection, entered the user, the password and tried to SELECT a database. No luck. HTTP Error 404. I manually added the database (the only one) and clicked test. Again no luck. HPPT Error 404.
    I double checked the testing server, double checked the DB information, and nothing seems to work.
    Any clue what I'm doing wrong? Thanks so much if you can help.

    UPDATE:
    Okay, this is really getting weird. As a typcial computer nerd, I know there are many roads to success, so if one doesn't work, try another.
    Trying a different solution, I opened a test.php page and wrote the following code:
    <?php
    echo "<p>Now testing database connection.</p>\n";
    $db_server = "localhost";
    $db_username = "mcsb831_mbradmin";
    $db_password = "***(redacted)***";
    $link = mysql_connect($db_server, $db_username, $db_password);
    if (!$link) {
        echo "Could NOT connect.<br />\n";
    }else{
        echo "Connected Successfully.<br />\n";
        mysql_close($link);
    I loaded the page to the server and guess what? I got the message "Connected Successfully."
    Hooray! Now I know the database server is running, and the database and user name and password are valid.
    I went to the DW MbrConnect01.php file (the name of the CONNECTION file that Dreamweaver creates when I tried to make the connection through DW), and verified the database name, user name, and password were correct -- I copied and pasted them from the code above to make absolutely certain there were no transcription errors. Here's that file:
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_MbrConnec01 = "localhost";
    $database_MbrConnec01 = "mcsb831_members";
    $username_MbrConnec01 = "mcsb831_mbradmin";
    $password_MbrConnec01 = "***(redacted)***";
    $MbrConnec01 = mysql_pconnect($hostname_MbrConnec01, $username_MbrConnec01, $password_MbrConnec01) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    And guess what?
    I GOT THE STINKING ERROR MESSAGE AGAIN!!
    (See previous post for the full text of the message.
    Yes, I checked the server using an FTP browser for the presence of the required files, and they are there.
    Does anyone have a clue what's going on here? I would absolutely love to use DW's DB automation tools, but none of them will work if I can't get a DW connection to work.
    I notice that my code uses mysql_connect while the DW-generated code uses mysql_pconnect (which is deprecated), could that be the culprit? How do I fix it if so?
    PLEASE, can someone help?

  • How can I get an automatic connection to wifi on startup?

    We lost internet connection during snow/ice storm. I have to manually connect to wifi now. How can I get an automatic connection to wifi?

    An 'uninterruptible power supply' that automatically steps in and takes your computer
    off the grid momentarily, will work in cases of brown-out (under-power) & surge (spike)
    and it does so at a fast rate. Most of these also offer a way to customize sensitivity to
    a certain degree, depending on model and should there be a valid reason to do so.
    An old-school surge protector, even if it has a few fancy LEDs, is no protection. And
    for less than a replacement logic board or an hour of authorized Apple repair, the UPS
    is a fairly good investment. Backup battery is user-replaceable in the better made units.
    Most of them offer extra ports that do not use the battery-backup power feature. If you
    need to have more items run when the power switches up/down or out, you'd need to
    consider a larger capacity backup power unit. In some instances, the makers of these
    (for a time, perhaps even now) did caution users to not install more than one UPS per
    room when the same leg may have inadequate grounding, since these can dump the
    excess surge power from several different UPS units and overload the ground.
    That said, the gamble is yours. I've found to have and use these is some protection
    and when away from the computer. Most settings for controlling them appear in OS X.
    No additional software is required. Other settings may be on the UPS front panel.
    Good luck & happy computing!

  • Hi..I have an AirPort Extreme base connected to my DSL Modem and has been working fine. But I recently bought another DSL modem along with the latest Airport Express. With this one however I can't get it to connect to the Internet. Any suggestions?

    Hi..I have an AirPort Extreme base connected to my DSL Modem and has been working fine. But I recently bought another DSL modem along with the latest Airport Express. With this one however I can't get it to connect to the Internet. The light on the Express is flashing green though. Does it mean I have to re-set the settings on Airport Utility? I.e. the old settings haven't been cleared yet. Any suggestions?

    Let's see if I can get this straight.
    You have an Airport Extreme base station that is set to "Create a wireless network" and you have the box checked for "allow this network to be extended"....
    Then you have an Airport Express that is set to "Extend a wireless network" which you selected the name of your network in the box...
    Correct?
    See this Apple document:
    http://support.apple.com/kb/HT4259?viewlocale=en_US&locale=en_US
    The wireless unit on the right of the diagram can be either of the newer Apple base stations.
    Extreme, Express, Time Capsule

  • I'm trying to connect my Kodak ESP c310 to my Mac mini but it's not coming up in my default printers menu and everything else is working. Their on the same network, software and drivers up to date, but can't get it to connect.

    I'm trying to connect my Kodak ESP c310 to my Mac mini but it's not coming up in my default printers menu and everything else is working. Their on the same network, software and drivers up to date, but can't get it to connect.

    You can purchase recovery disks from HP. Here is a webpage showing you how to do that:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=bph07143
    If HP no longer supplies your specific recovery disk, you can usually find one from a 3rd party site, such as www.restoredisks.com for between $20 and $30.

  • Bought New Extreme, works great with Macs but can't get PC to connect

    I just bought a new Airport Extreme this weekend. As promised it was a breeze to set up and things were working well until I tried to connect my TIVO and my work laptop (Windows) to the network I set up. I can't get either to connect to either the base network or the guest network with any level of security set on it. My only success has been to configure the Guest Network without security on it (but I don't like that idea).
    Please help.

    I don't see "Equivalent Network Password" as a selection on the Base Network screen (or any of them for that matter).
    Isn't this the password for my base station and not the wireless network? Maybe that is my problem. I am trying to connect to the network and not the Base Station? I am getting confused. What I really need to do is connect my work laptop (Windows based machine) and my TIVO to the wireless network I've created (Radio Mode selected to Automatic, Channel Selection to Automatic, Security set to WPA/WPA2 Personal).

  • Bought a blue tooth keyboard and I can't get it to connect to the ipad

    I bought a keyboard from bro ketone to use with the iPad. I can't get it to connect on the Bluetooth. Does anyone use this product with their iPad?

    Return your phone and get your money back. There are no unlocked iphones sold in the US...none...zero...nada. All US iphones are locked to AT&T with no way to officially unlock them as AT&T will not authorize the unlocking of an iphone for anyone for any reason. Doesn't matter if purchase the iphone with or without contract, they are all locked to AT&T. Return it and purchase a phone in France. All of the carriers there offer unlocking.

  • HT4623 i bought an ipod touch got itunes downloaded on my computer but can't get it to connect to ipod because it is locked it was locked when i bought it how can i get it un locked

    i bought an ipod touch and i got itunes downloaded on my computer but can't get it to connect to ipod because it is locked it was locked when i bought it how can i get it unlocked?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • HT4199 I just purchased a new iPhone 5 and I can't get it to connect to my home network, which is ATT U-verse. Can someone help me?

    I just purchased a new iPhone 5 and I can't get it to connect to my home network, which is ATT U-verse. Can someone help me?

    Apps and music aren't part of the backup.  App data is http://support.apple.com/kb/HT4946

  • TS1702 I have downloaded the Apple Remote App to my phone (3gs) can't get it to connect with my Itunes library?

    I have downloaded the Apple Remote App to my phone (3gs) can't get it to connect with my iTunes library?

    http://support.apple.com/kb/TS1741

Maybe you are looking for

  • Stopped Filter Falied

    HPC7280 All in one Printer.  Connected to my Mac Book Pro but when trying to print keep getting error message. Stopped: filter failed 

  • Time Machine- manually removing backups for different machine

    Hey all-   I'm running into a problem where Time Machine is suddenly not able to back up my laptop anymore, due to the TM disk being out of space.  As part of trying to figure out what was going on, I went to manually browse the TM disk, and noticed

  • Elearning Suite -- Application Manager -- Presenter missing

    I am using the application manager tool provided by Adobe to create an Enterprise deployment for eLearning 2.0.  During the wizard, it asks you which applications you want to include in your installation and I include everything (this includes presen

  • How to set Jboss Security?

    Pls tell me in details or give me an website address. Thanks in advance!

  • Query folding available datasources and how does it work with HDInsight

    Hi everyone, is there anywhere official list of data sources that support query folding? I searched for quite a long time and the only list I got is in post by Matt Masson from 2013 http://www.mattmasson.com/2013/07/filtering-in-data-explorer/  Espec