From LedHed's Wiki
(Created page with "== 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_...") |
(No difference)
|
Revision as of 17:07, 31 October 2017
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]