From LedHed's Wiki
Jump to: navigation, search
(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_...")
 
 
Line 10: Line 10:
  
 
== Powershell ==
 
== Powershell ==
Get-WmiObject -Class Win32_Volume | Select-Object Label, BlockSize | Format-Table -AutoSize
+
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.
 
Note: This is effectively a WMI query so you could also use WMIC to get the job done without PowerShell.
  

Latest revision as of 17:07, 31 October 2017

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]