So you plug in your external hard drive – maybe a Seagate Backup Plus or a WD My Passport – and when you right-click to create a new folder, Windows throws up Access Denied. This isn't the typical "you need admin rights" thing. It happens even if you're the admin. I've seen this on everything from Windows 10 22H2 to Windows 11 23H2. The real trigger is usually one of two things: the drive's formatted as exFAT (which sometimes bugs out with folder creation) or it's encrypted with BitLocker and the protection state is messed up.
Why It Happens
Root cause is almost always a permission mismatch. When you plug in an external drive, Windows applies a default permission set. If that set doesn't give you full control, you can't create folders. But there's another common culprit: BitLocker. If the drive was encrypted on another PC and you didn't unlock it properly, Windows blocks write operations. And sometimes it's just the file system – exFAT drives that were used on a Mac or a camera can get sticky with Windows folder creation.
Skip the "run as administrator" or "reboot" stuff – they rarely help here. The fix is straight up permission changes or turning off BitLocker's write protection.
The Fix
- Check if BitLocker is involved. Open Command Prompt as admin (
cmdright-click -> Run as administrator). Typemanage-bde -status E:(replace E with your drive letter). If it says "Protection On" and "Locked", that's your problem. Runmanage-bde -unlock E: -RecoveryPassword YOUR-RECOVERY-KEY(you'll need the key from your Microsoft account or backup). Then try creating the folder again. - Take ownership of the drive. If BitLocker isn't the issue, permissions are. Open File Explorer, right-click the drive -> Properties -> Security tab -> Advanced. Click "Change" next to Owner. Type your username (like "Marcus"), click Check Names to verify, then OK. Check "Replace owner on subcontainers and objects". Apply. Wait for it to finish. Then go back to Security tab, click your username, check "Full Control". Apply again.
- Force a permission reset via command line. If steps 1 and 2 don't work, open Command Prompt as admin and run
icacls E:* /grant Everyone:F /T /Q. This gives full control to Everyone on all files and subfolders. It's brute force but it works. Don't do this on your C drive – only on external drives you own.
If It Still Fails
If you're still getting access denied after these steps, check the drive's file system. Right-click the drive -> Properties -> General tab. If it shows exFAT, consider reformatting to NTFS. Warning: this erases all data. Backup what you can first. In File Explorer, right-click drive -> Format -> choose NTFS, quick format. After that, folder creation always works on NTFS. If you can't backup, try using chkdsk E: /f to fix file system corruption – sometimes that clears the issue.
One last weird thing: some drives have a physical write-protect switch. Look on the casing – if there's a little slider, make sure it's slid to "unlock" or "write". I've wasted 30 minutes on that before. Don't be me.
If none of this works, the drive hardware might be failing. Check it with CrystalDiskInfo – if it shows yellow or red warnings, replace the drive. You can't fix hardware with permissions.