BSOD on HP Omen

There doesn't appear to be any dump files in the .zip you've provided. Could you please zip and upload the following file to a file sharing site (Google Drive, One Drive etc.), it will be too large to attach to your forum post.

Code:
%systemroot%\MEMORY.DMP
 
The dump file is overflowing with NTSTATUS exception error code 0xc0000147 - which refers to the page file.

From Microsoft - 0xc147 -

Microsoft Docs said:
NTSTATUS 0xc0000147

Unable to Create Paging File.

The creation of the paging file %hs failed (%lx). The requested size was %ld.

Your page file may be corrupted. Turn page file (virtual memory) off via SYSTEM in Control Panel; delete pagefile (see CODE box below) - c:\pagefile.sys

Note - you may have to change file attributes and un-hide the pagefile. Bring up an Admin CMD prompt; Type/paste the following one line at a time; hit enter after each line) - check for pagefile first (1st command after "cd" command)l; then un-hide it (2nd command); then delete it (last command) - c: is assumed to be your Windows OS drive -

Code:
cd c:\

dir /a c:\pagefile.sys

attrib -h c:\pagefile.sys

del c:\pagefile.sys

Turn page file (virtual memory) back on - System managed - for all drives

Also, for info, a 0xc147 exception code could mean that there is a problem with the hard drive.

I would also advise you to run chkdsk from the CMD prompt as well - chkdsk /f /r - then reboot the system

PLEASE be sure to run Driver Verifier as @x BlueRobot has asked you to do.

Regards. . .

jcgriff2
 
Thank you... I expect to have this laptop in front of me on Monday and will follow your suggestions. I appreciate it. I am posting another issue with a different HP Omen in a moment.
 
Added in another step to remove the "system" attribute from pagefile.sys -

Rich (BB code):
cd c:\

dir /a c:\pagefile.sys

attrib -h c:\pagefile.sys

attrib -s c:\pagefile.sys

del c:\pagefile.sys

Try the above.

Regards. . .

jcgriff2
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top