On July 17, 2026, How-To Geek published a hands-on report by Jorge Aguilar detailing how he used Anthropic’s Claude AI to diagnose and resolve four persistent Windows failures that Microsoft’s own troubleshooters couldn’t fix. The problems—locked files that resisted deletion, Bluetooth headsets connected but playing audio through the wrong speakers, an endless Windows Update loop, and a frozen Start menu—are familiar headaches for Windows users. Claude’s remedies relied entirely on built-in Windows utilities, but the process exposes both the potential and the pitfalls of leaning on AI for system repairs.
What Claude Found: The Diagnoses and Fixes
Here’s a summary of how Claude tackled each issue, according to the How-To Geek report:
Locked Files: Using Resource Monitor to Identify the Culprit
The problem: a file cannot be deleted because it’s “open in another program.” Windows knows something is locking it but won’t say what. Claude’s fix: open Resource Monitor (resmon.exe), go to the CPU tab, expand “Associated Handles,” type the filename, and the list will reveal the process holding a handle to the file. Right-click and end the process to unlock it. This is a standard diagnostic, but it requires knowing where to look—something the average user may not discover on their own.
Bluetooth Audio Routing: Forcing Stereo Profile via Legacy Control Panel
The problem: a Bluetooth headset shows as “Connected,” but audio plays through the laptop speakers. Microsoft’s Audio Troubleshooter often restarts services or reinstalls drivers but misses the underlying profile conflict. Claude explained that Windows handles two Bluetooth audio profiles: A2DP for high-quality stereo and HFP for voice calls. The fix was to navigate to the classic Control Panel, open Devices and Printers, right-click the headset, select Properties, go to the Services tab, and manually enable “Audio Sink.” This forces Windows to hold the A2DP connection.
Windows Update Stuck in a Loop: Wiping the Update Cache
The problem: an update downloads, gets to 99%, fails, rolls back, and repeats endlessly. The Windows Update Troubleshooter cannot repair a corrupted update cache. Claude’s script first safely stopped the Windows Update and Background Intelligent Transfer (BITS) services, then deleted the contents of C:\Windows\SoftwareDistribution, and finally restarted the services. Windows rebuilt its cache from scratch, allowing the update to install. This is a known recovery step documented by Microsoft, but Claude provided the exact sequence.
Frozen Start Menu: Re-registering App Packages via PowerShell
The problem: the Start menu becomes completely unresponsive, locking the user out of settings and apps. Claude identified the Start Menu Experience Host process as isolated from the shell, meaning a crash doesn’t affect the taskbar or keyboard shortcuts. By pressing Windows Key + X to open a quick-access menu and launching Windows PowerShell as administrator (though note: Microsoft later clarified this should be non-elevated for the affected user), Claude instructed a command to re-register all built-in apps. The command ran and restored Start menu functionality without a restart.
Why Microsoft’s Built-In Troubleshooters Didn’t Cut It
The common thread across all four cases is that Windows’ automated troubleshooters perform only surface-level checks. The Audio Troubleshooter restarts services; the Update Troubleshooter resets the Windows Update components but may not clear a deeply corrupted cache; the Start menu fixes often require manual intervention hidden in PowerShell. Microsoft’s own support documentation for Start menu errors lists steps like running System File Checker, using DISM, and checking event logs—none of which are part of the one-click troubleshooters. Claude’s advantage was that it could interpret symptoms contextually and pull from its training data to recommend the right manual tool for the job.
The Real-World Risks: AI Fixes Can Backfire
While Claude’s suggestions were accurate in these instances, they carry risks that the How-To Geek article acknowledged and that we must emphasize.
- Terminating processes via Resource Monitor: Killing a process that holds a file handle can cause data loss if the application has unsaved work. It could also destabilize dependent processes. Always save work and try closing the application normally first.
- Deleting the SoftwareDistribution folder: This is a destructive repair. Microsoft’s official guidance for controlled environments recommends renaming the folder (to preserve a backup) or using a more surgical approach: checking update error codes, examining servicing logs, and verifying that no safeguard hold exists. Admins in managed IT should avoid blanket deletions.
- Forcing Bluetooth service changes: The Audio Sink trick works only for specific headsets and configurations. It is not a universal fix. Profile mismatches can also be caused by driver errors, conferencing apps (e.g., Zoom, Teams) hijacking the hands-free profile, or firmware bugs. Users should pair the headset again, update drivers, and check default audio devices before digging into legacy properties.
- Broad PowerShell commands for Start menu: The command Claude provided re-registers all built-in apps. Microsoft advises that this should be done in a non-elevated PowerShell session for the affected user to avoid registering packages to the built-in Administrator account. Additionally, running the command can produce errors on some systems and may reset app settings. Microsoft’s own troubleshooting page recommends a targeted Add-AppxPackage repair for the specific Start menu package.
These risks don’t mean the fixes are invalid—they mean users need to understand what they’re doing and have a fallback plan.
How We Got Here: AI as an On-Demand IT Assistant
The idea of using a chatbot for Windows troubleshooting isn’t new, but this demonstration shows how large language models can bridge the gap between Microsoft’s automated tools and the deep-dive manual fixes buried in support forums. For years, users have relied on sites like WindowsCentral or TenForums to find step-by-step guides. AI can now generate those steps on the fly, tailored to the symptom. But the reliability depends on the model’s training and the user’s ability to verify the advice. Anthropic’s Claude, like other AI assistants, does not “understand” the system; it generates likely sequences from patterns. When it works, it’s magic; when it doesn’t, it could recommend a command that breaks something else.
What You Should Do Now: A Practical Guide
If you’re facing one of these issues, here’s a measured approach that balances Claude’s tips with safety.
For Home Users
| Problem | Quick Steps (from Claude’s advice) | Precaution |
|---|---|---|
| Can’t delete a file | Open Resource Monitor > CPU > Associated Handles. Search filename, note process, end it. | Save all work first; close apps normally if possible. |
| Bluetooth headset plays through speakers | Control Panel > Devices and Printers > Headset properties > Services tab. Enable “Audio Sink.” | If that doesn’t work, re-pair headset, update Bluetooth drivers, check Default Playback Device settings. |
| Windows Update keeps failing | Open admin Command Prompt. Run: net stop wuauserv and net stop bits, delete contents of C:\Windows\SoftwareDistribution, restart services with net start wuauserv and net start bits. |
Create a system restore point first. If the update still fails, check the update error code in Settings > Update & Security > View update history. |
| Start menu frozen | Press Windows Key + X, select Windows PowerShell (Admin), but log out and log in as your normal account, then run PowerShell without elevation as that user. Command: Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”} |
Only run this non-elevated for the affected user. A better first step: try restarting StartMenuExperienceHost.exe from Task Manager. |
For IT Administrators
- Treat AI-generated scripts as triage leads, not final solutions. Validate every command against Microsoft TechNet or support documentation.
- On managed endpoints, prefer renaming update cache folders (
SoftwareDistribution.old) or using the Windows Update reset script from Microsoft. - For Start menu issues, use event log ID 1000 from Explorer and check the Appx deployment log before mass re-registration.
- Always capture error codes and logs before undertaking any repair that deletes data.
Outlook: Will AI Become the Default Windows Troubleshooter?
Microsoft has already infused its Copilot AI into Windows, and future versions may allow you to type a symptom and receive guided steps similar to Claude’s. However, until AI can dynamically access your system’s state and logs safely, human verification remains essential. The How-To Geek experiment is a proof of concept: AI can empower users to solve their own problems, but only when combined with a healthy dose of caution and a backup.