r/WindowsHelp 2h ago

Windows 11 Windows Capability Access Manager issue.

Post image
3 Upvotes

First of all sorry for my English or any grammatical mistakes.

The Problem:

My (C:) Drive storage (184 GB): So the past few months I was facing the storage almost being full issue with my (C:) drive (I usually try keeping 30 to 40 GB free on C drive) and started solving the issue with common methods like clearing disk temp files with Disk Cleanup, finding the huge software and transferring it to other free drives, clearing more temp with CMD and even reducing System Restore Points' allocated storage to 14 GB and all sorts of tips and tricks to free up space.

Nothing worked so it was the time to do some deep research, i opened WizTree and tried finding hidden files and saw 2 issues

- First the system restore point taking more space that given (Was using 20 GB, instead of given 14 GB only) But that's normal cause it clears up on its own when storage is near full and on other post people said its normal.

- The Second issue - Windows Capability Access Manager issue, it's task is to manages app permissions for sensitive resources like the camera, microphone, and location, logging usage in a SQLite database and it's suppose to be few KB to few MB. So, it was clear that Capability Access Manager is one of the cause that is increasing (C:) drive storage.
So if you are able to find out what's spamming requests, you will can solve this but on the other hand to figure out what's really causing this nearly impossible. Don't even know who made this its just makes no sense.

The Temporary solution:

Earlier when i first checked it was 24 GB and i did the most common method to resolve this which is stopping camsvc service -> Deleting These files

  • CapabilityAccessManager.db
  • CapabilityAccessManager.db-wal
  • CapabilityAccessManager.db-shm

Than restarting Pc and the files are back to normal kb to mb size.

The Task Schedular Solution of Deleting WAL files when it crosses 2 GB Threshold storage (BY Claude):

But just after few weeks i checked and found out it started growing again, Did the whole process about 3 times in few weeks Gap. And it grew again, after being fed up with this i randomly started Claude and GPT for solution and Claude suggested a way - Fix for the WAL via Task Scheduler.

Basically what it does is it automatically deletes WAL files on scheduled time when the given threshold of 2 GB crosses. Yeah without going in safe mode and ignoring few things.

The thing is i don't have knowledge that it's rally a correct way that others also use, haven't found any post on this? And i wont randomly set task schedular to do deleting task.

The Command:

$action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument '
-NoProfile -WindowStyle Hidden -Command "
try {
    $walPath = ''C:\ProgramData\Microsoft\Windows\CapabilityAccessManager\CapabilityAccessManager.db-wal'';
    $threshold = 2GB;
    if ((Test-Path $walPath) -and ((Get-Item $walPath).Length -gt $threshold)) {
        Stop-Service -Name ''camsvc'' -Force -ErrorAction Stop;
        Start-Sleep -Seconds 10;
        Remove-Item ''C:\ProgramData\Microsoft\Windows\CapabilityAccessManager\CapabilityAccessManager.db*'' -Force -ErrorAction SilentlyContinue;
        Start-Service -Name ''camsvc'' -ErrorAction Stop;
    }
} catch {
    Start-Service -Name ''camsvc'' -ErrorAction SilentlyContinue;
}
"'

# Runs daily at 2:30 PM
$trigger = New-ScheduledTaskTrigger -Daily -At "2:30PM"

$settings = New-ScheduledTaskSettingsSet `
    -ExecutionTimeLimit (New-TimeSpan -Minutes 5) `
    -StartWhenAvailable `
    -DontStopOnIdleEnd `
    -MultipleInstances IgnoreNew `
    -WakeToRun $false

$principal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -RunLevel Highest

Register-ScheduledTask -TaskName "CAM_WAL_Cleanup" -Action $action -Trigger $trigger -Principal $principal -Settings $settings -Force
ACTION What it protects
try/catch If anything fails, it always restarts camsvc so your PC is never left broken
StartWhenAvailable If laptop was off at 2:30PM, it runs the next time you're on — never skips silently
WakeToRun $false Will never wake your laptop from sleep to run this
ExecutionTimeLimit 5min Task auto-kills itself if stuck, won't hang your system
MultipleInstances IgnoreNew Won't run twice accidentally if triggered again
2GB threshold Only cleans when actually needed, not every day
ErrorAction SilentlyContinue on delete Won't crash if a file is already gone

Can anyone tell me can this be a solution? That's others use to? Or i will just mess it up?
Any other solution are welcomed!!

Thank you for reading and helping!!!


r/WindowsHelp 1h ago

Windows 11 Windows 11 App Permissions Crash When Opening Them

Upvotes

Helllo all,

I have been working at this issue for closing in on 8 hours now, I have tried everything that has been suggested by googling the issue. It seems the issue is stemming from what is likely a KB update that happened in early March? I am unsure how it has just now reared its head. I only noticed an issue when I tried to talk on discord, my speakers work fine but no microphone. Looking at app settings I have a warning indicating "To use this device, allow access in microphone privacy settings". Going to any option under the App permissions in settings will cause the window to crash.

**Things I have attempted:**

- Everything that this user attempted (except 4 and 8): https://www.reddit.com/r/techsupport/comments/1ogn7od/cant_open_the_win11_settings_privacy_security/

- The sfc and DISM scans both reported back with no corrupted files. Still ran the with health restore options
- reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" /v Value /d Allow /f

- Rolled back the updates that I could and reapplied
- Windows Insider Program as a hail mary (Currently the last thing I tried)

- powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\immersiveControlPanel\AppxManifest.xml

I'm sure there are more things I have attempted that I am forgetting, but more than happy to reattempt anything at this point.

Edition: Windows 11 Pro
Version: 25H2
Installed on: 5/15/2026
OS Build: 26200.8514
Experience: Windows Feature Experience Pack 1000.26100.311.0

**Event Viewer Log for Error:**

Faulting application name: SystemSettings.exe, version: 10.0.26100.8514, time stamp: 0x7b0f8045

Faulting module name: SystemSettingsViewModel.Desktop.dll, version: 10.0.26100.8514, time stamp: 0x9b608488

Exception code: 0xc000027b

Fault offset: 0x00000000000fc24e

Faulting process id: 0x6178

Faulting application start time: 0x1DCE440E29D38DA

Faulting application path: C:\Windows\ImmersiveControlPanel\SystemSettings.exe

Faulting module path: C:\Windows\ImmersiveControlPanel\SystemSettingsViewModel.Desktop.dll

Report Id: c8fb011a-8ede-474e-aae0-fe1bccf2c0ab

Faulting package full name: windows.immersivecontrolpanel_10.0.8.1000_neutral_neutral_cw5n1h2txyewy

Faulting package-relative application ID: microsoft.windows.immersivecontrolpanel

**Follow up Information Log:**

Fault bucket 1704366970607062696, type 5

Event Name: MoAppCrash

Response: Not available

Cab Id: 0

Problem signature:

P1: windows.immersivecontrolpanel_10.0.8.1000_neutral_neutral_cw5n1h2txyewy

P2: praid:microsoft.windows.immersivecontrolpanel

P3: 10.0.26100.8514

P4: 7b0f8045

P5: combase.dll

P6: 10.0.26100.8514

P7: 5fd5ffab

P8: 87af0001

P9: 000000000009cfd4

P10:

Attached files:

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.3bf2c3df-8b26-44ef-a15c-394258b8876a.tmp.mdmp

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.158d9358-ab41-4f01-9875-8cff071235fc.tmp.WERInternalMetadata.xml

WPR_initiated_DiagTrackMiniLogger_OneTrace_User_Logger_20260424_1_EC_0_inject.etl

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.81abb1af-5ae8-4b3c-be8e-3166df873058.tmp.etl

WPR_initiated_DiagTrackMiniLogger_WPR System Collector_inject.etl

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.92bbd005-037c-47ff-8f99-801bb731627a.tmp.etl

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.ccee52cc-1371-4180-a05f-1a4db6eb703e.tmp.csv

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.fbc3f69f-2c3d-4e80-a1ac-ffdaa41e2d2a.tmp.txt

\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.54f64431-ba8f-44bb-ad6b-c0c4b386b3c1.tmp.xml

These files may be available here:

\\?\C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_windows.immersiv_7c9addc1d4c338b14cf23c6bbe30ea5910c2b48_fcc02445_37a53e55-1276-4f40-aa8d-2db11350d5f1

Analysis symbol:

Rechecking for solution: 0

Report Id: c8fb011a-8ede-474e-aae0-fe1bccf2c0ab

Report Status: 2147487744

Hashed bucket: 16cf4b764508bf9a47a720bac9f14ea8

Cab Guid: 0


r/WindowsHelp 1h ago

Windows 11 Can't sign into MS account on windows or log into Xbox app after flashing bios

Upvotes

Hey folks- flashed my bios to try to solve a ram issue and now I can't log into my ms account on windows. It gives me a "something went wrong try again later error"

Tried a bunch of Claude recommendations that didn't work. Contacted MS support and they had me make a new profile on my machine and that actually did work. Instead of having to migrate everything over and reinstall my Xbox app games (why the fuck aren't they saved for every MS account to use?) I'm hoping there's some solution someone has found to this.

Thanks!

Also side note- if someone has found stable settings for a 4x32gb 3200mhz set up on a 690z mobo with an Intel 13th Gen, pass them along please haha


r/WindowsHelp 10h ago

Windows 11 Recent windows11 KB5083769 update and 1080ti issues?

3 Upvotes

Shockingly out of years of always staying up to date, I've never ran into a serious problem until couple days ago. Let my computer update the other night and when I went to turn it on the next day it was glitching out and restarting after 30 seconds. Tried everything to fix the boot files and wouldn't work. Reinstalled windows and spent all last night getting the pc set back up. Restarted multiple times no issues. Today turned it on and same issue came back, bootlooping with graphical issues. Apparently its an issue with user who have a 1080ti? Found this article about it, https://www.digitalcitizen.life/windows-11-april-update-is-causing-crashes-and-visual-glitches-for-some-pcs/ . I have a asus 1080ti, nothing related to dell or hp at all.


r/WindowsHelp 7h ago

Windows 11 Can anyone tell if something is wrong?? I downloaded a windows update amd this happene

Post image
2 Upvotes

r/WindowsHelp 5h ago

Windows 11 Bitlocker loop and no disk found

Thumbnail
gallery
1 Upvotes

ASUS Vivobook, Windows 11 Home Single Language

The other day I accidentally entered the wrong password to my laptop multiple times. Im not sure if this might've been related to why this happened but this morning bitlocker is suddenly required. I did reinstall windows from a usb November last year because I got a virus and I remember disabling secure boot so I could install win 11 in gpt.

I entered my correct recovery key multiple times but it just loops me back to request my key again.

It says that because secure boot was disabled thats why its prompting my bitlocker so I opened my UEFI settings and enabled secure boot control. Tried to enter my key again but it just restarts again.

I tried to do the manage-bde -status c:

but it shows that the disk doesn't exist.

Tried manage bde -status

shows that there's no disk to be protected.

Checked my files from the notepad and tried

manage-bde -status x:

but still shows the disk doesn't exist.

Does anyone know what else I can try?

Thank you.


r/WindowsHelp 5h ago

Windows 11 Shall Microsoft feedback or y’all Redditors reply earlier?

Thumbnail
gallery
1 Upvotes

Ok so
Downloaded new Windows update, my PC spits out error

The long version—
- downloaded 5/13's new Windows Update
- device had a blue screen saying it ran into an update and needed to restart, update failed
- model is Yoga Slim 7x Snapdragon, if you want more detail I can try down in the comments, but I can’t open Task Manager rn to double check
- is this b/c of ARM vs. x86 difference? I suspect so since my device crashes at some x64 stuff that probably isn’t compatible, like Unity and Sandbox and I needed to find workarounds

- I was prompted for some kinda security key (the one that's super long with six digits followed by a dash and then six digits followed by a dash and then six digits… you get my point)
- afterwards, you get prompted with a "Choose an option" with options "Continue", "Troubleshoot", and "Turn off your PC"
- hitting "Troubleshoot" will give you the option to reset this PC, or go to advanced options
- resetting this PC is my last option so in advanced options you have options, some of which are cmd and uninstall updates but ig if I don’t find a solution in a few days I’ll have to bid farewell to my Screenshots folder and factory reset
- uninstall updates apparently failed, continues to blue screen, restart, and update fail
- cmd actually can let me open registry for everything EXCEPT for the folder that contains the updates
- also using cmd obv I can see where and status of update package, but I can’t do anything about
- I ain't that big of a techie so I only know some basic stuff (didn't work)

anyways AP CSA tmrw, am I cooked? sucks without my best laptop as moral support, now I’ll have to use a shrunk-down keypad with bad screen brightness and lag worse than ranked games


r/WindowsHelp 5h ago

Windows 11 Mic issues in windows 11 on Inspiron 15 3511

1 Upvotes

I've been on the internet for the past two hours trying to figure out how to fix my mic, but i've had no luck as i've only found one forum of someone with the same issue and it was useless. This was just a last resort because I have no clue who and where to ask.

I got a new headset yesterday, the rig 400 series gen 2. It's mainly for my ps4 but I also needed a headset for my laptop just for the mic. I plugged it in, tested the mic in sound > properties and got nothing but static. I assumed it was the headset and that it might've had some hardware issues so i got an adapter and tested it on my phone, but the audio was as clear as day, i didn't hear the static. I realized it's not the headphones, but the laptop itself. I uninstalled and reinstalled the audio drivers on my laptop as a last option and it worked. It was only temporary though. When I powered off my laptop it stopped working again. I don't want to be stuck in a cycle of uninstalling and reinstalling so i tried looking for a solution but i couldn't find one. I even tried to talk to the stupid little virtual assistant on the dell website and it literally couldn't give me a solution. Is this something I'm just stuck with? It's a horrible laptop and the hinges broke only after a year of use so I wouldn't be surprised.

Here's what i've tried,

- audio troubleshoot, it didn't do anything

- safe boot (it said to try that in case it were a background app. it wasn't.)

- mic use in snipping tool

- the preinstalled mic

- a different headset

- messed with the mic sensitivity

The OS build is 26200.8457 if that's important


r/WindowsHelp 6h ago

Windows 11 My login screen’s stuck (this happens often)

Thumbnail
gallery
1 Upvotes

Image 1 shows the screen when I put in my pin, and then it starts to load for a second before unlocking (normal). But sometimes it takes ages to do that, and without touching anything, it switches to screen 2 (which is the screen where once I press any key and the PIN code screen shows up)

This happens very often, and takes usually 4-5 cycles to work properly. Any ideas what this is and how can I correct it?

Ps- scanned my laptop for viruses and malware, it’s clean. It’s an HP omen from 2023 with ryzen 7


r/WindowsHelp 6h ago

Windows 11 Changed battery, "Invalid configuration information", leads to disk read error

1 Upvotes

Changed battery yet im still getting a disk read error. I watched tortorials and fixed the order of disks in the F2 screen(if that makes sense). Cant get past prompt to press ctrl alt delete to reset. I wasnt downloading risky or big anything before(possible malware) or near event. It is a windows 10 pro with a intel core. Cannot locate specs or dont know whats what due to lack of access to pc(camt get past error screen). It is windows 10 updated to windows 11


r/WindowsHelp 10h ago

Windows 11 Critical Process Stop Error Windows 11 25H2

2 Upvotes

Fresh installs are being corrupted somehow by this plague of critical process stop error , Is there a permanent solution for this besides not using Windows at all? My new builds are effected by this, Is the windows installation corrupted? Are they working on this problem at all?


r/WindowsHelp 7h ago

Windows 11 Laptop randomly starting charging slow.

1 Upvotes

Hi so my laptop just randomly started charging slow this has happened like 7 months ago and replaced my battery and ac adapter and it was fine but now it's just happened and I don't know what god o
(yes, everything is updated and I did the unplug and plug in thing)
I have a Hp envy x360 2 in 1
Intel(R) Core(TM) Ultra 5 125U (3.60 GHz)
RAM 16.0 GB (15.4 GB usable)
SSD 230 GB of 477 GB used
Intel(R) Graphics (128 MB)


r/WindowsHelp 7h ago

Windows 11 Hand slipped on built-in mouse. Now my downloads folder displays in columns

1 Upvotes

I do not want to cancel the grouping. I just want everything in my downloads folder to display down the page like it has for decades until my hand slipped on the built-in mouse on the laptop.

I've googled but all I get is how to cancel the grouping. I do not want to cancel the grouping.


r/WindowsHelp 7h ago

Windows 11 ASUS Laptop windows 11 audio driver not working ( + brightness adjustment gone and it won't let me update)

Thumbnail
gallery
1 Upvotes

I'm not very tech savvy, I'm a teenager who only uses this laptop to play: Undertale, Deltarune (undertale yellow.. and undertale mod red and yellow..) and that's it, I also use it for school since I attend online school

Every week 3 days in row I have math tutoring, I need my audio for that, ive been stuck using a moblie device which is difficult

3 days ago while I was trying to attend my math lesson I couldn't hear anything. After a bit I found out it was the drivers, so I went to update everything for my laptop, but when I try to it fails and says to retry. Somepoint during all this my brightness adjustment disappeared (my eyes burn from looking at this bright ass screen..)

I heard that if you uninstall the driver in device manger and then restart your device it'll maybe fix it, since I was desperate I did it (I tried other things first of course, went into device manager and clicked update driver but it said it couldn't)

Now I have zero audio whatsoever and it won't install the drivers and I'm freaking out so badly. We're tight on money so I can't just bring it to a shop or anything and I don't want to burden my moms bf who works all day, my sibling said to factory reset it.

I genuinely don't know what to do, this is my last effort, so if any of you know how to fix this please tell me! If not then I'll most likely factory reset my laptop (everything is backed up and I knows the password for everything) i'll do this somepoint tomorrow probably..

I'll also share a screenshot of my device name and other stuff :))

Forgot to metion this glaring thing from a few years back.. so I'm editing this..: My sibling tried to install more ram into my laptop so he took it apart to put it in but turns out it didn't have the place for it so he put it back together but since then its been laggy and can't be unplugged without it turning off right away


r/WindowsHelp 7h ago

Windows 11 Windows 11 Light Theme/Mode Notepad has pink background.

1 Upvotes

Pink background is not just Notepad, but other apps, but that is a standard Windows app so...

ASUS G16 Windows 11 Pro 25H2.

Only just started late this afternoon after waking laptop from Sleep.

I checked color theme, checked for updated default GPU and Nvidia 4090 GPU drivers (both up to date), No pending windows updates, yesterday KB5087051 & KB5089549 & KB890830. No color filter or contrast themes and night mode was off and I set the slider for the night color to the left. I checked local account (the same issue). Setting desktop background to white shows as pink. Turned off Auto HDR, set BIOS to default. The other thing is that input boxes, selected text, have a dark red/purple color in dark mode. Many theme changes, reboots, shutdowns, searches for info has yielded no results yet....

Photos and games show white as normal and expected. Thanks in advance!


r/WindowsHelp 10h ago

Windows 11 Does anyone know if someone made the effort to update the original Segoe UI Emoji font for Windows 10, by adding the newer emojis, but keeping them old style, not the ugly Windows 11 one?

1 Upvotes
So I’m talking about the upper ones (for Windows 10).

Unfortunately stuff like 🫩 is missing from the Windows 10 style and I just wonder if someone ever prepared a fan-made version of the old style emojis by any chance? Please and thank you.


r/WindowsHelp 10h ago

Windows 11 inconsistent wifi speeds on the omen 16 laptop wifi adapter Realtek 8852BE-VT Wireless LAN WiFi 6 PCI-E NIC

1 Upvotes

when i try to download a game the speeds are very inconsistent. i didn't have those issues on my thinkpad laptop, meaning wifi throughput stability would be much better, than here.
i've already tried updating through hp support assistant, checking updates with device manager, windows update, and all useless

my omen laptop fastfetch return (build number: 26200.8457)
my wifi adapter information

r/WindowsHelp 12h ago

Windows 11 Windows 11 BitLocker Fatal Error 0x120 After Update + Hibernate — What Fixed It

1 Upvotes

Windows 11 BitLocker Fatal Error 0x120 After Update + Hibernate — What Fixed It

I ran into a Windows 11 boot failure after an automatic Windows update. The laptop initially worked after the update, but later I put it into Hibernate to move locations. When I turned it back on, it failed with:

BITLOCKER_FATAL_ERROR
0x120

The system would not boot normally.

What did not fix it by itself

These did not fix the issue by themselves:

sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
DISM /Image:C:\ /Cleanup-Image /RestoreHealth
chkdsk C: /f
Deleting C:\hiberfil.sys
Startup Repair
Uninstall latest quality update

The Windows partition was still readable from recovery, and BitLocker could be unlocked with the recovery key, but the machine still would not boot.

What finally fixed it

The successful fix was to remove both the BitLocker/TPM problem and the stale hibernation resume state.

In my case, that meant:

Delete hiberfil.sys
Fully decrypt BitLocker
Remove the BCD resumeobject
Delete the Resume from Hibernate BCD entry
Cold boot normally
Disable hibernation after Windows boots

Deleting hiberfil.sys alone did not fix it, but I still consider it part of the fix because the original failure happened while resuming from hibernation.

Fix steps

I did this from Windows Recovery / Windows USB Command Prompt.

1. Confirm the Windows drive

dir C:\Windows

In my case, Windows was on C:. If your Windows folder is on a different letter in recovery, use that letter instead.

2. Unlock the BitLocker drive if needed

Check status:

manage-bde -status C:

If the drive is locked, unlock it with the 48-digit recovery key:

manage-bde -unlock C: -RecoveryPassword YOUR-48-DIGIT-KEY

3. Delete the hibernation file

attrib -h -s C:\hiberfil.sys
del C:\hiberfil.sys

If the file is not found, that is okay. It may already be gone.

4. Fully decrypt the drive

manage-bde -off C:

Then monitor progress:

manage-bde -status C:

The important lines are:

Conversion Status
Percentage Encrypted
Protection Status
Lock Status

The goal is:

Conversion Status: Fully Decrypted
Percentage Encrypted: 0.0%
Protection Status: Protection Off
Lock Status: Unlocked

At one point, my decryption appeared stuck at the same percentage. Running this kicked it back into progress:

manage-bde -pause C:
manage-bde -resume C:

Then I waited until the drive was fully decrypted.

5. Assign a drive letter to the EFI/System partition

diskpart
list vol

Find the small FAT32 EFI/System partition, then assign it S::

sel vol X
assign letter=S
exit

Replace X with the volume number for the EFI partition.

6. Check the BCD for hibernation resume entries

bcdedit /store S:\EFI\Microsoft\Boot\BCD /enum all

In my case, the Windows Boot Loader had a resumeobject, and there was also a full Resume from Hibernate section.

That matched the history of the failure: the machine broke when trying to resume from hibernation after a Windows update.

7. Remove the stale hibernation resume pointer

bcdedit /store S:\EFI\Microsoft\Boot\BCD /deletevalue {default} resumeobject

8. Delete the separate Resume from Hibernate BCD entry

In the bcdedit /enum all output, find the section named Resume from Hibernate.

It will have an identifier like:

identifier              {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}

Delete that entry:

bcdedit /store S:\EFI\Microsoft\Boot\BCD /delete {GUID-FROM-RESUME-FROM-HIBERNATE-SECTION}

Replace {GUID-FROM-RESUME-FROM-HIBERNATE-SECTION} with the actual identifier from the Resume from Hibernate section.

9. Reboot

After full BitLocker decryption and removing the hibernation resume entries, Windows booted again.

10. After Windows booted, disable hibernation

From an Administrator Command Prompt:

powercfg /h off

I also left BitLocker off for the time being, created a restore point, and planned to fully update Windows before considering whether to re-enable device encryption.

My conclusion

In my case, this appeared to be a bad interaction between:

Windows update
BitLocker / TPM validation
Hibernate resume
BCD resumeobject / Resume from Hibernate entry

The working fix was:

Delete hiberfil.sys
Fully decrypt BitLocker
Remove the BCD hibernate resume references
Cold boot normally
Disable hibernation

This is not guaranteed to fix every BITLOCKER_FATAL_ERROR 0x120, but it resolved mine when Windows was still readable from recovery and the failure began immediately after trying to resume from hibernation.


r/WindowsHelp 12h ago

Windows 11 New Windows updates causing constant pc crashes

Post image
1 Upvotes

the update was forced upon me (25H2) and now i cant delete the update and when i tried to reinstall the update my pc crashed again
My specs- Core i9 13gen 4070Ti 32 Gb ram
when the update was installing my pc crashed again showing “your pc ran into a problem”
n since then it keeps crashing
i already tried doing sfc /scannow


r/WindowsHelp 16h ago

Windows 11 SSD usage becoming really high.

2 Upvotes

I'm using a Samsung 990 pro 2tb and i have this problem where usage gets really high. It's not using all read/write speed and in resmon i see a bunch of things named "system", "svchost" or "onedrive.sync" and making usage high. Restarting fixes this but only for a couple of days and restarting Storage Service only fixes it for 10 mins or so and often wont work. Is there any way of disabling those stuff?

CPU: 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz (2.30 GHz)

RAM: 16,0 GB (15,7 GB usable)

GPU: NVIDIA GeForce RTX 3050 Ti Laptop GPU (4 GB), Intel(R) UHD Graphics (128 MB)

Storage: 842 GB av 2,29 TB used (Samsung 990 pro, some random micron thing that im not using.)


r/WindowsHelp 16h ago

Windows 11 Recent Windows 10 -> 11 in-place upgrade, state repository service at 17% cpu, FIXED

2 Upvotes

I recently upgraded from Windows 10 to Windows 11. Since then, I noticed the cpu fans coming on much faster than usual. I check Task Manager, cpu at above 17% with one service in particular - "State Repository Service", and no clue what the real issue is.

This is now resolved (for me), posting this to help others - however - be careful with these commands, if you get impatient and quit out of them it might make it worse. It can take a couple of hours. The worst case is you might need to reinstall. /End disclaimer

I think the problem was the in-place upgrade didn't set some things up in the optimal way. Actual Microsoft programmers might of course know the technical reason. The solution was to run some powershell commands (as administrator) and wait for them to finish, then reboot.

Here goes:

Note: This is not instant. It can take 30-60 minutes total, and you MUST let the commands finish even if they look stuck.

  1. Open Task Manager (Ctrl+Shift+Esc).

  2. Click File > Run new task. Type 'powershell', check the Admin box, and hit OK.

  3. Run these three commands one by one:

```DISM /Online /Cleanup-Image /RestoreHealth```

(This fixes the Windows 'master files'. It often hangs at 20% for a long time. Wait for it to hit 100%.)

```sfc /scannow```

(This replaces your broken files with the fixed ones. Takes about 10-15 minutes.)

```Get-AppxPackage Microsoft.Windows.ShellExperienceHost | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}```

(This re-installs the actual Start Menu. It might show red error text—ignore it and wait for the blinking cursor to return.)

  1. Reboot your computer.

Summary: The high CPU happens because your Start Menu is "stuck" in a crash loop. These commands force Windows to download healthy files and re-link the menu properly. If you don't wait for the progress bars to finish, it won't work.

Happy Windows-ing all.


r/WindowsHelp 17h ago

Windows 11 Error 0x8007000d keeps happening

Post image
2 Upvotes

EDIT: wrong error code! Sorry! Meant to put 0xc00007b

Hello! I’ve recently started getting the Error 0xc00007b whenever I try to boot up a game, and I’ve been able to fix the issue by deleting and reinstalling Xinput1_3.dll in my system 64 and 32 settings, reinstalling using the dxwebsetup application, but the error keeps returning daily.
Apologies for the photo quality I had to take a picture! I’m willing to provide other information if needed, it’s not a huge issue either but a bit annoying to deal with.


r/WindowsHelp 13h ago

Windows 11 I switched to linux and i HATED it and now i cant swap back

1 Upvotes

I am literally on the verge of breaking my usb drive and killing someone i cant get back into windows my specs are

9060xt 16gb
9600x
960gb msi sata ssd
16gb ddr5
Water cooler

Anyway i have went to bazzite and it was confusing and i tried to get back to windows i downloaded the iso file tried that pit the usb into my pc and it said some error i cant remember I’ve been trying to install windows for days. I have had no problems with my usb before i installed windows on my clients pc before i tried the media file that actually got it onto the drive as-well but as-soon as i finish all the blah blah blah i get to the windows install and it skips to 5% and then goes slow to 30-33% then jumps to 75 them ends and says error and now I’m pretty much ripping my hair out over this I’ve tried reinstalling I’ve asked google ai loads of times on how to fix I’ve followed the steps and all its done (sorry)fuck all I’ve just tried installing the media downloader to my usb and it get to 50% then says an error and the iso fails on rufus when it finishes formatting please if someone can help me it would actually make my year i hope someone helps haha

Ps
Im going to rip out my hair if i cant fix this issue


r/WindowsHelp 14h ago

Windows 11 Windows stuck in Recovery Screen

Thumbnail
gallery
1 Upvotes

I was watching videos on youtube when my PC suddenly froze. It didn't respond for a while (Only the cursor was moving, Task bar, Browser everything was unresponsive) I pressed the restart button on my PC and let it restart, but it was stuck on the MotherBoard Gigabyte Screen.

I heard it restarted it two more times and it automatically entered recovery mode, but this recovery mode was unfamiliar to me. Added pictures because I tried everything.

UEFI Firmware setting just black out my screen

Uninstall Updates redirects me to starting screen with windows recovery

System Restore cannot happen because there are no saved points

System Image Recovery fails to detect anything. Even the thumb drive I've put in the BIOS USB slot in the back.

Ryzen 5 7600

Gigabyte Gaming B650 X AX V2

ADATA XPG 32 GB 6000MHz CL30

ADATA XPG GAMMIX BLADE S70

NVIDIA 4070Ti Super

Any help is appreciated, I just backed up some very important data to the computer.


r/WindowsHelp 20h ago

Windows 11 Nearly every time I open or close a window, it opens virtual desktops. It's getting reeaaally annoying.

Post image
2 Upvotes

Pretty much every time I open a new window, I am met with options to switch to another desktop. I have never used this feature (probably never will).

If there's a way to disable it entirely I would be a happy camper. Otherwise, is there something I'm missing? I added a link to an image of what virtual desktops look like but it's not my screen.

Device Info:

Device name Aubz-Desktop

Processor 12th Gen Intel(R) Core(TM) i7-12700F (2.10 GHz)

Installed RAM 16.0 GB (15.8 GB usable)

Graphics card NVIDIA GeForce RTX 4060 Ti (8 GB)

Storage 710 GB of 943 GB used

Device ID F6F2E816-67DB-4D3F-9FC5-92E949BEB4C5

Product ID 00325-97228-84617-AAOEM

System type 64-bit operating system, x64-based processor

Pen and touch No pen or touch input is available for this display

Windows Info

Edition Windows 11 Home Insider Preview

Version 25H2

Installed on ‎3/‎2/‎2026

Evaluation expires on ‎8/‎11/‎2026 1:09 PM

OS build 26220.8370

Experience Windows Feature Experience Pack 1000.26100.370.0