web-dev-qa-db-ja.com

Windows10 Proストレージスペース、PowerShellの特定のストレージプールに属するディスクを一覧表示します

Windows 10 Pro Powershellで、特定のStoragePoolに属する物理ディスクを一覧表示する方法はありますか?これはGUIで確認できますが、GUIはどうしようもなく不安定ですか?

1

この問題への答えは恥ずかしいほど簡単でした。オブジェクト指向の背景からPowershellに移行することには、完全に間違った方向から答えを探していたので、長所と短所の両方があるようです。答えは、次のように、Get-PhysicalDiskコマンドレットの-StoragePoolパラメーターを使用することです。

$pool=GetStoragePool -FriendlyName "MyPool"
$disks=Get-PhysicalDisk -StoragePool $pool
0

何を試しましたか?

何を検索しましたか?

組み込みのコマンドレットをストレージに使用すると、目的のコマンドレットを取得できないということですか?

# Verify the existence of storage pools and virtual disks, use
Get-StoragePool 
Get-VirtualDisk

Get-Disk
# Get-Disk cmdlet provides limited insight into physical hardware.

Get-PhysicalDisk –CanPool $True
# Lists the physical disks installed in the server.

Get-StorageSubsystem –FriendlyName *space*
# Determine the storage subsystem's friendly name.

Get-Memberコマンドレットを使用して、ユースケースの情報を取得するためにの間で一致させることができるパラメーターを確認します。詳細については、ヘルプファイル/例を参照してください

# Get function / cmdlet details
Get-Command -Name Get-StoragePool -Syntax
(Get-Command -Name Get-StoragePool).Parameters.Keys
Get-help -Name Get-StoragePool -Full
Get-help -Name Get-StoragePool -Online
Get-help -Name Get-StoragePool -Examples


Get-Command -Name Get-VirtualDisk -Syntax
(Get-Command -Name Get-VirtualDisk).Parameters.Keys
Get-help -Name Get-VirtualDisk -Full
Get-help -Name Get-VirtualDisk -Online
Get-help -Name Get-VirtualDisk -Examples


Get-Command -Name Get-Disk -Syntax
(Get-Command -Name Get-Disk).Parameters.Keys
Get-help -Name Get-Disk -Full
Get-help -Name Get-Disk -Online
Get-help -Name Get-Disk -Examples


Get-Command -Name Get-PhysicalDisk  -Syntax
(Get-Command -Name Get-PhysicalDisk ).Parameters.Keys
Get-help -Name Get-PhysicalDisk  -Full
Get-help -Name Get-PhysicalDisk  -Online
Get-help -Name Get-PhysicalDisk  -Examples


Get-Command -Name Get-StorageSubsystem  -Syntax
(Get-Command -Name Get-StorageSubsystem ).Parameters.Keys
Get-help -Name Get-StorageSubsystem  -Full
Get-help -Name Get-StorageSubsystem  -Online
Get-help -Name Get-StorageSubsystem  -Examples
0
postanote