Problem summary
After installing Windows 11 update KB5079473, the C: drive became inaccessible for standard users and several system tools stopped opening correctly. Symptoms pointed to broken NTFS permissions and disabled inheritance on C: rather than a hardware or file‑system failure.
Root cause
The update appears to have removed or corrupted NTFS inheritance and ACLs on the system drive (C:), so users lost permission to see or access files on C:, and some .msc tools (like Device Manager) failed with “Windows cannot access…” errors.
Fix you applied (step‑by‑step)
Use this as your “solution” text:
Open C: drive properties
In File Explorer, right‑click C: → Properties → Security tab.
Click **Advanced**.
Ensure **“Enable inheritance”** is turned on. If it is disabled, enable it so C: can inherit default system permissions again.
**Temporarily grant access to everyone (to restore usability)**
Still on the **Security** tab, click **Edit**.
Add the **Everyone** principal and grant at least **Read & execute** (or temporarily Full control if needed to regain access and fix the ACLs).
Apply the changes so users can see the contents of C: again while you repair the underlying permissions.
**Optionally, normalize permissions from an elevated console** Run Command Prompt as Administrator and execute:
```dockerfile
text
takeown /F C:\ /R /D Y
icacls C:\ /reset /T /C /L icacls C:\ /grant Administrators:F /T /C ```
`takeown` restores ownership to Administrators recursively.
`icacls /reset` restores default NTFS ACLs where possible.
The last command ensures the local Administrators group has full control on C:.
**Reboot and validate**
Restart the machine.
Confirm that users can access **C:**, and that tools like **Device Manager**, **Control Panel**, and other `.msc` consoles open normally.
**Mitigation for KB5079473**
Uninstall **KB5079473** if the issue started right after this update, and hide/hold it using your patch management or Windows Update tools until Microsoft publishes an official fix or updated build.