ディスクを動的型と基本型の間で変換すると、Windows システムでストレージを管理する方法を変更できます。 Basic ディスクでは、プライマリ パーティション、拡張パーティション、論理ドライブが使用されるため、ほとんどの標準構成に適しています。 ダイナミック ディスクには、スパン ボリューム、ストライピング ボリューム、ミラーリング ボリュームなどの高度な機能が用意されていますが、現在は非推奨となり、新しいデプロイには推奨されません。 Instead, use basic disks or the newer Storage Spaces technology when you want to pool disks together into larger volumes. Windows が起動するボリュームをミラー化する場合、多くのマザーボードに搭載されているような、ハードウェア RAID コントローラーを使用できます。
Prerequisites
You must be a member of the Administrators group (or have equivalent privileges) to convert a disk.
Important
ディスクを変換する前に、ディスク上のデータをバックアップし、ディスクにアクセスするすべてのプログラムを閉じます。
ディスクの変換
ディスク管理ツールまたはコマンド ラインを使用して、ディスクを変換できます。 選択する方法については、次の手順に従います。
ディスクの種類を変換する前に、データをバックアップするか、ディスクから移動します。
Select Start, type diskmgmt.msc, then hit Enter.
ディスクに関連するボリュームを右クリックします。
Select Delete Volume, then select Yes. ディスク上のすべてのボリュームに対してこの手順を繰り返します。
ディスクを右クリックし、次のいずれかを選択します。
ダイナミック ディスクに変換し、変換する適切なディスクを選択し、[ OK] を選択します。
ベーシック ディスクに変換します。
Once conversion is complete, you'll see either Basic or Dynamic under your disk. If a new volume is created, you can see the disk type under the Type column.
パーティション スタイルを変換する前に、データをバックアップするか、ディスクから移動します。
Open an elevated command prompt window, type diskpart, then hit Enter.
パーティションまたはボリュームをクリーニング (削除) して、変換用のディスクを準備します。
Note
If your disk doesn't have any partitions or volumes, skip to step 3 to convert your disk.
Type list disk and hit Enter. 変換するディスク番号をメモします。
Type select disk, provide the disk number you want to convert, then hit Enter.
Type clean to delete all partitions and volumes on the disk.
Type convert basic or convert dynamic, then hit Enter.
変換が完了すると、プロセスが通知されます。
パーティション スタイルを変換する前に、データをバックアップするか、ディスクから移動します。
管理者特権の PowerShell ウィンドウを開きます。
パーティションまたはボリュームをクリーニング (削除) して、変換用のディスクを準備します。
Note
If your disk doesn't have any partitions or volumes, skip to step 3 to convert your disk.
すべてのディスクを一覧表示するには、次のコマンドを実行します。
Get-Disk
変換するディスク番号をメモします。
ディスクからすべてのパーティションとボリュームを削除するには、次のコマンドを実行します。 <Disk Number>
は、前に説明したディスク番号に置き換えます。
Clear-Disk -Number <Disk Number> -RemoveData -Confirm:$false
To convert the disk type to basic, run the following command and replace Disk Number
with your actual disk number:
$diskNumber = Disk Number
$convert = @(
"select disk $diskNumber",
"convert basic"
)
$convert | ForEach-Object { $_ } | diskpart
To convert the disk type to dynamic, run the following command and replace Disk Number
with your actual disk number:
$diskNumber = Disk Number
$convert = @(
"select disk $diskNumber",
"convert dynamic"
)
$convert | ForEach-Object { $_ } | diskpart
変換が完了すると、プロセスが通知されます。