Motherboard wont boot , PSU tested ok, motherboard light on , system and cpu fans not turning

1,140

Solution 1

When you plug the system in, the fans normally should spin for a fraction of a second, and then stop. If this happens, your motherboard is certainly working in some capacity. If not something is seriously wrong. Typically what the fans do on poweron is spin at max speed until the bios initalizes and slows them down. Early bios or CPU failure can cause the system to fail to do that, giving a system that doesn't post but where the fans run at full speed.

Are you sure you are connecting the power button to the right pins and in the right orientation? You may need to look at the motherboard manual to be sure.

Also if there are fab speed jumpers on the system make sure they are set to a speed your CPU can handle.

Beyond that you need to rma your motherboard. You didn't install the motherboard in the case directly against the metal case, did you? (standoffs are a must)

Solution 2

The only way to properly tell what is going on is to use either the post leds built in to the pc or get a post code diagnostic card you plug in to the systemboard. I had 2 msi boards new that were totally dead like that and I didnt have the post reader. Since they were new and had no leds I just had to try a 2nd of every thing then when that was dead I requested a refund and went with a different board which has built in diagnostic leds.

The post testers used to be 30$ not sure if they still are.

Share:
1,140

Related videos on Youtube

rwitk
Author by

rwitk

Updated on September 18, 2022

Comments

  • rwitk
    rwitk almost 2 years

    I'm writing a modified Yahtzee game in Python 3 called '5 Dice' where the user only wins if they roll a 3, 4, or 5 of a kind. I am using a list for the dice roll but I am having trouble comparing the random list values and now it doesn't even want to work. Please help!

        import time
        import os
        import random
    
        number_of_dice = 5
    
        rolls = []
    
        def dice_roll():
            os.system("clear")
            print("Welcome to 5 Dice!")
            raw_input("Press ENTER to roll")
            for q in range(number_of_dice):
                rolls.append(random.int(1,6))
            rolls.sort()
            time.sleep(1)
            print(*rolls)
    
            if rolls[0] == rolls[2]:
                print("You rolled a three of a kind!")
                try_again()
            if rolls[0] == rolls[3]:
                print("You rolled a four of a kind!")
                try_again()
            if rolls[0] == rolls[4]:
                print("You rolled a five of a kind!")
                try_again()
    
    def try_again():
        choice = input("Would you like to play again? Y/N: ")
        if choice == "Y" or choice == "y":
            dice_roll()
        if choice == "N" or choice == "n":
            quit()
        else:
            print("Please type Y or N")
    
    • Rich
      Rich almost 12 years
      Just saw a tumbleweed roll by.
  • Rich
    Rich almost 12 years
    +1 for POST diagnostic board. Thanks Kendrick. Yes, I've been considering getting a POST code diagnostics board. Ordinarily I'd give up on a motherboard like this as the time isn't worth the possible reward, but I've instead decided to deepen my knowledge of motherboard diagnostics and see this one through to a possible bitter end.
  • Kendrick
    Kendrick almost 12 years
    I was appaled by the msi lack of any diagnostics... usually you get some beep or flash some where but oh well.. from now on Im only getting systemboards with diagnostics on them. the asrock i have now has a # readout for posting so you can look up the codes plus power and reset buttons built in to the systemboard. Since i tinker a bit its easier on me to have it that way... for example Im putting that board in a Dell 2650 2u case :D
  • Kendrick
    Kendrick almost 12 years
    for got to mention. did you test a known good psu or that psu on another board? I have seen many a dell not post and even with a simple power supply tester it shows good. put a known good psu in and the pc boots... unless you spend some money for a decent psu tester I would go with known good. you will probably end up playing more for a psu tester then getting a backup psu. bad power can do all kinds of wierd things so check that first when you start having odditys.
  • Rich
    Rich almost 12 years
    Yes I've tested the power supply in another machine and it's fine. I'm wondering the value of a psu tester... do you think it would just test the voltages on each of the wires in the power connector or would it suitably load the supply to emulate real useage? BTW motherboard POST diagnostic cards go for around £6 including postage (ebay) these days. I have one on order. I expect it may come in handy in the future.