Skip to content

Volumes Information

Evidence: Volumes Information
Description: Collect information about volumes
Category: DiskFilesystem
Platform: windows
Short Name: voli
Is Parsed: Yes
Sent to Investigation Hub: Yes
Collect File(s): No

Windows organizes storage into logical volumes (drive letters). Each volume has properties including file system type, capacity, free space, volume label, and serial number.

Volume serial numbers are particularly important for forensic analysis as they appear in various artifacts (prefetch, LNK files, shellbags) and can be used to correlate evidence from removable drives.

This collector gathers structured data about volumes information.

FieldDescriptionExample
LetterDrive letterC
TypeVolume typeFixed
LabelVolume labelSystem
FileSystemFile system typeNTFS
FSFlagsFile system flags0x700FF
TotalSizeTotal volume size in bytes500000000000
FreeSpaceAvailable free space in bytes250000000000
SerialVolume serial number0x12345678

This collector:

  • Enumerates all logical drives using GetLogicalDrives
  • For each drive letter (A-Z):
    • Gets drive type via GetDriveType
    • Retrieves volume information if mounted
    • Records volume properties even if not mounted

Volume types: Fixed, Removable, Remote, CDRom, RamDisk, NotMounted, Unknown.

Volume information is essential for understanding storage configuration and correlating artifacts. Investigators use this data to identify all storage devices, track volume serial numbers for correlation, detect encrypted or unmounted volumes, understand disk capacity and usage, correlate with USB device history, and identify network or removable drives.