8
11

More than 5 years have passed since last update.

Hyper-V仮想ディスクの最適化(圧縮)メモ

Posted at

容量可変タイプの Hyper-V 仮想ディスク を最適化(圧縮)する方法のメモ。

手順

  1. PowerShell を管理者で起動。
  2. 次のコマンドを順番に実行。
PS> $targetvhd = "VHD(X)のフルパス"
PS> Mount-VHD $targetvhd -Readonly
PS> Optimize-VHD $targetvhd -Mode Quick
PS> Optimize-VHD $targetvhd -Mode Quick
PS> Dismount-VHD $targetvhd

メモ

  • 事前準備は不要。
  • Optimize-VHD コマンドを2回実行するといいらしい。
    • 圧縮されないから手順や環境に間違いがあると思ってた・・・。

参考サイト

8
11
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
8
11