-
仮想ハードディスクを作成する。
New-VHD -Path "仮想ディスクパス名.vhdx" -SizeBytes 127GB
-
仮想マシンを作成する。
New-VM -Name "仮想マシン名" -VHDPath "仮想ディスクパス名.vhdx" -MemoryStartupBytes 3GB -SwitchName "既定のスイッチ" -Generation 2
-
仮想マシンのCPUの数を設定する。
Set-VMProcessor -VMName "仮想マシン名" -Count 2 -RelativeWeight 50
-
仮想マシンのメモリの量を設定する。動的メモリを使用し、最小3GB最大4GB初期3GBの設定
Set-VMMemory -VMName "仮想マシン名" -DynamicMemoryEnabled $true -MinimumBytes 3GB -StartupBytes 3GB -MaximumBytes 4GB
-
仮想マシンのネットワークアダプタを設定する。
Set-VMNetworkAdapter -VMName "仮想マシン名" -DhcpGuard On -IPsecOffloadMaximumSecurityAssociation 0 -MacAddressSpoofing Off -RouterGuard On
-
仮想マシンのセキュアブートをOFFに設定する。
Set-VMFirmware -VMName "仮想マシン名" -EnableSecureBoot Off
-
仮想マシンの自動チェックポイントをOFFに設定する。
Set-VM -VMName "仮想マシン名" -AutomaticCheckpointsEnabled $false