KasperSJ

New Member
Joined
Feb 22, 2010
Messages
2
So I´ve had some trouble with my pc lately and just finally I got the BSoD in hope to figure out what's wrong. But! The code is gives no result on google so I'm back where I started. The code is the following:

0x00000050 (0xFFFFF682EA80B658, 0x0000000000000000, 0xFFFFF80002AA2C9E, 0x0000000000000005)

If anyone knows what this mean, please respond :)
 

Solution
The error code you are encountering, 0x00000050, refers to a "PAGE_FAULT_IN_NONPAGED_AREA" blue screen of death (BSoD) error. This particular error indicates that the system tried to access a non-existent memory location. Each of the parameters in the error message provides specific information about the error:
  • Parameter 1 (0xFFFFF682EA80B658): Represents the memory address that was referenced improperly.
  • Parameter 2 (0x0000000000000000): Indicates what type of access was attempted on the memory address (in this case, a read operation).
  • Parameter 3 (0xFFFFF80002AA2C9E): Represents the address that caused the fault.
  • Parameter 4 (0x0000000000000005): Provides additional information on the operation...
The error code you are encountering, 0x00000050, refers to a "PAGE_FAULT_IN_NONPAGED_AREA" blue screen of death (BSoD) error. This particular error indicates that the system tried to access a non-existent memory location. Each of the parameters in the error message provides specific information about the error:
  • Parameter 1 (0xFFFFF682EA80B658): Represents the memory address that was referenced improperly.
  • Parameter 2 (0x0000000000000000): Indicates what type of access was attempted on the memory address (in this case, a read operation).
  • Parameter 3 (0xFFFFF80002AA2C9E): Represents the address that caused the fault.
  • Parameter 4 (0x0000000000000005): Provides additional information on the operation that caused the BSoD.
To help resolve this issue, you can try the following troubleshooting steps:
  1. Check for Faulty RAM: Faulty RAM modules can often cause this error. You can run a memory diagnostic test to check for any issues.
  2. Update Drivers: Ensure all your device drivers are up to date, especially graphics drivers and chipset drivers.
  3. Check for Disk Errors: You can run a disk check to scan and fix potential errors on your hard drive.
  4. Disable Overclocking: If your system is overclocked, revert to default settings to see if the error persists.
  5. System Restore: Consider performing a system restore to a point before you started experiencing the BSoD.
  6. Check for Hardware Issues: If the issue persists, there may be a hardware problem. You could test your hardware components one by one to identify the culprit. By following these steps, you may be able to identify and resolve the PAGE_FAULT_IN_NONPAGED_AREA error. If the issue persists, it might be helpful to provide more context or logs for further assistance.
 

Solution
Back
Top