powershell(管理者)で仮想マシンを作成する方法

仮想マシンの作成方法

  1. 仮想ハードディスクを作成する。

    New-VHD -Path "仮想ディスクパス名.vhdx" -SizeBytes 127GB

  2. 仮想マシンを作成する。

    New-VM -Name "仮想マシン名" -VHDPath "仮想ディスクパス名.vhdx" -MemoryStartupBytes 3GB -SwitchName "既定のスイッチ" -Generation 2

  3. 仮想マシンのCPUの数を設定する。

    Set-VMProcessor -VMName "仮想マシン名" -Count 2 -RelativeWeight 50

  4. 仮想マシンのメモリの量を設定する。動的メモリを使用し、最小3GB最大4GB初期3GBの設定

    Set-VMMemory -VMName "仮想マシン名" -DynamicMemoryEnabled $true -MinimumBytes 3GB -StartupBytes 3GB -MaximumBytes 4GB

  5. 仮想マシンのネットワークアダプタを設定する。

    Set-VMNetworkAdapter -VMName "仮想マシン名" -DhcpGuard On -IPsecOffloadMaximumSecurityAssociation 0 -MacAddressSpoofing Off -RouterGuard On

  6. 仮想マシンのセキュアブートをOFFに設定する。

    Set-VMFirmware -VMName "仮想マシン名" -EnableSecureBoot Off

  7. 仮想マシンの自動チェックポイントをOFFに設定する。

    Set-VM -VMName "仮想マシン名" -AutomaticCheckpointsEnabled $false