February 2019
Beginner to intermediate
542 pages
10h 34m
English
Managing the VM state involves stopping and starting, or pausing and resuming, a VM. You can also save and restore, as shown in this recipe.
This recipe uses the PSDirect VM created in the Creating a virtual machine recipe. This recipe assumes the PSDirect VM is stopped when you start this recipe. If this VM is running, then first stop it using the Stop-VM cmdlet.
Stop-VM -Name PSDirect -WarningAction SilentlyContinue Get-VM -Name PSDirect
Start-VM -VMName PSDirect Wait-VM -VMName PSDirect -For IPAddress Get-VM -VMName ...
Read now
Unlock full access