Memory is incompatible or not inserted correctly.
System poisoning. Find it.
Respondents: Fashion Shuai Shuai-Senior Manager Level 6 5- 15 19: 18.
This situation is generally a driving problem.
display card
sound card
The motherboard drivers have all been upgraded.
Or heat dissipation.
Answer: Kiss of a Lady-Introduction to Jianghu 25-1519:19
hardware error
It should be a graphics card driver.
Go find a suitable one
Responder: Ihehua-Magician Level 5-15 19:20
Optimize the system and see!
Interviewee: xy shga- scholar level 2 5- 15 19:2 1
Kernel-level applications generate errors, but Windows error handlers do not catch them. Usually it is a hardware compatibility problem, which should be a display driver problem or a graphics card problem. Open the case to clean the dust.
Update the graphics card driver (public version), and it will fall back if there is overclocking.
Besides, which power supply you have is only 350W, and the actual output power is not as amazing as 3850 with 350W. You can borrow a 400W power supply to try!
Respondent: Su Long-Jury level 5- 15 19:23.
It's okay. reinstalling the system can solve C.
Respondent: Material Trade 58- Juren Level 4 5- 15 19:28
Update your graphics card driver first, and then plug in the graphics card. If it is not good, it may be the following problem.
Usually, when a program references an incorrect memory address, it may cause a blue screen error 0x0000008E. When this error appears as a system login, it may be caused by a startup entry.
So it can be judged that your boot program is poisoned.
Click Start-Run-Fill in MSConfig- Click OK after startup, check the startup items in the pop-up dialog box, and cancel all startup items you don't know (if you don't know, you can temporarily cancel all startup items except antivirus software), then restart the machine, update your antivirus software, and then completely kill the virus. If you find something that can't be killed, restart the machine, press F8 to enter the safe mode, run anti-virus software after entering the system, and then completely kill the virus, which should be able to solve it.
Interviewee: Yb 6 15- manager level 4 5- 15 19:36.
How many memories do you have? If there are two pieces, I suggest you pull out one piece first and then open the other to see if it is still the same. Maybe it has something to do with the system, because that's what happened when my system didn't change last year. Last year I used the ghost system of pig, pig and cat. As soon as the dance company started, the screen suddenly turned blue, and then it kept restarting. Then I used the tomato garden.
Respondent: xy 65390565- chief operating officer 12 level 5- 15 19:44.
Blue screen is mostly due to hardware.
The problem of playing games
I
admit
for
be
kill
poison
soft
piece
prohibit
stop
View from a height or a distance
you
about
travel
drama
visit
ask
net
Netted object
!
Responder: The Real Murderer of Seven Nights-Dusi Level 6 5- 15 19:48
Hehe, I don't want to say too much
In case you are confused (* _ _ *)
1. First of all, it can be clear that the problem of the graphics card may be that dust affects performance.
(Solution: Wipe the dust with alcohol-especially the socket)
2. There is something wrong with the components of the graphics card.
The only solution is to fix it. The general cost is around 30~40 yuan. )
3. The graphics card driver is damaged.
(Solution: Self-loading Drive)
4. The aging performance of the graphics card is reduced or the heat dissipation is not good.
(Solution: Oil the fan)
5. The running software or game exceeds the limits of the existing and graphics cards.
(Solution: Optimize the system settings and update the graphics card driver with virtual video memory)
——————— That's basically it.
1.3.4.5 can be operated.
If it doesn't work, it will have to be repaired.
good luck .......................
Respondents: sjy 2 1- Juren Level 4 5- 15 19:5 1.
The hardware should be fine. ..
You should see if there is any software conflict first.
Remove all unnecessary software (especially browser plug-ins)
If not, reinstall the system.
Responder: Laura Bit-Magician Level 5- 15 19:55.
0x' instruction refers to 0x' memory. The memory cannot be read.
0x memory referenced by 0x instruction cannot be "written".
I believe everyone has seen the above situation, and even said that some netizens have repeatedly reinstalled the system because they are not satisfied with this frequent error prompt. I believe that ordinary users should not understand those complicated hexadecimal codes.
There are many reasons for this phenomenon. First, there is something wrong with the hardware, that is, the memory; second, there are many problems with the software.
First talk about hardware:
Generally speaking, computer hardware is not easy to break down. Memory problems are unlikely (unless your memory is really a pile of miscellaneous brands). The main aspects are:
1。 The memory stick is broken (mostly second-hand memory)
2。 Use memory with quality problems.
3。 There is too much dust in the golden finger of the memory inserted in the motherboard.
4。 Using different brands and capacities of memory leads to incompatibility.
5。 Heat dissipation caused by overclocking. You can use the software MemTest to check the memory, and you can thoroughly check the stability of the memory.
Second, if not, troubleshoot the software.
Let's talk about the principle first: there is a place in memory called buffer for storing data. When the program puts data into the buffer, it needs the "function" provided by the operating system to apply it. If the memory allocation is successful, the function will return the address of the newly opened memory area to the application, and the application can use this memory through this address. This is "dynamic memory allocation", and the memory address is also the "cursor" in programming. Memory is not always available and inexhaustible, and sometimes memory allocation will fail. When the allocation fails, the system function will return a value of 0. At this point, the return value "0" no longer represents the newly enabled cursor, but a notification sent by the system to the application, indicating that an error has occurred. As an application, you should check whether the return value is 0 after each memory application. If so, it means that there is a fault and some measures need to be taken to save it, which enhances the "robustness" of the program. If the application does not check this error, it will think that this value is the available cursor allocated to it according to "thinking inertia" and continue to use this memory in subsequent executions. The real 0-address storage area stores the most important "interrupt descriptor table" in the computer system, which is absolutely not allowed to be used by applications. In an unprotected operating system (such as DOS), writing data to this address will cause an immediate crash, while in a robust operating system, such as Windows, this operation will be immediately captured by the protection mechanism of the system, and as a result, the operating system will forcibly close the wrong application to prevent its error from expanding. At this time, there will be an error that the memory cannot be "read", indicating that the referenced memory address is "0x00000000". There are many reasons for the failure of memory allocation, such as insufficient memory and mismatched system function versions. Therefore, this distribution failure is mostly seen after the operating system has been used for a long time, a variety of applications have been installed (including virus programs that have been unintentionally "installed"), and a large number of system parameters and system files have been changed.
In applications that use dynamic allocation, it sometimes happens that the program tries to read and write a memory that should be available, but for some reason, the expected available cursor fails. It may be "forgetting" to ask the operating system for allocation, or it may be that the program itself canceled this memory at some point, "not paying attention" and so on. The logged-out memory is reclaimed by the system, and its access right no longer belongs to the application, so reading and writing operations will also trigger the protection mechanism of the system, and the only final result of the program that tries to "violate the law" is to be terminated by the operation and recover all resources. The laws of the computer world are still much more effective and severe than human beings! A situation like this is a BUG in the program itself, and you can often reproduce the error in a specific operation sequence. The invalid cursor is not necessarily 0, so the memory address in the error prompt is not necessarily "0x00000000", but it can also be other random numbers.
First of all, it is suggested that:
1, check the system for Trojan horses or viruses. In order to control the system, such programs often modify the system irresponsibly, resulting in abnormal operating system. We should strengthen our awareness of information security at ordinary times, and never be curious about executable programs with unknown sources.
2, update the operating system, let the operating system installer copy the correct version of the system file, correct system parameters. Sometimes there are bugs in the operating system itself, so pay attention to installing the officially released upgrade program.
3, try to use the latest official version of the application, Beta version, trial version will have bugs.
4. Delete and recreate the files in the Winnt\System32\Wbem\Repository folder: right-click My Computer on the desktop, and then click Manage. Under Services and Applications, click Services, and then close and stop the Windows Management Instrumentation service. Delete all files in the Winnt\System32\Wbem\Repository folder. (Please back up these files before deleting them. ) Open services and applications, click Services, and then open and start the Windows Management Instrumentation service. When the service is restarted, these files will be recreated according to the information provided in the following registry key: HKEY _ local _ machine \ software \ Microsoft \ WBEM \ CIMOM \ autorecovermofs.
Responder: Cao Ma-Magic Apprentice Level 111221:13.
There are generally two reasons for this problem: one is that there are problems with hardware and memory, and the other is that there are many problems with software.
I think your situation should be that XP system is broken.
I suggest you restore the system or reinstall it. It will take 20 minutes at most.
References:
/question/ 14789780.html? fr=qrl
Respondent: Wei Kun 832- New to Jianghu Level 3 5- 15 20:02
Either there is a hardware problem or poisoning, or there is a hardware conflict. I've met it, too. Check one by one.
Respondent: pt website- probation period level 1 5- 15 20:3 1.
Press ESC crazily
Interviewee: aaaldl- trainee magician level 2 5- 15 20:42
The problem with the graphics card.
Respondent: 393442 158- probation period level 1 5- 15 2 1:04.
Motherboard problem, don't believe in any conflict between software and hardware, and don't believe that it is a system problem. Doing the system 200 times a day can't solve the problem! If the machine is newly installed, it is recommended to replace the motherboard immediately, as soon as possible! If it is slow, it will become maintenance!
Respondent: He Fuwen-Assistant Level 2 5- 15 2 1:07
It must be a hardware problem. What they say is too much trouble. Since it is a newly installed machine, send it back to replace the hardware.