从NTFS磁盘获取分配单元大小


8

我需要找出格式化特定硬盘时选择的“分配单位大小”。

它不会出现在驱动器的属性信息中。

有没有简单的方法来获取此信息?

Answers:


16

使用fsutil命令:

fsutil fsinfo ntfsinfo [drive letter]

您必须以管理员权限运行此命令。

在此处输入图片说明


4

现在,powershell迎头赶上了,已经成熟了一些,您可以在powershell窗口中运行以下代码:

Get-Volume | Format-List AllocationUnitSize, FileSystemLabel

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.