Xbox Controller (Wired) won't connect to PC for gaming. Please Help!

So, I bought Dark Souls and I would like to use my Xbox controller. I acquired the drives necessary and had it automatically download the other drives once plugged into my computer, but the Microsoft Xbox 360 Accessories Status does not recognize that the
controller is plugged in there for it does not let me play using the controller. It, also, does not pop up saying that a joy stick controller is plugged in when I go to joy.cpl through Run. 
Can someone please tell me what is wrong or what I could do to fix this? I have uninstalled the drivers multiple times and reinstalled and that has not worked either. I really want to start playing Dark Souls!

Hi,
Have you tried reinstalling Windows software for Xbox 360 controller?
http://support.xbox.com/en-US/xbox-on-other-devices/windows/xbox-controller-for-windows-setup#88e4f84c93ca4c8c9e0e22da6d5a37a6
Andy Altmann
TechNet Community Support

Similar Messages

  • My ipad won't connect to iTunes?? Please help, My ipad won't connect to iTunes?? Please help

    Im trying to sync with iTunes but my ipad mini won't show on itunes

    Is your iTune up to date?
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%204/7b711487605a534af44 a013025a9464e.jpg

  • My iPod 4G won't charge when i plug it in, and won't connect to my computer! Please help!!

    Please help me! I've tried 3 other cords and tried wiggling the cord around and I've blown into the iPod to get any dust out and nothings changed. This has been going on for about 2 months and no one has the right answers, and I was supposed to get a new cord delivered from Apple but the messed up my order :/ If you have a solution, please share it with me, I need help now!

    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Make sure the cable works on another device
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar                 

  • HT1430 I did this but my phone won't connected what can i do please help

    my phone lost all its information and when I turned it back on by holding the sleep and home key down the apple logo came up however I can't get it to register when I plug it in to my computer to reload the back up for it. Is there anything I can do to fix this massive error. Please advice

    Hey, I. Get to answer my own question. I decided to try shutting off my iPod, waited a few seconds, then restarted it. When I clicked on the game icon, it opened right up.

  • URGENT FIX MY Connect Four game for Wednsday PLEASE HELP

    I am using an APPLET and i want to use JOptionpane it didnt work when i used it in the paint method. So i want to make a runner to make the program work. I don't know why the Graphics g = new Graphics isnt working PLEASE HELP. Email the revised code to my email at [email protected]. URGENT FOR TOMORROW PLEASE HELP. should i have a spearate class for the runner, just email me please if you can help.
    import javax.swing.JApplet;
    import java.applet.*;
    import java.awt.Graphics;
    import java.awt.Color;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JOptionPane;
    public class Board extends JApplet
    // the grid used for storing the game layout.
    private int[][] grid;
    // the player whose turn it is.
    private int currentPlayer;
    public final int player1=1;
    public final int player2=2;
    private int place1=5;
    private int place2=5;
    private int place3=5;
    private int place4=5;
    private int place5=5;
    private int place6=5;
    private int place7=5;
    public static void main()
    int column1;
    int column2;
    String name1;
    String name2;
    Graphics g=new Graphics();
    Board test= new Board();
    boolean wait=true;
    while(wait)
    String starts=JOptionPane.showInputDialog("Are you ready? \n (yes or no)");
    starts.toLowerCase();
    if(starts.equals("yes"))
    wait=false;
    name1=JOptionPane.showInputDialog("Enter Player 1's Name");
    name2 = JOptionPane.showInputDialog("Enter Player 2's Name");
    test.paintBoard(true,g);
    while(!test.done() || !test.hasWon(g,player1) || !test.hasWon(g,player2))
    column1=0;
    while(column1>0 && column1<8)
    column1=Integer.parseInt(JOptionPane.showInputDialog(name1+" what column do you choose?"));
    test.place(player1, column1,g);
    if(!test.done() || !test.hasWon(g,player1))
    column2=0;
    while(column2>0 && column2<8)
    column2=Integer.parseInt(JOptionPane.showInputDialog(name1+" what column do you choose?"));
    test.place(player2, column2,g);
    public Board()
    // create the grid
    grid = new int[7][6];
    // initialize the gridc
    for (int row=0; row<6; row++)
    for (int column=0; column<7; column++)
    // set the position to a default value
    grid[column][row] = 0;
    public boolean done()
    boolean flags =true;
    for (int row=0; row<6; row++)
    for (int column=0; column<7; column++)
    if(grid[column][row] == 0)
    flags=false;
    return flags;
    public void paint(Graphics g)
    public void paintBoard(boolean flag, Graphics g)
    int index= 0;
    g.setColor(Color.YELLOW);
    g.fillRect(0, 80, 700,700);
    g.setColor(Color.WHITE);
    //draws spaces
    for(int y =100; y<700; y=y+100)
    for(int x =10; x<700; x=x+100)
    if(flag==false)
    index++;
    if(index%2==0)
    g.setColor(Color.RED);
    else
    g.setColor(Color.BLACK);
    else
    g.setColor(Color.WHITE);
    g.fillOval(x,y,80,80);
    TextField column =new TextField(10);
    if(flag==false)
    g.setFont(new Font("Times New Roman", Font.BOLD,24));
    g.setColor(Color.YELLOW);
    g.drawString("C",45,245);
    g.drawString("O",145,245);
    g.drawString("N",245,245);
    g.drawString("N",345,245);
    g.drawString("E",445,245);
    g.drawString("C",545,245);
    g.drawString("T",645,245);
    g.drawString("F",145,145);
    g.drawString("U",145,345);
    g.drawString("R",145,445);
    g.setColor(Color.BLUE);
    g.drawString("START",512,548);
    public void paintFinish(Graphics g, int player)
    int index= 0;
    g.setColor(Color.YELLOW);
    g.fillRect(0, 80, 700,700);
    g.setColor(Color.WHITE);
    //draws spaces
    for(int y =100; y<700; y=y+100)
    for(int x =10; x<700; x=x+100)
    index++;
    if(player==1)
    g.setColor(Color.RED);
    else
    g.setColor(Color.BLACK);
    g.fillOval(x,y,80,80);
    public boolean hasWon(Graphics g, int player)
    boolean status = false;
    // check for a horizontal win
    for (int row=0; row<6; row++)
    for (int column=0; column<4; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column+1][row] &&
    grid[column][row] == grid[column+2][row] &&
    grid[column][row] == grid[column+3][row] &&
    grid[column][row] == player)
    status = true;
    // check for a vertical win
    for (int row=0; row<3; row++)
    for (int column=0; column<7; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column][row+1] &&
    grid[column][row] == grid[column][row+2] &&
    grid[column][row] == grid[column][row+3]&&
    grid[column][row] == player)
    status = true;
    // check for a diagonal win (positive slope)
    for (int row=0; row<3; row++)
    for (int column=0; column<4; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column+1][row+1] &&
    grid[column][row] == grid[column+2][row+2] &&
    grid[column][row] == grid[column+3][row+3]&&
    grid[column][row] == player)
    status = true;
    // check for a diagonal win (negative slope)
    for (int row=3; row<6; row++)
    for (int column=0; column<4; column++)
    if (grid[column][row] != 0 &&
    grid[column][row] == grid[column+1][row-1] &&
    grid[column][row] == grid[column+2][row-2] &&
    grid[column][row] == grid[column+3][row-3]&&
    grid[column][row] == player)
    status = true;
    if(status)
    paintFinish(g, player);
    return status;
    public void place(int player, int column, Graphics g)
    int index=0;
    if(column==1)
    index=place1;
    if(column==2)
    index=place2;
    if(column==3)
    index=place3;
    if(column==4)
    index=place4;
    if(column==5)
    index=place5;
    if(column==6)
    index=place6;
    if(column==7)
    index=place7;
    grid[column-1][index]=player;
    if(player==player1)
    g.setColor(Color.RED);
    if(player==player2)
    g.setColor(Color.BLACK);
    g.fillOval((column*100)+10,(index+1)*100,80,80);
    if(column==1)
    place1--;
    if(column==2)
    place2--;
    if(column==3)
    place3--;
    if(column==4)
    place4--;
    if(column==5)
    place5--;
    if(column==6)
    place6--;
    if(column==7)
    place7--;
    }

    gamefreak1192 wrote:
    I am using an APPLET and i want to use JOptionpane it didnt work when i used it in the paint method. So i want to make a runner to make the program work. I don't know why the Graphics g = new Graphics isnt working PLEASE HELP. Email the revised code to my email at [email protected] URGENT FOR TOMORROW PLEASE HELP. should i have a spearate class for the runner, just email me please if you can help.
    This is bloody ridiculous. You want somebody to do your work for you, you can't be bothered to carry on a discussion here and ask for private email, and you expect somebody else to make your urgency (i.e. lousy time management) their problem. You got big brass ones, kid.

  • Upgraded to Mountain Lion-now my yahoo messenger won't open upon log-in. Please help.

    Upgraded to Mountain Lion-now my yahoo messenger won't open pon log-in. Please help. I have searched queries re: this problem but the previous convo here re: this issue won't resolve my problem. YM icon is just a "question mark' upon opening my laptop. I have tried unchecking my YM in "system and preferences' but issue still isnt resolved. Appreciate the assistance. Thanks!

    Csound1 wrote:
    John Blanchard1 wrote:
    Are you not able to select AirPrint from the menu that lets you select the PPD?
    Do you have the latest firmware?
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=219&lc=en&cc=us&dlc=en&sw _lang=&product=4110396#N222
    Airprint is for IOS devices and thus has no relevance to this issue.
    Connect the printer to your Wireless Network and use Bonjour to detect nd connect it.
    That's wrong. AirPrint is not just for iOS devices. Since HP doesn't provide drivers for this printer, they say to use AirPrint:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03425022&cc=us&dlc=en&lc=en &os=219&product=4110396&sw_lang=

  • ITunes 10.5 won't work on Windows XP? PLEASE HELP!

    I upgraded iTunes to 10.5 on my PC that has Windows XP and the iTunes store immediately stopped opening.  Tries to load & remains on blank screen.  Music & Videos still work.  Could update apps via iTunes.  When you connect an iPhone/iPad it sticks on "verrifying device" and won't actually sync or backup.  Please help!!!!!!!!!!

    If you have any parental control software either stand alone or installes as a module in your security software, then uninstall the parental control and reboot. It worked immediately for me after working on it for 2 days.

  • My ipod touch is showing a usb pointing to the itunes logo on the screen and nothing else.  It won't switch on beyond that.  Please help!

    my ipod touch is showing a usb pointing to the itunes logo on the screen and nothing else.  It won't switch on beyond that.  Please help!

    Sounds like your iPod is in restore mode. Connect it to iTunes. iTunes will pop a little message up saying that your iPod is in restore mode and asking you if you want to restore it, click yes. Your iPod will restore to factory settings and you will be given the chance to restore from a backup. You can do this or set it up as a new iPod.
    Here is Apple's page on restoring your iPod.
    http://support.apple.com/kb/ht1414
    Hope that helps.

  • TS1398 I work at a hospital that has free wifi. My ipad mini connected just fine when I first bought it but now it displays unable to connect? What changed? Please help! My mini still connects at home, just not at work.

    My Ipad Mini will no longer connect to the wifi at work. It did when I first got it but now it just displays unable to connect. What gives? I work at a hospital and the wifi is not password protected and my mini connects fine at home. Please help!

    Some of these won't apply to your situation.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • My ipod touch is connected to the wifi but when I get on safari it says "cannot open page because not connected to internet." SOMEONE PLEASE HELP!!!!

    My ipod touch is connected to the wifi but when I get on safari it says "cannot open page because not connected to internet." SOMEONE PLEASE HELP!!!!

    - Reset the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Power off and then back on your router.
    - Reset network settings on the iPod: Settings>General>Reset>Reset Network settings
    - The troubleshjooting here:
    iPhone and iPod touch: Troubleshooting Wi-Fi networks and connections

  • I have downloaded Photoshop Elements 12.  When I doubleclick on icon, it says that sign in is required.  I click sign in and it says I am not connected to the internet. Please help!  I've been trying for 3 days.

    I have downloaded Photoshop Elements 12.  When I doubleclick on icon, it says that sign in is required.  I click sign in and it says I am not connected to the internet. Please help!  I've been trying for 3 days.

    Sign in, activation, or connection errors | CS5.5 and later

  • It won't let me into I message. I type in my ID then I pick what people can text me by then I press next and it goes back to the sign in page so I tried it again and it just kept doing that so it won't let me into iMessage? Please help!

    It won't let me into I message. I type in my ID then I pick what people can text me by then I press next and it goes back to the sign in page so I tried it again and it just kept doing that so it won't let me into iMessage? Please help!

    Try:
    iOS: Troubleshooting FaceTime and iMessage activation

  • TS3297 when i try to access itunes store..i get a message saying 'cannot connect to itunes store..PLEASE HELP!!!

    when i try to access itunes store..i get a message saying 'cannot connect to itunes store..PLEASE HELP!!!

    Hello Ducati848,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1717
    Best of luck,
    Mario

  • TS1368 I can buy new apps but I can't update any - it says it can't connect to iTunes store! Please help!!!

    I can buy new apps but I can't update any - it says it can't connect to iTunes store! Please help!!!   I've tried the whole changing the date thing and that didn't work

    Try:
    Can't connect to the iTunes Store

  • I cannot retrieve my mail when I am not connected to the internet. Please help.

    I cannot retrieve my mail when I am not connected to the internet. Please help.

    Your mail is housed on the mail server. The device attempts to update, and because you are not connected to the internet, you cannot access it. You need an active data connection to deal with mail.

Maybe you are looking for

  • Problem with master data lookup in transformations

    Hi, We're experiencing a strange problem in the transformations for an Error Reporting scenario. We've the SAP standard customer (0CUSTOMER) in DSO 2 which derives it's value from the navigational attribute of YCUSTNR (0CUSTOMER is the navigational a

  • ITunes wont sync to touch or iPhone

    Just got a new iPhone 4s for my daughter.  She alrerady has an iPod touch with 6gigs worth of songs. Downloaded & installed iTunes 10.5..... NO music will sync to either her new phone or the touch now! Apps, videos etc all work fine.  The "sync all m

  • Changed id, won't update on icloud.

    I changed my apple id, but it won't change on icloud on my ipod touch.  I can log into icloud on the computer w/ the new id, but the ipod has the old id on icloud and won't allow me to change it.  W/o it I can't get my calendar to sync w/ my son's ba

  • Search Help with value on SE11

    Hi Gurus, I have two parameters on my screen, PARTNER and PSOBKEY. I have created a Search Help on SE11 for the second parameter, and this search help has that 2 parameters too. First I enter PARTNER, then I open the search help for PSOBKEY, and I wa

  • Total is not matching in Cross Tab Report

    Hi Every one, I am using Crystal Report Basice 2008 for sap business one. I added a One cross tab report .But the Row level totals are not matching in the report.Please suggest. Thanks and Regards DEV