From LedHed's Wiki
Revision as of 17:07, 31 October 2017 by Ledhed (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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://stackoverflow.com/questions/81236/how-can-i-view-the-allocation-unit-size-of-a-ntfs-partition-in-vista

https://www.bytesizedalex.com/get-windows-ntfs-block-size/


[[Category:Windows]