我需要找出格式化特定硬碟時選擇的“分配單元大小”。
它不會出現在驅動器的屬性資訊中。
有什麼簡單的方法可以獲取這些資訊嗎?
使用fsutil命令:
fsutil fsinfo ntfsinfo [drive letter]
您必須以管理員權限執行此命令。
現在 powershell 已經趕上並已經成熟了一點,您可以在 powershell 視窗中執行此程式碼:
Get-Volume | Format-List AllocationUnitSize, FileSystemLabel
引用自:https://serverfault.com/questions/6953