Thank you, Paulo. This worked fine!
All of the attached DMP files are of the KERNEL_DATA_INPAGE_ERROR (7a) bug check.
This bug check indicates that the requested page of kernel data from the paging file could not be read into memory.
*ERROR_CODE: (NTSTATUS) 0xc000000e - **A device which does not exist was specified.*DISK_HARDWARE_ERROR: There was error with disk hardware
^^ 0xC000000E, or STATUS_NO_SUCH_DEVICE, indicates a hardware failure or an incorrect drive configuration. Check your cables and check the drive with the diagnostic utility available from your drive manufacturer. If you are using older PATA (IDE) drives, this status code can indicate an incorrect master/subordinate drive configuration.
** If you have an SSD, be 100% sure the firmware is up to date!
Before running hard disk diagnostics, you have various problematic Asus drivers listed and loaded (Ai Charger) for example. I am going to recommend removal of all Asus software on your system as it's very buggy bloatware. If you have Asus AI Suite, it's usually all bundled into that.
-------------------------------------------------
If you're still crashing after the above, it's time for some hard disk diagnostics. Start with a chkdsk (attach log afterwards) and then run Seatools:
Chkdsk:There are various ways to run Chkdsk~
Method 1:
Start > Search bar > Type cmd (right click run as admin to execute Elevated CMD)
Elevated CMD should now be opened, type the following:
chkdsk x: /r
x implies your drive letter, so if your hard drive in question is letter c, it would be:
chkdsk c: /r
Restart system and let chkdsk run.
Method 2:
Open the "Computer" window
Right-click on the drive in question
Select the "Tools" tab
In the Error-checking area, click <Check Now>.
If you'd like to get a log file that contains the chkdsk results, do the following:
Press Windows Key + R and type powershell.exe in the run box
Paste the following command and press enter afterwards:
get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername –match "wininit"} | fl timecreated, message | out-file Desktop\CHKDSKResults.txt
This will output a .txt file on your Desktop containing the results of the chkdsk.
If chkdsk turns out okay, run Seatools -
http://www.seagate.com/support/downloads/seatools/
You can run it via Windows or DOS. Do note that the only difference is simply the environment you're running it in. In Windows, if you are having what you believe to be device driver related issues that may cause conflicts or false positive, it may be a wise decision to choose the most minimal testing environment (DOS).
Run all tests EXCEPT: Fix All, Long Generic, and anything Advanced.
Regards,
Patrick