LoginSignup
2
1

More than 1 year has passed since last update.

Windows 11 を動かせる仮想化はHyper-Vだけではなかった

Last updated at Posted at 2021-07-03
  • VirtualBoxで色々試してみたが無理でした。セキュアブートの項目も見当たらず。

    • https://uupdump.net/ から取得できる 22000.65_amd64_ja-jp_multi_f19ccfd6_convert.zipuup_download_windows.cmdで作られるISOを使えばインストールできる様子。
  • Hyper-Vは対応していた。(Windows 10 pro 21H1 にて確認)

win11.JPG

Hyper-Vのメリット

CPU使用率が圧倒的に低い (VMWare、VirtualBoxと比較)

Hyper-Vのデメリット

  • デュアルモニターにできない(?)
    • (VirtualBoxではできる。)

Windows 10 Home でHyper-Vをインストールする方法

enable-hyperv.bat
pushd "%~dp0"

dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt

for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt

Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
  • optionalfeatures.exeでHyper-Vを有効にする

Hyper-V

  • Hyper-Vをインストール
  • Hyper-V マネージャーを起動
  • クイック作成
  • メモリが2048MBになっているので4096MBにする
  • ISOファイルはSMBv1のサーバー上のものは利用できない様子。ローカルにコピーしておく

vhdxの圧縮方法

  • PowerShell を管理者権限で実行
  • vhdxファイルがある場所で以下実施
optimize-vhd -Path win11* -Mode Full
2
1
1

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
2
1