Windows XP SP2 freezes and then has trouble booting up

I've got a recent problem with my PC freezing while in use.  All of a sudden it freezes with no error messages.  The only resolution is to reboot the PC; however, most times the PC has trouble booting up after that.  Usually at some point before it boots up I'll get a CMS checksum error, hit the F1 key to continue and Windows will load up.  I'll have to restart it multiple times before I can get it to boot or I have to unplug the PC, let it sit overnight and then it tends to boot up with no problems the next morning.
I did notice that the fan to the PSU isn't running all the time.  Should it be?  I would have thought so, but don't know for sure.
I haven't tried reloading Windows over the current installation.  I have an original Win XP disk ()non-SP2).  This is a Windows CD, not a restore CD.  I've updated to SP2.  Will it be OK to reinstall over it with an older version of XP?  I guess I can just not replace any newer files if it asks?
Thanks for any feedback.

Quote from: crushert on 21-January-07, 00:20:05
Bosskiller, I just know the basics of hardware installation and such.  I can put them together, but don't have much knowledge in diagnostics.  The Geek Squad ran the basic diagnostic package and said everything checked out OK and that it was most likely a mobo or processor going bad.
I see you linked to an earlier post you made.  However, if the memory checked out OK and it's run fine for the last 6 months without any problems, would it do any good to run another memory check on it?
"Bosskiller, I just know the basics of hardware installation and such.  I can put them together, but don't have much knowledge in diagnostics.  The Geek Squad ran the basic diagnostic package and said everything checked out OK and that it was most likely a mobo or processor going bad."
suggest you to ignore "The Geek Squad ran the basic diagnostic package" and to test it personally.
get memtest http://www.memtest.org/download/1.70/memtest86+-1.70.floppy.zip
extract files and make diskette bootable from installer. then reboot PC and boot from floppy, select test n5 only from there and leave it to test over 20times ensure no errors will come... step by step with memtest:  https://forum-en.msi.com/index.php?topic=103598.msg760534#msg760534
other way is to try to install XP with each memory sticks separately until works.. leave only one stick into DIMM slot close to CPU socket and have a try to install OS again, if no go remove memory and replace it with other one. and retry.
or take PC to some computer repair shop to diagnose.

Similar Messages

  • When using lighting effects in cc programme freezes and then window comes up sayind amd driver stopped working but is now ok. Tried to open lighting effects in cs6  and default spotlight is there but then it freezes. No mention of driver problems. Any  s6

    Problem with accessing lighting effects in cc and cs6. In cc programme freezes and then window appears saying amd driver stopped working but is now ok but cc still frozen. Tried opening in cs6 no problem with driver but just default spotlight appears and then programme freezes. Any suggestions.

    That is  very old for drivers and new driver for the chipset will not be coming I do not see it as supported either Photoshop CC and CC 2014 GPU FAQ
    Tested video cards for Photoshop CC and CC 2014
    Adobe tested the following video cards before the release of Photoshop CC and CC 2014. This document lists the video card by series. The minimum amount of VRAM supported on video cards for Photoshop CC and CC 2014 is 512 MB.
    Important: This document is updated as newly released cards are tested. However, Adobe cannot test all cards in a timely manner. If a video card is not listed here, but was released after May 2013, you can assume that the card will work with Photoshop CC and CC 2014.
    Adobe tested laptop and desktop versions of the following cards. Be sure to download the latest driver for your specific model (Laptop and desktop versions have slightly different names.)
    nVidia GeForce: 400, 500, 600, 700 series
    nVidia Quadro: 2000, 4000 (Windows and Mac OS), CX, 5000, 6000, K600, K2000, K4000, K5000 (Windows and Mac OS)
    nVidia GRID K1, K2
    AMD/ATI Radeon: 5000, 6000, 7000, R7, R9 series, 7950 Mac OS
    AMD/ATI FirePro: 3800, 4800, 5800, 7800, 8800, 9800, 3900, 4900, 5900, 7900, W8100, W9100, D300, D500, D700
    AMD/ATI FireGL: W5000, W7000, W8000
    Intel HD Graphics P3000, Intel HD Graphics P4000, Intel(R) HD Graphics P4600/P4700, Intel HD Graphics 5000
    Note: AMD/ATI 1000, 2000, 3000, 4000 series, nVidia GeForce 7000, 8000, 9000, 100, 200, 300 series and Intel HD Graphics (First generation) cards/GPUs are no longer being tested and are not officially supported in Photoshop CC and CC 2014. Some GL functionality is available for these cards, but it's possible that newer features don't work.

  • I have the iPhone 4, recently installed ios6 now my phone constantly turns itself off, keeps freezing and then 2 or 3 times in the space of 24hrs it has to be restored to factory settings. This has gone on for over a week.

    I have the iPhone 4, recently installed ios6 now my phone constantly turns itself off, keeps freezing and then 2 or 3 times in the space of 24hrs it has to be restored to factory settings. This has gone on for over a week.

    If all basic troubleshooting has been tried and a restore as new does not resolve, take it to Apple for evalation and possible replacement.

  • I have a football game recorded on a DVD R disc that I was trying to view on my MacBook using DVD Player.  The video comes onto the screen, but immediately freezes, and then disappears.  An error message comes up saying that DVD player unexpectedly quit.

    I have a football game recorded on a DVD+R disc that I was trying to view on my MacBook using DVD Player.  The video comes onto the screen, but immediately freezes, and then disappears.  An error message comes up saying that DVD player unexpectedly quit.  My MacBook operating system is Mac OS X, version 10.5.8.  DVD Player is App version 5.0.3, framework version 5.0.7.
    However, the DVD+R works on both my Dad's and my brother's laptops.  My Dad's laptop is an iBook G4 with Mac OS X operating system, version 10.3.9.  The DVD Player is version 4.0.  My brother's laptop is a MacBook Pro with Mac OS X operating system, version 10.7.2.  The DVD Player is App version 5500.26.1 and framework version 5.5.0.  The DVD+R plays fine on their laptops, but will not play on mine.
    Anthony

    Lao Bo,
    yes, you can locate and copy a file from your HD to a USB key using UNIX commands. If you know the exact name of the file which you’re trying to locate, try this:
    find / -iname filename -print
    This command will search your entire internal disk for the particular filename. If you know that it’s within a particular user account, then you can save search time with this variation:
    find /Users/username -iname filename -print
    Either variation of this command will print all files found which have the given filename. Presuming that you’re able to identify the correct file, you can copy it to a USB key using the command
    cp -p filename_returned_by_find /Volumes/USB_volume
    If you’re not sure which volume name your USB key has, this command will show you what the possibilities are:
    ls /Volumes
    Please let me know if you have any trouble with these commands.

  • Quicktime freezes and then closes when doing any editing

    Each time I try to do editing functions in Quicktime such as copy/paste, or cut, Quicktime will freeze and then close. I have updated to Quicktime 7.6.5 and purchased Pro 7. Has anyone else had this problem and if so, how did you resolve it?
    Thanks in advance!

    I'm not a regular Windows user but I seem to remember a post that involved third party codec "paks" (bundles of codecs).
    When these bundles were installed many times they interfered with QuickTime.
    Do you have any third party codecs installed?

  • Computer freezes and then goes to blue screen and resets (flash player 10.1)

    I have tried to install and reset my Internet explorer several times and still have the same result, my computer freezes and then goes to blue screen and resets. I am running windows 7 64 bit and windows Internet explorer 8. I have tried to go through the adobe trouble shooting and end up with the same problem. Does anyone have an idea were to go from here, this is getting very frustrating.

    Do you use the 32-bit version of IE8?
    Can you see the Flash animation at http://www.adobe.com/software/flash/about/ ?

  • Safari won't open...freezes and then quits

    I'm running 10.3.9 and whenever I open Safari, it will open, freeze and then quit. I have the Cubs home page as the default page but I can't keep Safari open long enough to change it.
    I can't keep Safari open long enough to do anything, except submit more of those inane "Crash Reports" to Apple which probably don't do anything.
    Has anyone else had this problem? Does anyone know how to fix it? I've done Disk Utility and that hasn't helped.
    Any thoughts?

    Hi econwriter5!
    The first thing I would do is trash the Safari preferences, and Cache.
    HD > USERS > HOME > LIBRARY > CACHES
    Trash:
    Safari (Folder)
    HD > USERS > HOME > LIBRARY > SAFARI
    Trash:
    Icons (Folder)
    History.plist (File)
    HD > USERS > HOME > LIBRARY > PREFERENCES
    Trash:
    com.apple.Safari.plist
    Good Luck!
    ali b

  • Imac freezing and then restarting

    Hi,
    My Imac keeps freezing and then restarting, it will go to a grey screen saying there's a problem then will restart. This has happened around 3 or 4 times in the last few days, everytime it happened I was using Itunes, when it would freeze, the music would jam and then the computer would restart.
    Any idea's how to fix this?
    Is it a fan/ overheating problem?

    Hi,
    My Imac keeps freezing and then restarting, it will go to a grey screen saying there's a problem then will restart. This has happened around 3 or 4 times in the last few days, everytime it happened I was using Itunes, when it would freeze, the music would jam and then the computer would restart.
    Any idea's how to fix this?
    Is it a fan/ overheating problem?

  • My Windows 2000 machine has trouble booting up after instaling PCI-6503 card

    After I installed the card in my Dell Desktop has trouble booting up. I have to pull the power cable out and then reconnect for it to come up.

    Hello;
    The best way to go about that is to completely uninstall the NI-DAQ driver you have installed on that machine, turn the computer of and remove the board from it.
    You then reintall NI-DAQ, and put the board back. If the same behavior shows, the best bet is to search for some other peace of Software/Hardware currently installed on the machine that might be conflictant with NI-DAQ.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Work is lost after illustrator freezes and then crashes when copying over to photoshop

    work is lost after illustrator freezes and then crashes when copying items over to photoshop, then when re-opening the illustrator file it gets to the end of reading the file to open then quits again? this keeps happening!

    afrill,
    It seems that you file has become corrupted.
    One thing often tried first is to create a new document and File>Place the corrupted one to see how much may be rescued that way.
    Here is a website where you can see whether it can rescue the file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    and another similar website,
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error -occurred-pdf2dtp-file-recovery/
    As far as I remember, the former is for Win and the latter for Mac.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-ill ustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator -files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html

  • Printing Problem Pages- When printing, once I have confirmed the printing settings, the Proccessing Page Hangs, and then Pages begins to freeze, and then says Error While Printing.

    Hi there, I wonder if you can help me,
    When printing, on Pages 09, once I have confirmed the printing settings, the Proccessing Page Hangs, and then Pages begins to freeze, and then says Error While Printing. ScreenShots are below.
    Thanks for your help, in advance.
    Then......(after it has frozen, for about 2mins).....
    Cheers!

    IS
    Do you have the same problem with printing from other apps, such as TextEdit? Have you looked at your printer's control panel to see if an error condition is displayed there, and if so, what is it?
    Jerry

  • Why do my pc freezes and then makes loud noise

    why do my pc freezes and then makes loud noise
    HP Pavilion dv6 Notebook PC
     PRODUCT #:  QE071UA#ABA
    WINDOWS 7

    why do my pc freezes and then makes loud noise
    HP Pavilion dv6 Notebook PC
     PRODUCT #:  QE071UA#ABA
    WINDOWS 7

  • My C7 freezes and then restarts Help

    My Nokia C7 stops working randomly and restarts. I used to be with Symbian^3 then with Anna and then with Belle and now with Belle refresh BUT I STILL HAVE THE SAME ISSUE my phone restarts / first freezes and then restarts/ Any ideas to stop that

    Bula from Fiji Islands,
    My C7-00 has similar problems (although not that frequently) and I have backed up and done resets as you've stated but the problem seems rather stubborn and persistant. Is there any other option for a fix?
    You seem helpful.

  • Surfing the web on Safari the screens freezes and then nothing happens

    Surfing the web on Safari the screens freezes and then nothing happens? All is updated

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

  • I recently did the 5.3 update to my Apple TV and now it is running sluggish and things keep freezing and then pictures are loading on top of each other. Then I did a hard reset today and now the WWDC app is gone. Anyone else having these issues?

    I recently did the 5.3 update to my Apple TV and now it is running sluggish and things keep freezing and then pictures are loading on top of each other. Then I did a hard reset today and now the WWDC app is gone. Anyone else having these issues?

    I have been having problems with my atv 3 not transmitting/receiving 5.1 surround. Whether I stream from my computer or watch movies, I am getting no 5.1 audio. The atv won't even show the option for surround. I tried to restore and reset the device but it didn't help.
    I haven't had any problems with missing apps or freezing or anything similar to what you are experiencing. This update has many bugs. Other threads have reported even more problems. Hopefully I can go back to the previous update.

Maybe you are looking for

  • MacBook Pro + HDTV

    Ok, I remember reading somewhere that the Mini DisplayPort maxes out at 30 inches But i've read reports of larger HDTVs working with the Mini DisplayPorts. I've got a Samsung LN40A650 I'm trying to connect to. Its detected and everything via VGA, but

  • HELP!!! I am trying to save data in a spreadsheet

    I have tried several things but can not get this, should be pretty simple. 1) I have a loop which sends command and read serail buffer and parse data. This works fine and my program is 3 seconds behind my actual device. Now I want to save the data I

  • Field length shows more in excel sheet which is sent via email

    I am sending excel sheet through email. I have data in internal table which i move to the email internal table and data is been sent via email using a excel sheet. Now, when I open the excel sheet, i see that all fields get displayed but the last fie

  • .txt file transmition using XML Gateway

    Hi All Is it possible to transfer .txt file from one server to another server using XML Gateway? with out using Workflow builder? If possible can any one tell the process

  • Only update specific data between 2 ODS

    I have 2 ODS ( with transfer rules between them). I have  DATE and period in the Source ODS1 , and I want to update only the register that the month of the date is equal to the period. I create a rutine in the field DATE in the transfer rules: <u><i>