0X0000009A

Fix: ERROR_LABEL_TOO_LONG (0x0000009A) Volume Label Limit Hit

Hardware – Hard Drives Beginner 👁 12 views 📅 May 27, 2026

Getting error 0x0000009A when renaming a drive? The label's too long for the filesystem. Here's the quick fix and why it happens.

The frustration is real — you just want to name your drive and Windows stops you cold.

You type a label, hit Enter, and instead of seeing your new name, you get that error: 0x0000009A. The volume label you entered exceeds the label character limit. Don't worry. The fix takes ten seconds once you know what the rules are.

The fix: shorten the label

  1. Right-click the drive in File Explorer (This PC).
  2. Select Properties.
  3. In the General tab, you'll see the Label field at the top. Click inside it.
  4. Delete whatever you typed. Count the characters you're about to enter:
    • For an NTFS drive (most internal drives): max 32 characters.
    • For a FAT32 drive (often USB sticks, older flash drives): max 11 characters.
    • For an exFAT drive (large USB drives, SD cards): max 32 characters.
  5. Type your new label, making sure it fits the limit for your file system.
  6. Click Apply. After you click Apply, the label should change immediately. No error message pops up.
  7. Click OK to close Properties.

That's it. The drive now shows your shortened label.

Why this error happens

The error code 0x0000009A is Windows's way of saying "that label is too long for this file system." Each file system has a hard limit on volume label length. These limits are baked into the file system driver — Windows can't make exceptions. The limits are:

File SystemMax Label LengthCommon Use
NTFS32 charactersInternal SSDs/HDDs, Windows system drives
FAT3211 charactersOlder USB drives, small SD cards
exFAT32 charactersLarge USB drives, SDXC cards, external drives
ReFS32 charactersWindows Server, Storage Spaces

Spaces count toward the limit. Special characters like ! @ # $ % ^ & ( ) usually work, but Windows might strip them or throw a different error. Stick to letters, numbers, and underscores if you want to be safe.

Less common variations of this issue

Using the command line

If you're using label E: MyNewLabel in Command Prompt or PowerShell, the same limits apply. The error message is identical. Fix: shorten the label. To check the current file system, run:

fsutil fsinfo volumeinfo E:

Replace E: with your drive letter. Look for the line that says "File System Name". It'll say NTFS, FAT32, or exFAT.

Renaming from Disk Management

Open Disk Management (diskmgmt.msc). Right-click a partition, choose Properties, and edit the label there. Same limits apply. If you get 0x0000009A there, you're over the character count.

Network drives

Network drives (mapped drives) can't be renamed this way. The label is set by the server. If you get this error on a network drive, you're not renaming a volume — you're setting a label that the server's file system rejects. Shorten it to 32 characters or ask the network admin to check the server's file system limits.

Special characters hidden in the clipboard

Sometimes you copy a label from somewhere and paste it into the field. Hidden characters like Unicode spaces (U+00A0) or invisible control characters count toward the limit but you can't see them. Type the label manually, don't paste. If you must paste, paste into Notepad first, then copy from there.

Prevention — how to avoid this error going forward

Before you type a new label, know your file system. If you're not sure, right-click the drive, go to Properties, and look at the File system line in the General tab. That tells you the limit. NTFS and exFAT: keep it under 32 chars. FAT32: under 11 chars.

I keep a simple rule: label every drive with a short descriptor and a number. "Backup01" (8 chars) or "WorkData" (8 chars). Never need more than 32 characters for a drive name.

If you need longer labels, consider using folder names instead. The drive itself can have a short label, and the folders inside can have longer, descriptive names. That works on any file system.

One more thing: if you're formatting a drive, you can set the label during the format. The format dialog also enforces the limits, so you can't accidentally go over. But once the drive is formatted, the limit is set in stone.

Pro tip: If you format a FAT32 drive with a label longer than 11 characters, Windows truncates the label to 11 characters silently during format. You won't see an error then, but later when you try to change it, the 11-character limit bites you.

That's it. Short label, no error. If you still get 0x0000009A after shortening, the drive might have a corrupted file system. Run chkdsk X: /f (replace X with your drive letter) and try again. But 99% of the time, this error is just a label that's too long.

Was this solution helpful?