答案1
对于 CSVFS,您可以在 PowerShell 中使用下一个命令:
Get-Volume | where {$_.FileSystem -match "CSVFS"} | fl *
对于常规 NTFS + Quorum,这一个
Get-ClusterResource | where {$_.ResourceType -eq "Physical Disk"} | fl *
请注意,此命令应在集群成员内部运行。
对于 CSVFS,您可以在 PowerShell 中使用下一个命令:
Get-Volume | where {$_.FileSystem -match "CSVFS"} | fl *
对于常规 NTFS + Quorum,这一个
Get-ClusterResource | where {$_.ResourceType -eq "Physical Disk"} | fl *
请注意,此命令应在集群成员内部运行。