Windows 11 KB5074105 Storage Settings UAC Bug Fixes Guide

Windows 11 KB5074105 Storage Settings UAC Bug Fixes Guide

Windows 11 KB5074105 Storage settings UAC prompt breaks Temporary files cleanup—Update caches, drivers hidden. Full workaround guide using Disk Cleanup, PowerShell.

Windows 11 KB5074105 Storage settings UAC prompt landed January 29, 2026 with Build 26200.7705, demanding admin privileges every single time you hit Settings > System > Storage—a deliberate security move to lock down system files, but it royally botched the Temporary files cleanup page, hiding massive Windows Update caches, Delivery Optimization files, and driver packages that used to show up for deletion even if grayed out. Users across Reddit, forums, and X lit up within hours: Open Storage (UAC Yes), click Temporary files, refresh—and poof, no checkboxes for the GBs of cruft eating your C: drive. Microsoft’s support doc calls it “intentional protection,” but Disk Cleanup still sees everything fine, proving it’s a sloppy implementation where elevated Storage page spawns standard-token subpages that can’t peek at protected dirs.

I hit it on three machines—Pro laptop, Home desktop, Enterprise VM. Storage loads post-UAC, but cleanup feels neutered: Recycle Bin/Downloads show, system buckets vanish. Perfect storm of security theater breaking daily workflow for power users reclaiming space weekly. KB5074105 packed other tweaks (Explorer context fixes, Smart App Control glitches), but this dominates Feedback Hub reports.

The Security vs. Usability Clash Unpacked

Microsoft’s rationale shines in updated docs: “UAC ensures only authorized access to system files.” Logical post-CrowdStrike chaos—malware/scripts can’t bulk-delete Update caches or drivers anymore. Pre-patch, standard users saw grayed checkboxes (non-functional); now hidden entirely to avoid confusion.

Broken Buckets (GBs freed normally):

❌ Windows Update Cleanup (~5-20GB post-feature updates)
❌ Delivery Optimization Files (~1-5GB)
❌ Windows Upgrade Log Files (~500MB-2GB)
❌ Driver Packages (~1-3GB)
❌ Previous Windows installations (~20GB)
✅ User folders (Downloads, Recycle Bin)

Root Cause: Storage elevates for main page but Temporary files inherits non-admin token. Can’t enumerate protected paths → No checkboxes. Disk Cleanup elevates fully, loads system handlers—works perfectly.

Affected: All editions (Home/Pro/Enterprise), 24H2/25H2. Insiders clean.

Rock-Solid Workarounds: Reclaim Space Now

Method 1: Disk Cleanup (Gold Standard)

1. Win + R → cleanmgr → C:
2. "Clean up system files" → Check:
☑ Windows Update Cleanup
☑ Delivery Optimization
☑ Driver Packages
☑ Temporary Windows installation files
3. OK → Frees 10-50GB typically

Run monthly—faster than Storage Sense.

Method 2: Storage Sense (Partial Win)
Settings > Storage > Cleanup recommendations → “Run now” (misses Update caches, but hits user temp).

Method 3: PowerShell One-Liners (Pro)

powershell
# Update Cleanup
dism /online /Cleanup-Image /StartComponentCleanup /ResetBase

# Delivery Optimization
net stop dosvc
Remove-Item "$env:LOCALAPPDATA\PeerDistRepub" -Recurse -Force
net start dosvc

Method 4: Rollback KB5074105 (Nuclear)
Settings > Windows Update > History > Uninstall → Reboot. Auto-reinstalls next Optional scan.

Method 5: Task Scheduler Hack

Taskschd.msc → Create Task → cleanmgr /autoclean

Weekly auto-run as SYSTEM.

Verification Script:

powershell
Get-ChildItem "C:\Windows\SoftwareDistribution\Download" -Recurse | Measure-Object -Property Length -Sum

Quantifies Update cache before/after.

Microsoft’s Patch Outlook & Community Pulse

Official Stance: “Feature, not bug.” No ETA—Feedback Hub floods with 5k+ reports. Next Patch Tuesday (Feb 11) candidate.

Reddit r/Windows11: 2.3k upvotes on Disk Cleanup thread; PowerShell pastes everywhere.
Windows Latest: Confirmed across 7 builds—universal.

KB5074105 Silver Linings:

  • Explorer context menu polish

  • Reduced telemetry (minor)

  • 24H2 stability bumps

Future: Expect KB507411x toggle: “Show admin files in Storage” or full elevation inheritance.

Enterprise Implications & Best Practices

Intune/MDM: Group Policy can’t bypass UAC—script Disk Cleanup via Scheduled Tasks.
Server 2025: Same behavior, less impact (no Storage Sense).
Power Users: Pin cleanmgr.msc to Start—faster than Settings.

Windows 11 KB5074105 Storage settings UAC aims noble but executes poorly—Temp files neutered til patch. Disk Cleanup reigns; PowerShell scales. Microsoft’s “security first” mindset needs usability check. Frustrating half-measure—UAC everywhere feels paranoid. Disk Cleanup carries Windows cleanup torch proudly.

CATEGORIES
TAGS