Skip to content

A command utility to read and monitor the NTFS/ReFS USN change Journal.

License

Notifications You must be signed in to change notification settings

wangfu91/UsnParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NTFS USN Parser

A command utility for NTFS to search the MFT & monitoring the changes of USN Journal.

Usage

NTFS USN Journal parser 0.1.3

A command utility for NTFS to search the MFT & monitoring the changes of USN Journal.

Usage: UsnParser [command] [options]

Options:
  --version  Show version information.
  -h|--help  Show help information.

Commands:
  monitor    Monitor real-time USN journal changes
  read       Read history USN journal entries
  search     Search the Master File Table

Run 'UsnParser [command] -h|--help' for more information about a command.

Example

# Search Master File Table of volume C, print out all paths who's file name is "Readme.md"
UsnParser search C: Readme.md 
# Print out all the USN records of file "Readme.md" in volume C.
UsnParser read C: -f Readme.md 
# Monitor realtime USN reacords of volume C.
UsnParser monitor C: 
# Monitor realtime USN reacords of volume C, only print out txt files whose name starts with "abc".
UsnParser monitor C: -f abc*.txt 

Dependencies