The described symptom (external USB drive no longer accessible after a security update) matches known classes of issues where Windows updates affect USB storage handling or disk access permissions.
Based on the provided material, there are two relevant areas to check and remediate:
- Confirm the USB storage device is correctly recognized and mountable
- Check for permission or policy issues affecting removable/external media
1. Verify the USB storage device is recognized and mountable
On earlier Windows versions (Windows 7 / Windows Server 2008 R2), there is a documented issue where a USB storage device cannot be recognized or mounted, which is resolved by installing a specific update and rebooting. While the referenced article targets older systems, the troubleshooting pattern still applies: ensure the OS has fully applied the update and that a restart has occurred.
Actions:
- Ensure the system has been restarted after Security Update KB5079473.
- Disconnect the external drive, wait a few seconds, and reconnect it to a different USB port.
- Open Disk Management and verify whether the drive appears and has a drive letter. If it appears without a letter, assign one.
If the drive is not recognized at all, this mirrors the “USB storage device cannot be recognized or mounted” scenario. In that documented case, the resolution is to apply the relevant hotfix/update and restart. For the current system, ensure all pending cumulative and driver updates are installed and that the system has completed all post‑update restarts.
The context also describes a scenario where NTFS disk access permissions for removable or external media can be affected, and how to determine whether a disk is treated as removable or external:
- Open an elevated Command Prompt (Run as administrator).
- Start PowerShell by typing:
powershell
- Run:
Get-WmiObject -Class Win32_DiskDrive | Format-Table Name,Model,MediaType
- In the output, locate the external drive and check the
MediaType column:
- If it shows
Removable media or External hard disk media, it is treated as removable/external.
If the drive is listed as removable/external and access is blocked or inconsistent after the security update, the documented hardening guidance is:
- Enable BitLocker on the external drive to preserve OS‑level permissions and protect data.
- Or enable and configure controls for read/write access to removable devices or media via policy.
These measures ensure that disk‑level permissions are enforced correctly for removable/external media and can mitigate access issues introduced by security hardening.
If access remains blocked after confirming the drive is visible in Disk Management and the MediaType is correctly identified, consider:
- Temporarily connecting the drive to another Windows system to confirm the disk itself is healthy.
- Reviewing any removable‑media access policies that may have been tightened by the security update (for example, device installation restrictions or removable storage access policies) and adjusting them as needed.
References: