I've run into a similar situation and using the commands I found here I came up with similar results, one way or another, that indicated the faulting module as nvlddmkm.sys, similar to the OP. My current suggestion, and the one I'm also seeing if it might resolve my issue is as follows.
Suggested Fix:
For the OP, open explorer and navigate to the nvlddmkm.sys file, in their case:
\SystemRoot\System32\DriverStore\FileRepository\nvmii.inf_amd64_ae100378cf58e795\nvlddmkm.sys
In my case, it was:
C:\Windows\System32\DriverStore\FileRepository\nv_dispsig.inf_amd64_1d7bca28ac3cf032
For everyone else, simply open the \Windows\System32\
directory and do a search for the nvlddmkm.sys
file to find it, then:
- Right-click on the file and go to Properties.
- Under the Security tab, using either Advanced or Edit, (however you'd like) to change the file permissions for the Group
Users
(Usually shows asUsers (YOURPCNAME\Users)
and... - Set permissions to
Full Control
(If currently only set toRead & execute
)
Apply and close to give that a try and see if it helps fix your issues.
Off-Tangent Background Info
My system setup is different (Windows 10 Pro), where I ended up on Version 22H2 but updating late from 21H1 midway through 2023 at some point had otherwise resulted in constant BSOD. All search results and memory dump analysis reports seemed to all suggest it was a driver issue or faulty memory. Since the system had been working fine for almost a year before that and the issue only surfaced following a windows update, I was inclined to think that it wasn't a hardware issue (perhaps naively so) and decided to blame the more easily convincing Windows Update which has a notorious reputation for giving me issues (and why I updated to 22H2 so late) as it always forces it's way through any settings I have to prevent it (even Group Policy ones). But, I digress.
So, when simply updating my drivers didn't work, I did a full removal of the nVidia drivers using DDU v18.0.6.8 in safe mode (not just checking the 'clean installation' option) and made sure that before booting back into normal mode, my settings for auto-update of system drivers was OFF so that I could be sure the new display driver was directly from nVidia. In my case, at that time, it was the Studio ready driver 537.42. I've heard that this helped fix the issue for many people but it didn't work for me. However, the BSOD crashes did occur less often, relatively speaking and for awhile almost made me think the issue was solved.
Not more than a couple days later, BSOD again. Back to analyzing dumps I arrived at what I mentioned in the first paragraph, using WinDbg
and the dbgcmd
line options aforementioned.
Now to see if the file permissions thing might've made a difference and hope it helps anyone else out there.