From LedHed's Wiki
Contents
Overview
Ever wonder how to see the block size of a formatted disk in Windows?
FSUtli
fsutil fsinfo ntfsinfo c:
Powershell
Get-WmiObject -Class Win32_Volume | Select-Object Label, BlockSize | Format-Table -AutoSize Note: This is effectively a WMI query so you could also use WMIC to get the job done without PowerShell.
Reference
https://www.bytesizedalex.com/get-windows-ntfs-block-size/
[[Category:Windows]