0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ESXiでWindowsを入れたときにパーティションが自動で拡張されない

Posted at

背景

VMにWindows11を入れたかった.
もともとストレージが32GBだったが,Windows10を入れた時点で28GBほど占有していた.
Windows11をインストールするためには最低10GBのストレージ容量が必要だったためESXiからストレージを32GBから60GBにした.

しかしWindows側ではドライブの容量の拡張が確認できなかった.

google.com
ESXi HDD 増えない

するとESXiから拡張したあとパーティションの操作をしている記事を発見した
https://aulta.co.jp/archives/3407

なのでWindowsのDisk Manager を開いた
スクリーンショット 2021-11-04 16.00.54.png

そしたらどうやら追加したストレージ容量はディスクの末尾に付随することがわかった
スクリーンショット 2021-11-04 16.00.40.png

拡張を試みたが,リカバリーパーティションが間に挟まっているため,だめだった.

新しいボリュームとして初期化はできるが,想定したパーティション構成ではない

パーティションを削除してみる
https://www.lifewire.com/delete-windows-recovery-partition-4128723

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Try the new cross-platform PowerShell https://aka.ms/pscore6

PS C:\Windows\system32> diskpart

Microsoft DiskPart version 10.0.19041.610
DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online           60 GB  1024 KB        *

DISKPART> select disk 0

Disk 0 is now the selected disk.

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    System             100 MB  1024 KB
  Partition 2    Reserved            16 MB   101 MB
  Partition 3    Primary             31 GB   117 MB
  Partition 4    Recovery           499 MB    31 GB
  Partition 5    Primary             28 GB    31 GB

DISKPART> select partition 4

Partition 4 is now the selected partition.

DISKPART> delete partition override

DiskPart successfully deleted the selected partition.

パーティションが削除できた

拡張できる

できた

無事インストールできそう
スクリーンショット 2021-11-04 16.23.22.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?