0X0000049B

Fix ERROR_JOURNAL_NOT_ACTIVE (0X0000049B) on Windows

Hardware – Hard Drives Intermediate 👁 0 views 📅 May 26, 2026

This error means the NTFS USN journal is off or corrupt. The quick fix is running fsutil to recreate it. I'll show you the exact command.

I know this error is infuriating — one minute your drive's fine, the next you can't even open a file. I've seen ERROR_JOURNAL_NOT_ACTIVE (0X0000049B) on Windows 10 and 11 mostly with NTFS volumes used for backups or databases. The good news is you don't need to reformat. The fix is a single command.

Quick Fix: Recreate the USN Journal

Open Command Prompt as Administrator. Run fsutil usn queryjournal C: (replace C: with your drive letter). If it says "The journal is not active," you're in the right place.

Now run this — it deletes the journal and creates a fresh one:

fsutil usn deletejournal /d /n C:

The /d flag deletes the journal. The /n flag tells Windows not to keep a backup. I know it sounds scary to delete a system journal, but this is safe — Windows rebuilds it on the next operation that needs it.

After the command completes, force a remount by either restarting your PC or running:

mountvol C: /p
mountvol C: /s

(Again, swap C: for your drive.) This unmounts and remounts the volume cleanly. The journal will be active again. Test by accessing the drive.

Why This Happens

The USN (Update Sequence Number) journal tracks every change to files on an NTFS volume — creations, deletions, modifications. Indexing services, backup software, and even Windows Search rely on it. When the journal gets corrupt or disabled, you hit 0X0000049B.

Common triggers:

  • Running a disk cleanup tool that incorrectly prunes the journal
  • A sudden power loss while the journal was being updated
  • Third-party backup software interrupting a journal write operation
  • Manually disabling the journal with fsutil usn deletejournal and forgetting to recreate it

Less Common Variations

Sometimes the error shows up as a pop-up in Event Viewer (source: Ntfs, event ID 141). In that case, the fix is the same — but you might need to run chkdsk /f C: first if there are underlying file system errors. I recommend running chkdsk anyway before the fsutil commands if the drive has seen heavy use.

Another variation: the error appears on a volume that's mirrored (RAID 1). With software RAID (Storage Spaces), you need to run the fsutil command on the virtual disk letter, not the physical disks. With hardware RAID, it's the same — just target the drive letter Windows sees.

If the fsutil command fails with "Access denied," check if BitLocker is enabled. Decrypt the drive first, then run the command. BitLocker locks the volume metadata, and fsutil can't touch it until decryption is done.

Prevention

Don't use random disk cleaners that claim to "optimize" NTFS journals. Leave the journal alone — it's tiny and self-maintaining. Also, always do a proper Windows shutdown. Power loss is the #1 cause of journal corruption in the field.

If you use backup software that relies on the USN journal (like VSS-based tools), make sure it's up to date. I've seen old versions of backup exec corrupt the journal on Server 2016 and 2019.

And honestly, if you run chkdsk regularly — say once a quarter — you'll catch file system issues before they break the journal. Chkdsk fixes small problems that later would become big headaches.

Was this solution helpful?