How I Solved My XP SP1 Problem

You'll never guess in a million years so I'll tell you:-
I have a K7D-420 motherboard & a Lian-Li PC6089 case.  The case has front-mounted USB ports that attach to the USB header on the motherboard via 9 individual pins (as opposed to a single 9-pin plug).
As the labelling on the pins differs slightly from what is on the motherboard, I'd matched them up wrong - I knew this already as the ports weren't working.
I'd left them attached (whilst running XP) as I hadn't experienced any problems.  However, applying SP1 which, I believe, contains USB updates, totally kills my system!  So, the solution was to detach the front USB ports - as simple as that.  
On a side note, if anyone has the same motherboard & case & knows which pin goes where to get the ports working, I'd appreciate the help.

This is difficult to explain but I will try.I have a 415, but the layout should be the same. you should have 2, 9 or 10 pin usb headers right above the floppy ribbon port. say they look like this ::::: , top right is 1, bottom right is 2, top left is 9 and bottom left is 10 (you can fill the rest in). using this number scheme, here's the layout: pins 1,3,5,7 are 1 usb, pins 2,4,6,8 are 2nd usb (pins 9 and 10 are not used). pin1=VCC, pin 3=data+, pin5=data-, pin 7=ground. exact same thing on the bottom row. next you need to map your case's usb header connections(to motherboard) to the actual contacts inside the usb plug-in end. Looking from the front (of the plug-in end) with the contacts facing down, from left to right: VCC / Data- / Data + / Ground. So all you have to do is make sure the connections go from the correct contact to the correct pin on the motherboard header. ie: the left contact goes to pin1, next goes to pin 5, third goes to pin 3, fourth (right) goes to pin 7 (this is with the contacts facing down again)

Similar Messages

  • HT1212 How to solve the forgotten passcode problem

    If I never connect my iPhone5 to iTunes, didnt turn on the iCloud, and did not backup my phone before, how can i solve the forgotten passcode problem without erasing the data?

    Read the article that brought you here
    http://support.apple.com/kb/ht1212 
    There is nothing you can do other than that and you will lose your data if you have never backed up

  • How to solve the webkit2webprocess.exe problem ?

    my computer is a pc with windows xp and I'm using Safari as my browser and it keeps crashing due to a webkit2webprocess.exe error how do I get past this problem ?

    how do I get past this problem ?
    By uninstalling Safari. It's long discontinued on Windows, unsupported, buggy, and probably unsafe to use.

  • How to solve this ORA-12154 problem please?

    Hello,
    I'm trying to execute the following command:
    C:\Documents and Settings\HP>sqlplus "sys/neo555@orcl as sysdba"
    SQL*Plus: Release 10.1.0.4.2 - Production on Dom Dez 18 02:45:37 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-12154: TNS:nÒo p¶de resolver o identificador de conexÒo especificado
    Translating: ORA-12154 TNS could not solve the conection identifier specified
    Informe o nome do usußrio:
    Translating: Inform the user name:
    How to solve this please because I get no other errors in the software.
    Thank you,
    André Luiz

    Hi
    If objective is to just connect as sysdba then you can simply check your SQLNET.ORA file under ORACLE_HOME\NETWORK\ADMIN and make an entry like
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    C:\Documents and Settings\HP>set oracle_sid=orcl
    C:\Documents and Settings\HP>sqlplus "/ as sysdba"
    Pls paste contents of your TNSNAMES.ORA and LISTENER.ORA files here.
    Rgds
    Adnan

  • How to solve a mail download problem ?

    Mail boxes after the first 26 or more has error message " The message from has not been downloaded from the server. You need to take this account online in order to download it. Mail server teck have not solved the problem, I believe the messages are on my computer but I cannot find them

    Good day, jc63. Any error message when trying to download? How did you reset your phone? Is that by going to Settings > About? Did you experience this issue from the day you purchase your phone or just recently? BTW, if you're located in India, an active unlimited downloads subscription is no needed to use MixRadio on your Lumia WP8. You can listen to curated mixes, create mixes based on up to three artists, and listen to their own personal "Play Me" mix. All mixes can also be taken offline, and you can have up to 4 mixes offline at any one time.

  • How to solve the tree update problem

    Hi all,
    I met a urgent problem, I defined two tree control over two JScrollPanes.
    two JScrollPanes are in a JSplitPane which is located in another JSplit's left. The left JSplitPane and another JTextarea both are in another JSplitPane.they are layouted as:
    JTree1 | JTextArea
    JTree2 | JTextArea
    I want to achieve this: when I clicked a node in JTree1,then JTree2 is changed in the viewport according to the content of the clicked node.
    I use the following essential code :
    public class TNTree extends JTree {
    private TemplateFrame frame1;
    public TNTree(TemplateFrame frame/*,XTree tree*/)
    this.frame1=frame;
    getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    setShowsRootHandles(true);
    setEditable(false);
    try{
    treeModel=initTree();
    setModel(treeModel);
    jbInit();
    }catch(Exception e){}
    this.addMouseListener(new MouseAdapter(){
    public void mouseClicked(MouseEvent e) {
    TreePath tp=getPathForLocation(e.getX(), e.getY());
    pt.x=e.getX();
    pt.y=e.getY();
    try{
    if((e.getModifiers()&InputEvent.BUTTON1_MASK)==InputEvent.BUTTON1_MASK)
    setSelectionPath(tp);
    if(e.getClickCount()==1){
    if((tp!=null)&&(!isIn((DefaultMutableTreeNode)tp.getLastPathComponent())))
    {    tempStr=((DefaultMutableTreeNode)tp.getLastPathComponent()).toString();
    Connection con=getConnection();
    PreparedStatement pstmt;
    pstmt=con.prepareStatement("select content from template ,tcontent"+
    " where template.tcode=tcontent.tcode and name=?");
    pstmt.setString(1,tempStr);
    ResultSet rset=pstmt.executeQuery();
    String str="";
    if(rset.next()){
    str=rset.getString(1);
    treeStr=str;
    System.out.println(treeStr);
    // frame1.xTree =new XTree(frame1,str);
    // frame1.xTree=new XTree(frame1);
    frame1.xTree.refresh( str );
    frame1.jScroll.getViewport().add(frame1.xTree);
    // frame1.repaint();
    if(e.getClickCount()==2){
    }else
    }catch(Exception e1){e1.printStackTrace();}
    public class XTree extends JTree {
    private TemplateFrame frame;
    public XTree(TemplateFrame frame) throws ParserConfigurationException
    this.frame=frame;
    refreshTextFlag=false;
    strBuffer=new StringBuffer();
         getSelectionModel().setSelectionMode( TreeSelectionModel.SINGLE_TREE_SELECTION );
         setShowsRootHandles( true );
         setEditable( false );
         dbf = DocumentBuilderFactory.newInstance();
         dbf.setValidating( false );
         db = dbf.newDocumentBuilder();
    treeModel = buildWelcomeTree();
    setModel(treeModel );
    TreeTXT = "";
    try{
    jbInit();
    catch(Exception e){
    //e.printStackTrace();
    Error err = new Error();
    eBuffer.append(err.getValue("Err#4"));
    eBuffer.append("\r\n");
    public void refresh( String text ) //throws ParserConfigurationException
    try{
    treeModel=buildTree(text);
    setModel( treeModel );
    TreeTXT = text;
    }catch(Exception e){
    // e.printStackTrace();
    Error err = new Error();
    eBuffer.append(err.getValue("Err#1"));
    eBuffer.append("\r\n");
    public class TemplateFrame extends JFrame
    static XTree xTree=null;
    static TNTree tnTree;
    xTree=new XTree(this);
    tnTree=new TNTree(this);
    jScrollLeft.getViewport().add(tnTree);
    void fileOpen_ActionPerformed(ActionEvent e)
    String fileName = "";
    BufferedReader reader;
    String line;
    StringBuffer xmlText;
    JFileChooser chooser = new JFileChooser();
    Container parent = jMenuItem4.getParent();
    int choice = chooser.showOpenDialog(parent);
    int returnVal = chooser.showOpenDialog(this);
    if(returnVal == JFileChooser.APPROVE_OPTION) {
    textMessage.setText("You chose to open this file: " +
    chooser.getSelectedFile().getAbsolutePath() );
    // chooser.getSelectedFile().getName());
    fileName = chooser.getSelectedFile().getAbsolutePath();
    path=fileName;
    if(fileName.substring(fileName.length()-3,fileName.length()).equalsIgnoreCase("xml"))
    //Will fix future
    try{
    reader = new BufferedReader( new FileReader( fileName ) );
    xmlText = new StringBuffer();
    while ( ( line = reader.readLine() ) != null )
    xmlText.append( line+"\n" );
    reader.close();
    //refresh the xml tree
    xTree.refresh( xmlText.toString() );
    textArea.setText( xmlText.toString() ) ;
    /*Set the title*/
    //fTitle = chooser.getSelectedFile().getName();
    fTitle = chooser.getSelectedFile().getName();
    this.setTitle(fTitle/*+mTitle */ );
    //Sign the editor has a file
    dirty = true;
    }catch(Exception Mye) {
    textMessage.setText("Error occured when opening the file");
    }else{
    textMessage.setText("Error occured when the opening file is not a xml file");
    Now my problem is when in TemplateFrame cl*** I call open method including import xTree.refresh(string),I can get the right results ,the JTree2 is refreshed correctly,but when in TNTree cl*** I call the xTree.refresh(String),I met a java.lang.nullpointer exception , How can I solve this problem?
    Are there other better ways to slove this problem?

    Hm ...
    what should it be otherwise?- You said, the problem is calling frame1.xTree.refresh(str) - and the NullPointerException is thrown there - so there are only 2 possibilities - frame1 is null or xTree is null. So please add the following code before this line ...
    if (frame1==null) { System.out.println("frame1 is null"); }
    else if (frame1.xTree==null) { System.out.println("frame1.xTree is null"); }
    else System.out.println("None of them is null - I haven't read the runtime error correctly");and then you will see, where the problem is :)
    greetings Marsian

  • How to solve the ethernet driver problem

    Hi,
    My desktop consist of harddisk capacity of 300gp,which consist of the OS windows xp.
    Now i need to remove windows xp and i want to install oel5 only.
    But my problem is with the ethernet driver because while i work with windows xp i have no ethernet driver so i installed it seperately and everything is worked fine.
    And my question is if i install only oel5 wheather the same problem will exist or not then how i can download the ethernet driver software of oel5
    please help me

    user8818950  wrote:
    Hi,
    My desktop consist of harddisk capacity of 300gp,which consist of the OS windows xp.
    Now i need to remove windows xp and i want to install oel5 only.install it from cd/dvd.do you need network installation?
    >
    But my problem is with the ethernet driver because while i work with windows xp i have no ethernet driver so i installed it seperately and everything is worked fine.
    to solute out this we need to see output of lspci and lsmod (or the manufacture hex code from xp also work.)
    And my question is if i install only oel5 wheather the same problem will exist or not then how i can download the ethernet driver software of oel5
    its depend on the vendor id of the NIC.so put your lspci output after the installation of OEL5.4.In general OEL5.4 may give/detect the NIC by its own.
    >
    >
    please help me

  • How to solve the error 2 problem

    How to I solve this? I need bonjour and all that other **** too. Only itunes downloaded.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • How to solve the " Unknown error" problem

    hi
     can anybody help me to solve " unknown error problem" of blackberry Z10 with "X" symbol at top right of the screen with red color.
    And remaining all services (Wifi) are working except the calls.
    And also my phone is automatically restarting frequently.
    please help me in this regard

    Phone restarting randomly could be loose battery. Tighten by putting a small strip of electrical tape on the back edge.
    THE BITTERNESS OF POOR QUALITY, LINGERS LONG AFTER THE CHEAPNESS OF PRICE, IS SOON FORGOTTEN.

  • How to solve the wifi dropping problem on Att UVerse.

    Today with aid from others on the forums and help from apple I figured out how to stop the problem where your iPad will drop wifi while your using it.
    Wat was wrong before:
    While surfing the web my wifi would disconnect, and I would have to go to settings>wifi and turn It off and then back on, this would happen every two to three minutes.
    YouTube videos would load very fast and about half way would stop and need to buffer.
    When streaming pandora, it would only be be able to play one song, before needing to restart the Internet.
    My router:
    I have a homeportal 3000 router through AT&T
    http://www.convergedigest.com/images/articles/v12n140-2wire.jpg
    First you will need to know your account password for Uverse.
    On the side of the router it will tell you system password, key, and Mac ID, at the top it will say for more info visit and there will be a number separated by some periods.
    Go to that link, (on either your iPad or any computer)
    When you get there you should see the name of your router and how it's performing.
    At the top there will be four tabs, click on settings.
    Six more tabs will pop up below the two tabs, click LAN.
    Below the six tabs, another six tabs will appear, click wireless.
    Scroll down and find security.
    Under authentication type, change it to "WPA2-PSK (AES)"
    Scroll down to the bottom and click save, it should then ask you for your password. NOTE: this is your uverse password, not the password on your router.
    There should be a green box that says you were successful.
    I've been going five hours now and havn't had one disconnect.
    Thanks and hope this helps.

    Thanks, this has been driving me crazy on both my MacBook and iPhone. It was dropping my wifi every few seconds! Changed the Authentication Type to WPA2-PSK (AES) and wow! It's been at least 2 entire minutes without dropping!

  • HT4628 How to solve WIFI Maverick Upgrade Problem?

    Hi guys, so I have explored all options on the site and forums so far. After my upgrade to Mavericks I cannot find my wifi signal, or very very rarely.
    It never stays. Often there are "connection time out errors". There are 2 iphones, 1 ipod, a old Apple powerbook, and Windows7 Machine all connected to the signal, never a problem. Up until my updgrade to Mavericks it also was strong, fast, connected, 500 feet away!
    I am 10 feet away from the wifi device. I also have one other signal I do get but it drops continuously and will not stay. Its a very slow connection which I am writing from now. But at least I see that one!
    What I have tried to fix this:
    Restart
    Repair Disk Permissions ( about a thousand times...) -Failed
    Force Quit(Hard Reset) -Failed
    Reset SMC -Failed
    Delete all network settings and keychain info. -Failed
    Reset Router -Failed
    Diagnostics -Failed
    Joined network in "Safemode" and restarted. -Failed
    Change channel signals  -Failed
    This is really causing me productions problems since I earn my income by being online
    I have not even done the last big security update because I cannot stay online long enough to get that complete!
    Does anyone have any more ideas? I am scared to reset PRAM... the last thing I have not tried (I once tried that with one of my former macs and my logic board died.)
    Please advise, I am so frustrated. I just need to work...
    Do I ditch Mavericks? Go back to Snow Leopard or maybe it was Tiger...? And if so, how?
    All this as my i wifes phone, a powerbook, lenovo windows computer all happily stay connected. My ipod and iphone have no problems even 900 feet away.
    My stats... running 10.9.1
      Model Name:          MacBook
      Model Identifier:          MacBook6,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.26 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache:          3 MB
      Memory:          4 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          MB61.00C8.B00
      SMC Version (system):          1.51f53
      Sudden Motion Sensor:
      State:          Enabled

    Just an update, when turning off icloud access to the Keychain, my wifi signal appeared and I tried to join it. But had connection time out error.

  • How to solve my N73 messaging problem

    i cant recieve messages, my phone always display this message..."NOt enough memory to receive messages, delete some data first", i ask a cp technician he said my N73 was infected by a certain virus and I have to reformat it....i finished reformatting my memory card but it doesnt work...maybe you can help me to solve this problem...thanks.
    Message Edited by yanmakyen on 27-Aug-2009 03:23 AM
    Message Edited by yanmakyen on 27-Aug-2009 03:26 AM

    You might need to reset your password and/or answer the security questions you set up when you created your ID.
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • How to solve CS5 update download problem

    After having to reinstall Windows and CS5 (having previously deactivated it and then re-installing it fine), I keep getting update failures when CS5 tries to download known updates. Here is an example:
    Adobe® InDesign® CS5 7.0.4 update
      There was an error downloading this update. Please quit and try again later.
    How can I resolve this error that is on Adobe's end? No human will speak to CS5 customers and the Chat support people have no idea what to do.
    Thanks to anyone who can point the way to getting CS5 to not bug out in its auto update/download window.

    I had the same problem on my Mac. I did a google search for the InDesign 7.0.4 update and downloaded the update manually.
    Adobe - InDesign : For Macintosh : Adobe InDesign CS5 7.0.4 update - all languages

  • How To Solve WWDC Keynote Streaming Problem

    <<BZZZZZTT>> That is me with fried circuits over this annoying problem. It took three Mac gurus to bash our heads together to come up with the very simple solution, one that is counter intuitive.
    1) Go into QuickTime System Preferences
    2) Hit the 'Advanced' tab/button
    3) Click on the popup menu for 'Transport Setup:'
    4) Choose 'Custom...'
    5) In the sub-window that rolls down be sure that 'Transport Protocol:' is set to HTTP
    6) Change the Port ID to 80. (NOT 554, which is the default in 'Automatic' mode, which is BTW the CAUSE of the problem).
    7) Hit OK and you are on your way.
    Try the link now on the page for the stream and the stream will miraculously now work.
    OK, so why the port 554 problem? I can only tell you that I JUST installed the AirPort Extreme N Base Station. (I love it BTW). You'd think it would allow streaming over port 554. Apparently not. But this may to be the problem at all. I set up port forwarding on the N Base Station for port 554, and port forwarding in my MacBook's firewall. It did NOT solve the problem. (I am an old hand at port forwarding so please do not toss the 'newbie' word at me, thank you).
    Ideas?
    :-Derek

    Messed up a sentence. Sorry.
    I said: "You'd think it would allow streaming over port 554. Apparently not. But this may to be the problem at all."
    Pull out the word 'to' and add the word NOT as in: "But this may NOT be the problem at all." Which is to say I don't know if this a due to the N Base Station.
    ;-D

  • How to solve this "amnesia" protect problem

    Hi All
    I have a two nodes one quorum cluster environment. I just see this problem:
    I shutdown nodeA and all all othe resource groups switch to nodeB, it works fine
    and I believe quorum device vote belongs to nodeB.
    Then I shutdown nodeB and power on the nodeA, nodeA cannot boot as cluster,
    there's messages like:
    NOTICE: clcomm: Path NodeB:e1000g0 - NodeA:e1000g0 errors during initiation
    WARNING: Path NodeB:e1000g0 - NodeA:e1000g0 initiation encountered errors, errno = 62. Remote node may be down or unreachable through this path.
    NOTICE: CMM: Cluster doesn't have operational quorum yet; waiting for quorum.
    I know this is because the quorum vote is nodeB to prevent amnesia condition.
    But I still confused for this: if the problem occurs, nodeB is broken and cannot
    boot anyway,what people can do is just hack the CCR?Is there any solution ,for
    example, nodeA can boot as cluster master and after nodeB come up ,the DR can
    update the older nodeB CCR ?is there any option for this?
    thanks
    lifeng

    here a procedure from http://prefetch.net/reference/suncluster.txt :
    # Recovering from amnesia
    # (use at your own risk)
    Scenario: Two node cluster (nodes A and B) with one QD,
    nodeA has gone bad, and amnesia protection is preventing
    nodeB from booting up.
    - Boot nodeB in non-cluster mode (boot -x).
    - Edit nodeB's file /etc/cluster/ccr/infrastructure as follows:
    - Change the value of "cluster.properties.installmode" from
    "disabled" to "enabled".
    - Change the number of votes for nodeA from "1" to "0",
    in the following property line:
    "cluster.nodes.<NodeA's id>.properties.quorum_vote".
    - Delete all lines with "cluster.quorum_devices" to remove
    knowledge of the quorum device.
    - Run command:
    /usr/cluster/lib/sc/ccradm -i /etc/cluster/ccr/infrastructure -o
    - Reboot nodeB in cluster mode.

Maybe you are looking for

  • AED not calculated properly for imported capital Goods

    Dear All,              I am facing one error while capturing Excise Invoice for Imported capital goods .While performing this AED set off reflecting is 100% which is supposed to be 50%.For raw material its calculation is correct .Any solutions.      

  • How to remove fields and the space the occupy form a form before printing

    I have a dynamic form which should only print certain portions depending on checkboxes (if checkbox is checked, print paragraph; otherwise, don't print). I am using javascript to change the paragraph form visible to hidden prior to printing. I would

  • What tools were used to make this cartoon picture?

    I want to make a picture like these ones, but i dont know which tools to use. it seems they didnt use the pen tool at all, and i cant quite figure out how they did all the shadows and highlights. its seems they used the brush, but when i use the brus

  • Comparing 2 queries

    SQL> desc hr_pay_slip_mst Name                            Null?    Type SEQ_NO                          NOT NULL NUMBER EMPNO                                    VARCHAR2(5) DATED                                    DATE ENT_BY                         

  • New Adjustment  Layer

    Hello. I am having trouble in New Adjustment layer. When I open Bridge and select a photo and go to CS3 I set up a duplicate layer and if I go to New adjustment layer and select any from that menu, ie, Photo filter... color mixer to convert to B&W th